:root{
  --navy:#071126;
  --navy-2:#101a2e;
  --gold:#aa9462;
  --gold-soft:#d2c39a;
  --ink:#080a10;
  --muted:#657080;
  --paper:#ffffff;
  --soft:#f0f3f8;
  --line:#cfd4dd;
  --danger:#b20d14;
  --danger-2:#db2b2f;
  --shadow:0 15px 32px rgba(9,19,38,.22);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
html,body{margin:0;min-height:100%;background:#dfe4eb;color:var(--ink)}
body{
  font-family:"Segoe UI", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  position:relative;
  z-index:0;
  background:
    linear-gradient(90deg,rgba(7,17,38,.18),rgba(223,228,235,.68) 23%,rgba(223,228,235,.9) 43%,rgba(223,228,235,.9) 57%,rgba(223,228,235,.68) 77%,rgba(7,17,38,.18)),
    url("desktop-side-route-cars.png") center top / cover fixed no-repeat;
}
body::before,
body::after{
  content:"";
  position:fixed;
  top:0;
  bottom:0;
  width:max(220px,calc((100vw - 1024px) / 2));
  z-index:0;
  background-image:
    linear-gradient(180deg,rgba(223,228,235,.18),rgba(223,228,235,.42)),
    url("desktop-side-route-cars.png");
  background-size:cover;
  background-repeat:no-repeat;
  opacity:.9;
  pointer-events:none;
}
body::before{
  left:0;
  background-position:left top;
}
body::after{
  right:0;
  background-position:right top;
}

.site-shell{
  width:min(100%,683px);
  min-height:100vh;
  margin:0 auto;
  background:#fff;
  position:relative;
  z-index:1;
  overflow:hidden;
  box-shadow:0 18px 48px rgba(13,20,35,.22);
}

.brand-logo-link{
  position:absolute;
  left:38px;
  top:0;
  width:126px;
  height:auto;
  z-index:18;
  display:block;
}
.brand-logo{
  width:100%;
  height:auto;
  display:block;
  filter:drop-shadow(0 10px 12px rgba(0,0,0,.32));
  pointer-events:none;
}

header{
  position:sticky;
  top:0;
  z-index:80;
}

.topbar{
  min-height:0;
  height:0;
  overflow:hidden;
  background:#f4f4f5;
  border-bottom:1px solid rgba(14,22,36,.06);
  color:#0b101d;
  font-size:11px;
  line-height:1;
  display:flex;
  align-items:center;
}
.topbar-inner{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-left:178px;
  padding-right:35px;
  gap:18px;
}
.top-left,.top-right{display:flex;align-items:center;gap:18px;white-space:nowrap}
.top-link{display:inline-flex;align-items:center;gap:6px;color:#101827;text-decoration:none}
.top-link svg{width:12px;height:12px;stroke-width:2.4}
.follow{display:inline-flex;align-items:center;gap:10px;color:#121827}
.social-dot{
  width:18px;height:18px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;
  color:#111827;font-size:10px;font-weight:800;line-height:1;border:1.4px solid #111827;background:transparent;
  text-decoration:none;
  transition:transform .22s ease, background .22s ease, color .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.social-dot:hover{
  transform:translateY(-2px);
  color:#fff;
  background:#101827;
  box-shadow:0 7px 14px rgba(16,24,39,.18);
}
.social-dot svg{
  width:11px;
  height:11px;
  display:block;
}
.social-dot.wa{
  position:relative;
  color:#128c3c;
  border-color:#25d366;
  background:#effdf4;
  animation:waMiniPulse 2.4s ease-in-out infinite;
}
.social-dot.wa:hover{
  background:#25d366;
  color:#fff;
  box-shadow:0 8px 18px rgba(37,211,102,.32);
  animation:none;
}

.navbar{
  min-height:68px;
  background:#101b31;
  display:flex;
  align-items:center;
  border-bottom:0;
  box-shadow:none;
  position:relative;
  z-index:5;
}
.nav-inner{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-left:180px;
  padding-right:31px;
  gap:12px;
}
.menu{display:flex;align-items:center;gap:14px;min-height:68px}
.menu-item{
  position:relative;
  display:flex;
  align-items:center;
  min-height:68px;
}
.menu a{
  position:relative;
  color:#fff;
  text-decoration:none;
  text-transform:uppercase;
  font-size:11px;
  letter-spacing:.15px;
  font-weight:600;
  line-height:68px;
  text-shadow:0 1px 2px rgba(0,0,0,.45);
}
.menu a.active::after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:16px;margin:auto;
  width:32px;height:2px;background:#d2c39a;border-radius:2px;
}
.menu .chev{display:inline-flex;align-items:center;gap:6px}
.menu .chev svg{width:9px;height:9px;stroke-width:2.5;transform:translateY(-1px)}
.submenu{
  position:absolute;
  left:50%;
  top:calc(100% - 10px);
  min-width:210px;
  display:grid;
  gap:2px;
  padding:8px;
  border:1px solid rgba(15,23,42,.12);
  border-radius:10px;
  background:#fff;
  box-shadow:0 16px 32px rgba(7,17,38,.22);
  opacity:0;
  visibility:hidden;
  transform:translate(-50%,8px);
  transition:opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index:70;
}
.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu{
  opacity:1;
  visibility:visible;
  transform:translate(-50%,0);
}
.submenu a{
  min-height:36px;
  display:flex;
  align-items:center;
  padding:0 12px;
  border-radius:7px;
  color:#101827;
  line-height:1.2;
  text-shadow:none;
  white-space:nowrap;
}
.submenu a:hover,
.submenu a.active{
  background:#eef2f7;
  color:#071126;
}
.submenu a.active::after{
  display:none;
}
.menu-toggle{
  display:none;
  height:34px;
  border:1px solid #cfd4dd;
  border-radius:5px;
  background:#fff;
  color:#111827;
  text-transform:uppercase;
  font-size:11px;
  font-weight:900;
}
.mobile-fixed-toggle{
  display:none;
}
.reserve-btn{
  display:inline-flex;align-items:center;gap:10px;
  height:32px;padding:0 11px 0 10px;
  border-radius:4px;
  background:linear-gradient(180deg,#bd1d25 0%,#8e1218 100%);
  color:#fff;text-decoration:none;text-transform:uppercase;
  font-size:10px;font-weight:900;letter-spacing:.05px;
  box-shadow:0 2px 0 rgba(0,0,0,.45), inset 0 0 0 1px rgba(255,255,255,.10);
  white-space:nowrap;
  position:relative;
  overflow:hidden;
  transition:transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.reserve-btn svg{width:17px;height:17px;stroke-width:2.2}
.reserve-btn::before,.quote-btn::before,.content-card a::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(105deg,transparent 20%,rgba(255,255,255,.28) 50%,transparent 80%);
  transform:translateX(-120%) skewX(-18deg);
  transition:transform .55s ease;
  pointer-events:none;
}
.reserve-btn:hover,.quote-btn:hover{
  transform:translateY(-2px);
}
.reserve-btn:hover{
  box-shadow:0 9px 22px rgba(7,18,38,.28), inset 0 0 0 1px rgba(255,255,255,.14);
  background:linear-gradient(180deg,#14213d 0%,#071226 100%);
}
.reserve-btn:hover::before,.quote-btn:hover::before,.content-card a:hover::before{
  transform:translateX(120%) skewX(-18deg);
}
.reserve-btn:active,.quote-btn:active{
  transform:translateY(0);
}

.hero{
  height:498px;
  position:relative;
  background-image:url("reference-hero.jpg");
  background-size:100% 500px;
  background-repeat:no-repeat;
  background-position:center top;
  overflow:hidden;
}
.hero::after{
  content:"";
  position:absolute;left:0;right:0;bottom:0;height:120px;
  background:linear-gradient(180deg,rgba(255,255,255,0),rgba(8,14,23,.06));
  pointer-events:none;
}
.hero::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:50%;
  height:100%;
  z-index:1;
  border-bottom-right-radius:0;
  background:linear-gradient(90deg,rgba(255,255,255,.94) 0%,rgba(255,255,255,.82) 48%,rgba(255,255,255,.34) 78%,rgba(255,255,255,0) 100%);
  box-shadow:none;
  pointer-events:none;
}
.hero-copy{
  position:absolute;
  left:44px;
  right:auto;
  top:92px;
  z-index:2;
  max-width:290px;
}
h1{
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  font-family:"Arial Black","Segoe UI",Arial,sans-serif;
  font-size:33px;
  line-height:1.18;
  letter-spacing:.4px;
  font-weight:900;
  color:#aa9462;
  text-transform:uppercase;
  text-shadow:none;
  white-space:normal;
  max-width:850px;
}
h1 .gold{
  color:inherit;
  letter-spacing:.2px;
  position:relative;
  display:inline-block;
}
h1 .gold::after{
  display:none;
}
.hero-copy p{
  max-width:245px;
  margin:10px 0 0;
  font-size:18px;
  line-height:1.18;
  font-weight:700;
  color:#0c1320;
  text-shadow:none;
}
.map-label{
  position:absolute;
  z-index:3;
  color:#fff;
  text-transform:uppercase;
  font-weight:900;
  font-size:15px;
  letter-spacing:.15px;
  text-shadow:0 2px 0 #1a1c22,1px 0 0 #1a1c22,-1px 0 0 #1a1c22,0 0 6px rgba(0,0,0,.8);
  transform:scaleX(.92);
  font-family:Impact,"Arial Black",Arial,sans-serif;
  pointer-events:none;
}
.map-label{display:none}

.notice{
  width:calc(100% - 72px);
  margin:14px 36px -2px;
  border-radius:6px;
  padding:11px 14px;
  font-size:13px;
  font-weight:800;
  border:1px solid #cbd1db;
  background:#fff;
}
.notice.ok{border-color:#9fbf9f;color:#0f5b26;background:#f4fbf4}
.notice.error{border-color:#e2a8a8;color:#8a1115;background:#fff4f4}

.booking-card{
  width:calc(100% - 82px);
  margin:-72px 41px 0;
  position:relative;
  z-index:6;
  background:rgba(255,255,255,.95);
  border:1px solid rgba(23,32,47,.16);
  border-radius:8px;
  box-shadow:0 12px 22px rgba(14,25,44,.24);
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  align-items:end;
  column-gap:10px;
  row-gap:14px;
  padding:16px 18px 18px;
}
.booking-title{grid-column:1/-1;text-align:center;padding-left:0}
.booking-title strong{
  display:block;
  font-family:Impact,"Arial Black","Segoe UI",Arial,sans-serif;
  font-size:29px;
  line-height:1;
  letter-spacing:.1px;
  text-transform:none;
  color:#a51c20;
  font-weight:900;
}
.booking-title small{
  display:none;
}
.booking-divider{display:none}
.field-wrap{min-height:57px;display:flex;flex-direction:column;gap:7px;justify-content:flex-start}
.field-wrap label{
  display:block;
  min-height:13px;
  font-size:14px;
  line-height:1;
  text-transform:none;
  color:#0f172a;
  font-weight:500;
  letter-spacing:0;
}
select,input,textarea{
  width:100%;
  min-width:0;
  border:1px solid #d5dbe5;
  border-radius:8px;
  background:#fff;
  color:#151a23;
  font:700 11px "Segoe UI",Arial,sans-serif;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.85),0 1px 0 rgba(15,23,42,.02);
  transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
select,input{height:34px;padding:0 11px}
select{
  appearance:none;
  -webkit-appearance:none;
  padding-right:34px;
  cursor:pointer;
  background-image:
    linear-gradient(45deg,transparent 50%,#071126 50%),
    linear-gradient(135deg,#071126 50%,transparent 50%),
    linear-gradient(180deg,#f8fafc,#eef2f7);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 13px) 50%,
    100% 0;
  background-size:
    5px 5px,
    5px 5px,
    42px 100%;
  background-repeat:no-repeat;
}
select option{
  background:#f8fafc;
  color:#101827;
  font:700 13px "Segoe UI",Arial,sans-serif;
  padding:12px 14px;
}
select option:checked{
  background:linear-gradient(180deg,#071126 0%,#101a2e 100%);
  color:#fff;
}
select option:disabled{
  color:#8b95a5;
  background:#eef2f7;
}
select optgroup{
  background:#071126;
  color:#d2c39a;
  font:900 11px "Segoe UI",Arial,sans-serif;
  text-transform:uppercase;
  letter-spacing:.8px;
}
select:hover,input:hover,textarea:hover{
  border-color:#b8c0cf;
  background-color:#fff;
}
select:focus,input:focus,textarea:focus{
  outline:none;
  border-color:#aa9462;
  box-shadow:0 0 0 3px rgba(170,148,98,.18), inset 0 1px 0 rgba(255,255,255,.9);
}
select:focus{
  background-image:
    linear-gradient(45deg,#aa9462 50%,transparent 50%),
    linear-gradient(135deg,transparent 50%,#aa9462 50%),
    linear-gradient(180deg,#fffaf0,#f3ead0);
}
textarea{padding:9px;resize:vertical;min-height:72px}
.quote-btn{
  grid-column:2/4;
  height:40px;
  border:0;
  border-radius:999px;
  color:#fff;
  background:
    radial-gradient(circle at 18% 20%,rgba(255,255,255,.26),transparent 28%),
    linear-gradient(180deg,#df1f27 0%,#a4070d 100%);
  box-shadow:0 3px 0 #6e0609,0 10px 20px rgba(164,7,13,.18), inset 0 0 0 1px rgba(255,255,255,.18);
  text-transform:uppercase;
  font-size:18px;
  font-weight:900;
  display:flex;align-items:center;justify-content:center;gap:9px;
  cursor:pointer;
  width:100%;
  position:relative;
  overflow:hidden;
  transition:transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.quote-btn svg{width:22px;height:22px;stroke-width:2.5;background:#d2b25e;color:#1b1220;border-radius:50%;padding:3px}
.quote-btn:hover{
  background:
    radial-gradient(circle at 18% 20%,rgba(255,255,255,.32),transparent 28%),
    linear-gradient(180deg,#f13840 0%,#b20d14 100%);
  box-shadow:0 12px 25px rgba(178,13,20,.30),0 3px 0 #6e0609, inset 0 0 0 1px rgba(255,255,255,.2);
}
.quote-btn:focus-visible,.reserve-btn:focus-visible,.content-card a:focus-visible,.menu-toggle:focus-visible,.social-dot:focus-visible,.whatsapp-float:focus-visible,.push-inbox-button:focus-visible{
  outline:3px solid rgba(210,195,154,.55);
  outline-offset:3px;
}
.booking-details{
  grid-column:1/-1;
  display:none;
  grid-template-columns:repeat(4, minmax(0,1fr)) 125px;
  align-items:end;
  gap:12px;
  padding-top:12px;
  border-top:1px solid #d9dee7;
}
.booking-details.open{display:grid}
.booking-details .wide{grid-column:1/5}
.quote-btn.send{margin-bottom:0}
.quote-btn.send{
  background:
    radial-gradient(circle at 18% 20%,rgba(255,255,255,.22),transparent 28%),
    linear-gradient(180deg,#13213a 0%,#071126 100%);
  box-shadow:0 3px 0 #030713,0 10px 20px rgba(7,17,38,.22), inset 0 0 0 1px rgba(255,255,255,.12);
}
.quote-btn.send:hover{
  background:
    radial-gradient(circle at 18% 20%,rgba(255,255,255,.28),transparent 28%),
    linear-gradient(180deg,#223451 0%,#0b1629 100%);
  box-shadow:0 12px 25px rgba(7,17,38,.28),0 3px 0 #030713, inset 0 0 0 1px rgba(255,255,255,.14);
}

.feature-row{
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  gap:10px;
  padding:40px 40px 28px;
  background:#fff;
  position:relative;
  z-index:1;
  text-align:center;
}
.feature-row h2{
  grid-column:1/-1;
  margin:0 0 10px;
  color:#0a1426;
  font-family:"Arial Black","Segoe UI",Arial,sans-serif;
  font-size:28px;
  line-height:1;
}
.feature{
  min-width:0;
  min-height:auto;
  display:grid;
  grid-template-columns:1fr;
  align-items:start;
  gap:7px;
  padding:0 4px;
  border:0;
  border-radius:0;
  background:transparent;
}
.feature:first-child{padding-left:16px}
.feature-icon{
  width:38px;height:38px;
  display:flex;align-items:center;justify-content:center;
  color:#0a1426;
  margin:auto;
  filter:drop-shadow(0 1px 0 rgba(255,255,255,.75)) drop-shadow(0 3px 4px rgba(8,15,27,.18));
}
.feature-icon.gold{color:#b79b57}
.feature-icon svg{width:38px;height:38px;stroke-linecap:round;stroke-linejoin:round}
.feature-icon .icon-solid{fill:currentColor;stroke:#8a7241;stroke-width:.55}
.feature-icon .icon-soft{fill:#d1bb7d;stroke:#9a8048;stroke-width:.45}
.feature-icon .icon-cut{fill:#eef2f7;stroke:#142039;stroke-width:.35}
.feature-icon .icon-line{fill:none;stroke:currentColor;stroke-width:1.85}
.feature-icon .icon-ink{fill:#071126}
.feature-icon .icon-coin{fill:#d0ad5d;stroke:#071126;stroke-width:1.25}
.feature-icon.coin{color:#071126}
.feature-icon.coin .icon-cut{stroke:#8e773f;stroke-width:.65}
.feature-icon.shield .icon-cut{fill:#071126;stroke:none}
.feature-icon.headset .icon-solid{stroke:#8a7241;stroke-width:.7}
.feature-copy strong{
  display:block;
  text-transform:uppercase;
  color:#050914;
  font-weight:900;
  font-size:13px;
  line-height:1.04;
  letter-spacing:.12px;
}
.feature-copy small{
  display:none;
  margin-top:7px;
  color:#101827;
  font-size:12.5px;
  line-height:1.48;
  font-weight:500;
}

.vehicle-gif-strip{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
  padding:38px 42px 34px;
  background:#fff;
  border-top:1px solid #e6eaf1;
}
.vehicle-gif-strip img{
  width:100%;
  height:260px;
  display:block;
  object-fit:cover;
  border:1px solid #d6dde8;
  border-radius:10px;
  background:#eef2f7;
  box-shadow:0 14px 28px rgba(14,25,44,.12);
}

.content-pages{
  background:#fff;
  border-top:1px solid #d1d7e1;
}
.home-pages{display:none}
.home-pages{
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
  padding:30px 36px 34px;
}
.content-card{
  display:grid;
  grid-template-columns:132px 1fr;
  gap:18px;
  min-height:170px;
  background:#fff;
  border:1px solid #d9dee7;
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 10px 22px rgba(14,25,44,.08);
}
.content-card:first-child{
  grid-column:1/-1;
  grid-template-columns:260px 1fr;
}
.content-card img{
  width:100%;
  height:100%;
  min-height:170px;
  object-fit:cover;
  background:#d9dee7;
}
.content-card div{padding:22px 20px 20px 0;align-self:center}
.content-card h2{
  margin:0;
  color:#050914;
  font-family:Georgia,"Times New Roman",serif;
  font-size:24px;
  line-height:1.12;
  text-transform:uppercase;
  letter-spacing:.15px;
}
.content-card p{
  margin:12px 0 16px;
  color:#273040;
  font-size:14.5px;
  line-height:1.6;
}
.content-card a{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 14px;
  border-radius:999px;
  color:#fff;
  background:#101827;
  text-decoration:none;
  text-transform:uppercase;
  font-size:11px;
  font-weight:900;
  position:relative;
  overflow:hidden;
  transition:transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.content-card a:hover{
  transform:translateY(-2px);
  background:#a4070d;
  box-shadow:0 8px 18px rgba(164,7,13,.2);
}
.content-block{
  display:grid;
  grid-template-columns:220px 1fr;
  gap:28px;
  padding:34px 36px;
  border-bottom:1px solid #d9dee7;
}
.section-kicker{
  display:block;
  color:#9b8656;
  font-size:10.5px;
  font-weight:900;
  text-transform:uppercase;
  margin-bottom:9px;
  letter-spacing:1.2px;
}
.content-block h2{
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:27px;
  text-transform:uppercase;
  letter-spacing:.15px;
  line-height:1.15;
}
.content-block p{
  margin:0;
  color:#273040;
  font-size:16px;
  line-height:1.72;
}
.page-hero{
  min-height:330px;
  display:grid;
  grid-template-columns:minmax(0,1fr) 40%;
  align-items:stretch;
  background:#071126;
  color:#fff;
  overflow:hidden;
}
.page-copy{
  padding:74px 44px 82px 50px;
  align-self:center;
}
.page-copy .section-kicker{color:var(--gold-soft)}
.page-copy h1{
  max-width:560px;
  color:#fff;
  white-space:normal;
  text-shadow:none;
  font-size:36px;
  line-height:1.08;
  letter-spacing:.2px;
}
.page-copy p{
  max-width:560px;
  margin:16px 0 28px;
  color:#e8edf4;
  font-size:17.5px;
  line-height:1.62;
}
.page-hero img{
  width:100%;
  height:100%;
  min-height:330px;
  object-fit:cover;
  filter:saturate(.95) contrast(1.02);
}
.page-detail{
  background:#fff;
  border-top:1px solid #d1d7e1;
}
.content-block.standalone{
  border-bottom:0;
  padding-top:40px;
  padding-bottom:42px;
}
.page-body{display:grid;gap:18px}
.page-points{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
  margin:2px 0 0;
  padding:0;
  list-style:none;
}
.page-points li{
  min-height:54px;
  display:flex;
  align-items:center;
  border:1px solid #d9dee7;
  border-radius:6px;
  padding:12px 13px;
  color:#101827;
  background:#f7f9fc;
  font-size:13px;
  line-height:1.25;
  font-weight:900;
  text-transform:uppercase;
}

footer{
  min-height:80px;
  border-top:1px solid #ccd2dc;
  background:#101b31;
  display:grid;
  grid-template-columns:1fr;
  align-items:center;
  justify-content:center;
  padding:9px 36px 13px;
  color:#fff;
  font-size:11px;
  position:relative;
  z-index:2;
  gap:16px;
}
.footer-contact{display:flex;align-items:center;justify-content:space-between;gap:12px;color:#fff}
.footer-contact a,.footer-contact span{color:#fff;text-decoration:none}
.footer-links{display:flex;align-items:center;justify-content:center;gap:6px;flex-wrap:wrap;color:#fff}
.footer-links a{color:#fff;text-decoration:none}
.footer-links a:not(:last-child)::after{content:" •";opacity:.8}
.copyright{text-transform:uppercase;font-size:12px;color:#fff;text-align:center;font-weight:900}

.whatsapp-float{
  position:fixed;
  right:max(22px,calc((100vw - 1024px) / 2 + 22px));
  bottom:22px;
  width:58px;
  height:58px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  background:#25d366;
  border-radius:50%;
  text-decoration:none;
  box-shadow:0 10px 26px rgba(37,211,102,.34),0 4px 12px rgba(0,0,0,.18);
  z-index:20;
  animation:waFloatPulse 2.5s ease-in-out infinite;
  transition:transform .22s ease, box-shadow .22s ease;
}
.whatsapp-float svg{
  width:32px;
  height:32px;
  filter:drop-shadow(0 1px 2px rgba(0,0,0,.18));
}
.whatsapp-float::before,.whatsapp-float::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:50%;
  background:#25d366;
  z-index:-1;
  opacity:0;
  animation:waRipple 2.5s ease-out infinite;
}
.whatsapp-float::after{animation-delay:.65s}
.whatsapp-float:hover{
  transform:scale(1.1) translateY(-2px);
  box-shadow:0 14px 32px rgba(37,211,102,.45),0 8px 18px rgba(0,0,0,.18);
  animation:none;
}
.whatsapp-float:hover::before,.whatsapp-float:hover::after{
  animation:none;
}
.push-inbox{
  position:fixed;
  left:max(22px,calc((100vw - 1024px) / 2 + 22px));
  bottom:22px;
  z-index:21;
}
.push-inbox-button{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:58px;
  height:58px;
  border:0;
  border-radius:50%;
  background:linear-gradient(180deg,#10213f,#071126);
  color:#f7efd8;
  box-shadow:0 12px 26px rgba(7,17,38,.34),0 4px 12px rgba(0,0,0,.18),inset 0 0 0 1px rgba(201,170,95,.28);
  cursor:pointer;
}
.push-inbox-button svg{
  width:28px;
  height:28px;
  stroke-width:2;
}
.push-inbox-button span{
  position:absolute;
  top:-3px;
  right:-3px;
  display:grid;
  min-width:22px;
  height:22px;
  place-items:center;
  padding:0 6px;
  border-radius:999px;
  background:#b20d14;
  color:#fff;
  font-size:11px;
  font-weight:900;
  line-height:1;
  box-shadow:0 4px 10px rgba(178,13,20,.35);
}
.push-inbox-panel{
  position:absolute;
  left:0;
  bottom:72px;
  width:min(320px,calc(100vw - 28px));
  max-height:min(430px,calc(100vh - 130px));
  overflow:hidden;
  border:1px solid rgba(201,170,95,.24);
  border-radius:18px;
  background:linear-gradient(180deg,#fff,#f4f6fa);
  box-shadow:0 22px 54px rgba(7,17,38,.3);
}
.push-inbox-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  padding:14px 16px;
  border-bottom:1px solid rgba(7,17,38,.1);
  background:#071126;
  color:#fff;
}
.push-inbox-head strong{
  font-size:16px;
  line-height:1.1;
}
.push-inbox-head small{
  color:#d2c39a;
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
}
.push-subscribe{
  display:grid;
  gap:8px;
  padding:12px 16px;
  border-bottom:1px solid rgba(7,17,38,.1);
  background:#f8fafc;
}
.push-subscribe-btn{
  min-height:42px;
  border:0;
  border-radius:999px;
  padding:0 16px;
  background:linear-gradient(180deg,#c51f28,#8f1118);
  color:#fff;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 8px 18px rgba(178,13,20,.22),inset 0 1px 0 rgba(255,255,255,.18);
}
.push-subscribe-btn:disabled{
  cursor:wait;
  opacity:.72;
}
.push-subscribe small{
  color:#475569;
  font-size:12px;
  line-height:1.35;
}
.push-inbox-list{
  display:grid;
  gap:0;
  max-height:360px;
  overflow:auto;
}
.push-inbox-item{
  display:grid;
  gap:6px;
  padding:14px 16px;
  border-bottom:1px solid rgba(7,17,38,.08);
  color:#101521;
  text-decoration:none;
  background:#fff;
}
.push-inbox-item:hover{
  background:#f8fafc;
}
.push-inbox-item strong{
  font-size:14px;
  line-height:1.25;
}
.push-inbox-item span{
  color:#475569;
  font-size:13px;
  line-height:1.35;
}
.push-inbox-item small{
  color:#7c8798;
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
}
.push-inbox-empty{
  margin:0;
  padding:18px 16px;
  color:#475569;
  font-size:13px;
}

@keyframes waMiniPulse{
  0%,100%{box-shadow:0 0 0 0 rgba(37,211,102,.28);transform:scale(1)}
  50%{box-shadow:0 0 0 6px rgba(37,211,102,0);transform:scale(1.08)}
}
@keyframes waFloatPulse{
  0%,100%{transform:scale(1)}
  50%{transform:scale(1.07)}
}
@keyframes waRipple{
  0%{transform:scale(1);opacity:.42}
  100%{transform:scale(1.65);opacity:0}
}

@media (max-width:620px){
  .site-shell{overflow:visible}
  .brand-logo-link{width:135px;left:12px}
  .topbar-inner{padding-left:154px;padding-right:18px}
  .top-left{gap:10px}.top-right{gap:8px}
  .navbar{height:auto;min-height:70px}
  .nav-inner{padding:10px 18px 10px 154px;align-items:flex-start;gap:10px}
  .menu{height:auto;gap:18px;flex-wrap:wrap;min-height:34px}.menu a{line-height:25px;font-size:11px}.menu a.active::after{bottom:0}
  .reserve-btn{height:34px;font-size:11px}
  .hero{height:330px;background-size:auto 330px;background-position:center top}
  h1{font-size:24px;line-height:1.15;max-width:760px}
  .hero-copy{left:28px;top:45px;right:20px}
  .hero::before{left:18px;top:34px;width:calc(100% - 36px);height:140px}
  .booking-card{grid-template-columns:1fr 1fr;width:calc(100% - 32px);margin:-32px 16px 0;padding:18px;gap:12px}
  .booking-title{grid-column:1/-1}.booking-divider{display:none}.quote-btn{margin-top:0}
  .booking-details{grid-template-columns:1fr 1fr}.booking-details .wide{grid-column:1/-1}.booking-details .send{grid-column:1/-1}
  .feature-row{height:auto;grid-template-columns:1fr 1fr;padding:0 18px 24px;gap:12px}
  .feature{min-height:104px;padding:15px}
  .home-pages{grid-template-columns:1fr;padding:24px 18px 28px}
  .content-card,.content-card:first-child{grid-template-columns:190px 1fr}
  .content-block{grid-template-columns:1fr;padding:28px 22px;gap:12px}
  .page-hero{grid-template-columns:1fr 34%}
  .page-copy{padding:58px 28px 64px}
  .page-copy h1{font-size:27px}
  .page-copy p{font-size:15px}
  footer{padding:12px 18px;flex-wrap:wrap}
}
@media (max-width:620px){
  .site-shell{overflow:hidden}
  .brand-logo-link{
    position:absolute;
    display:block;
    width:86px;
    margin:0;
    left:17px;
    top:8px;
    z-index:35;
    padding:4px;
    border-radius:18px;
    background:rgba(255,255,255,.92);
    filter:drop-shadow(0 10px 18px rgba(7,17,38,.18));
  }
  .topbar{display:none}
  .navbar{
    min-height:80px;
    background:rgba(255,255,255,.96);
    border-bottom:1px solid rgba(7,17,38,.08);
    box-shadow:0 10px 24px rgba(7,17,38,.10);
    z-index:30;
  }
  .nav-inner{
    min-height:80px;
    padding:12px 15px 12px 116px;
    justify-content:flex-end;
    flex-direction:row;
    align-items:center;
    flex-wrap:nowrap;
    gap:0;
    position:relative;
  }
  .menu-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:48px;
    height:44px;
    margin-left:auto;
    border:1px solid rgba(7,17,38,.12);
    border-radius:14px;
    background:linear-gradient(180deg,#ffffff 0%,#f4f7fb 100%);
    color:#071126;
    font-size:0;
    box-shadow:0 8px 18px rgba(15,23,42,.10), inset 0 1px 0 rgba(255,255,255,.85);
    transition:transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
  }
  .menu-toggle::before{
    content:"";
    width:21px;
    height:15px;
    background:
      linear-gradient(currentColor,currentColor) 0 0/21px 2px no-repeat,
      linear-gradient(currentColor,currentColor) 0 6.5px/21px 2px no-repeat,
      linear-gradient(currentColor,currentColor) 0 13px/21px 2px no-repeat;
    border-radius:2px;
    transition:transform .25s ease, filter .25s ease;
  }
  .menu-toggle:hover{
    transform:translateY(-1px);
    box-shadow:0 12px 22px rgba(15,23,42,.14), inset 0 1px 0 rgba(255,255,255,.9);
  }
  .menu-toggle[aria-expanded="true"]{
    color:#fff;
    background:linear-gradient(180deg,#111b2f 0%,#071126 100%);
    box-shadow:0 10px 24px rgba(7,17,38,.24);
  }
  .menu-toggle[aria-expanded="true"]::before{
    transform:scale(.92);
    filter:drop-shadow(0 0 6px rgba(255,255,255,.28));
  }
  .menu{
    display:none;
    position:absolute;
    left:0;
    right:0;
    top:100%;
    width:100%;
    margin:0;
    justify-content:flex-start;
    gap:0;
    padding:12px 15px 16px;
    background:linear-gradient(180deg,#0d182b 0%,#071126 100%);
    border-top:1px solid rgba(255,255,255,.08);
    box-shadow:0 18px 34px rgba(7,17,38,.22);
    z-index:31;
  }
  .menu.open{
    display:grid;
    grid-template-columns:1fr;
    animation:mobileMenuIn .22s ease both;
  }
  .menu a{
    min-height:48px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    line-height:1;
    padding:0 14px;
    border-top:0;
    border-bottom:1px solid rgba(255,255,255,.08);
    border-radius:10px;
    color:rgba(255,255,255,.84);
    font-size:13px;
    letter-spacing:.5px;
    font-weight:800;
    transition:background .2s ease, color .2s ease, transform .2s ease;
  }
  .menu a::before{
    content:"";
    width:7px;
    height:7px;
    border-radius:50%;
    margin-right:10px;
    background:rgba(210,195,154,.42);
    box-shadow:0 0 0 4px rgba(210,195,154,.08);
    flex:0 0 auto;
  }
  .menu a::after{
    content:"";
    position:static;
    display:block;
    left:auto;
    right:auto;
    bottom:auto;
    margin:0 0 0 auto;
    width:8px;
    height:8px;
    border-top:2px solid currentColor;
    border-right:2px solid currentColor;
    transform:rotate(45deg);
    opacity:.42;
  }
  .menu a:hover,.menu a.active{
    background:rgba(255,255,255,.07);
    color:#fff;
    transform:translateX(2px);
  }
  .menu a.active::before{
    background:#d2c39a;
    box-shadow:0 0 0 4px rgba(210,195,154,.14);
  }
  .menu a.active::after{
    content:"";
    position:static;
    display:block;
    left:auto;
    right:auto;
    bottom:auto;
    margin:0 0 0 auto;
    width:8px;
    height:8px;
    border-top:2px solid currentColor;
    border-right:2px solid currentColor;
    border-radius:0;
    background:transparent;
    transform:rotate(45deg);
    opacity:.42;
  }
  .reserve-btn{display:none}
  .hero{
    height:395px;
    background-size:auto 360px;
    background-position:66% center;
  }
  .map-label{display:none}
  .hero-copy{left:20px;top:44px;right:18px}
  .hero-copy p{font-size:13px;line-height:1.45;max-width:330px}
  .notice{width:calc(100% - 32px);margin:12px 16px 0}
  .hero::before{
    left:12px;
    top:36px;
    width:calc(100% - 24px);
    height:194px;
    border-radius:12px;
    background:linear-gradient(180deg,rgba(255,255,255,.66),rgba(255,255,255,.34) 72%,rgba(255,255,255,0));
  }
  .booking-card{grid-template-columns:1fr;margin-top:-14px}.booking-details{grid-template-columns:1fr}
  .feature-row{grid-template-columns:1fr}.feature{grid-template-columns:42px 1fr;min-height:auto}
  .content-card,.content-card:first-child{grid-template-columns:1fr}
  .content-card img{height:190px;min-height:190px}
  .content-card div{padding:20px}
  .content-card h2{font-size:20px}
  .page-hero{grid-template-columns:1fr}
  .page-hero img{height:210px;min-height:210px;order:-1}
  .page-copy{padding:28px 20px 34px}
  .page-copy h1{font-size:23px}
  .page-copy p{font-size:14px}
  .page-points{grid-template-columns:1fr}
  .content-block h2{font-size:21px}.content-block p{font-size:15px}
  .copyright{text-align:left}
  .whatsapp-float{right:14px;bottom:14px;width:48px;height:48px}
  .whatsapp-float svg{width:26px;height:26px}
  .push-inbox{left:14px;bottom:14px}
  .push-inbox-button{width:48px;height:48px}
  .push-inbox-button svg{width:24px;height:24px}
  .push-inbox-panel{bottom:62px;width:min(310px,calc(100vw - 28px))}
}
@keyframes mobileMenuIn{
  from{opacity:0;transform:translateY(-8px)}
  to{opacity:1;transform:translateY(0)}
}
@media (prefers-reduced-motion:reduce){
  .social-dot.wa,.whatsapp-float,.whatsapp-float::before,.whatsapp-float::after{
    animation:none;
  }
  .reserve-btn,.quote-btn,.content-card a,.social-dot,.whatsapp-float,.push-inbox-button{
    transition:none;
  }
}

/* Full-width production layout */
@media (min-width:621px){
  html,body{background:#eef2f7}
  .site-shell{
    width:100%;
    max-width:none;
    margin:0;
    overflow:hidden;
    box-shadow:none;
    background:#fff;
    padding-top:104px;
  }
  header{
    position:fixed;
    top:0;
    left:0;
    right:0;
    width:100vw;
    max-width:100vw;
    z-index:80;
  }
  .navbar{
    min-height:76px;
    background:#101b31;
  }
  .nav-inner{
    max-width:1180px;
    min-height:76px;
    margin:0 auto;
    padding:0 24px 0 166px;
  }
  .brand-logo-link{
    left:max(22px,calc((100vw - 1180px) / 2 + 22px));
    top:28px;
    width:138px;
  }
  .menu{
    gap:24px;
    min-height:76px;
  }
  .menu a{
    font-size:13px;
    line-height:76px;
  }
  .reserve-btn{
    height:40px;
    padding:0 18px 0 16px;
    border-radius:6px;
    font-size:12px;
  }
  .hero{
    height:640px;
    background-image:url("hero-wide-professional.jpg");
    background-size:1440px 570px;
    background-position:center center;
    background-color:#eaf0f7;
  }
  .hero::before{
    left:0;
    top:0;
    width:48%;
    height:100%;
    background:linear-gradient(90deg,rgba(255,255,255,.98) 0%,rgba(255,255,255,.9) 42%,rgba(255,255,255,.42) 72%,rgba(255,255,255,0) 100%);
  }
  .hero::after{
    height:210px;
    background:linear-gradient(180deg,rgba(255,255,255,0),rgba(255,255,255,.78));
  }
  .hero-copy{
    left:max(38px,calc((100vw - 1180px) / 2 + 38px));
    top:150px;
    max-width:430px;
  }
  h1{
    font-size:50px;
    line-height:1.12;
    max-width:430px;
  }
  .hero-copy p{
    max-width:390px;
    font-size:22px;
    line-height:1.24;
    margin-top:18px;
  }
  .booking-card{
    width:calc(100% - 48px);
    max-width:1100px;
    margin:-94px auto 0;
    padding:24px 28px 28px;
    grid-template-columns:repeat(4,minmax(0,1fr));
    column-gap:18px;
    row-gap:18px;
    border-radius:12px;
    box-shadow:0 22px 45px rgba(14,25,44,.22);
  }
  .booking-title strong{font-size:34px}
  .field-wrap label{font-size:15px}
  select,input{height:44px;font-size:13px}
  .quote-btn{
    height:48px;
    max-width:300px;
    justify-self:center;
    font-size:19px;
  }
  .feature-row{
    max-width:1160px;
    margin:0 auto;
    padding:54px 28px 42px;
    grid-template-columns:repeat(6,minmax(0,1fr));
  }
  .feature-row h2{
    font-size:34px;
    margin-bottom:18px;
  }
  .feature-icon{
    width:44px;
    height:44px;
  }
  .feature-icon svg{
    width:38px;
    height:38px;
  }
  .feature-copy strong{
    font-size:14px;
    line-height:1.12;
  }
  .home-pages{
    display:grid;
    max-width:1160px;
    margin:0 auto;
    padding:46px 28px 58px;
    border-top:1px solid #e2e8f0;
  }
  footer{
    padding:16px 24px 18px;
  }
  .footer-contact,.footer-links,.copyright{
    width:min(100%,1160px);
    margin:0 auto;
  }
  .whatsapp-float{
    right:max(22px,calc((100vw - 1180px) / 2 + 22px));
  }
}

@media (min-width:621px) and (max-width:900px){
  .nav-inner{padding-left:150px}
  .brand-logo-link{width:124px}
  .menu{gap:13px}
  .menu a{font-size:11px}
  .hero{height:590px}
  .hero-copy{top:130px}
  h1{font-size:40px;max-width:340px}
  .hero-copy p{font-size:18px;max-width:315px}
  .booking-card{grid-template-columns:repeat(2,minmax(0,1fr));margin-top:-76px}
  .quote-btn{grid-column:1/-1}
  .feature-row{grid-template-columns:repeat(3,minmax(0,1fr))}
  .feature-row h2{grid-column:1/-1}
}

@media (min-width:901px) and (orientation:landscape){
  .mobile-fixed-toggle{
    visibility:hidden !important;
    opacity:0 !important;
    pointer-events:none !important;
  }
}

@media (max-width:620px){
  .site-shell{width:100%;max-width:none}
  .hero{
    background-image:url("hero-wide-professional.jpg");
    background-size:cover;
    background-position:60% center;
  }
  .home-pages{display:grid}
  .footer-contact{
    display:grid;
    justify-content:stretch;
    text-align:center;
    gap:6px;
  }
}

@media (max-width:620px){
  .hero{
    height:420px;
  }
  .hero::before{
    left:0;
    top:0;
    width:100%;
    height:205px;
    border-radius:0;
    background:linear-gradient(180deg,rgba(255,255,255,.86),rgba(255,255,255,.5) 72%,rgba(255,255,255,0));
  }
  .hero-copy{
    left:20px;
    right:18px;
    top:48px;
    max-width:350px;
  }
  h1{
    font-size:25px;
    line-height:1.12;
    max-width:350px;
  }
  .hero-copy p{
    max-width:330px;
    font-size:13px;
    line-height:1.38;
    margin-top:12px;
  }
  .booking-card{
    width:calc(100% - 32px);
    margin:-28px 16px 0;
    display:grid;
    grid-template-columns:1fr;
    padding:22px 18px 18px;
    gap:12px;
  }
  .booking-title{
    grid-column:1/-1;
    text-align:center;
  }
  .booking-title strong{
    font-size:29px;
    line-height:.95;
  }
  .field-wrap{
    min-height:auto;
    gap:7px;
  }
  .field-wrap label{
    font-size:13px;
    min-height:auto;
  }
  select,input{
    width:100%;
    height:42px;
    font-size:13px;
  }
  .quote-btn{
    grid-column:1/-1;
    max-width:none;
    width:100%;
    height:46px;
    font-size:17px;
    margin-top:2px;
  }
  .feature-row{
    grid-template-columns:repeat(2,minmax(0,1fr));
    padding:38px 18px 30px;
    gap:24px 14px;
  }
  .feature-row h2{
    grid-column:1/-1;
    font-size:27px;
  }
  .feature{
    grid-template-columns:1fr;
    padding:0;
  }
  .feature-copy strong{
    font-size:13px;
  }
  .home-pages{
    grid-template-columns:1fr;
    padding:28px 16px 34px;
  }
  .content-card,.content-card:first-child{
    grid-template-columns:1fr;
  }
  .content-card div{
    padding:20px;
  }
}

/* Restore classic centered design */
.site-shell{
  width:min(100%,1024px);
  max-width:1024px;
  margin:0 auto;
  background:#eef2f7;
  box-shadow:0 10px 40px rgba(13,20,35,.16);
  padding-top:92px;
}
.brand-logo-link{
  position:fixed;
  left:calc(50% - 512px + 18px);
  top:28px;
  width:145px;
  padding:0;
  border-radius:0;
  background:transparent;
  z-index:95;
}
.brand-logo{
  filter:drop-shadow(0 6px 7px rgba(0,0,0,.32));
}
.topbar{
  min-height:28px;
  height:auto;
  overflow:visible;
  display:flex;
}
.topbar-inner{
  max-width:1024px;
  margin:0 auto;
  padding-left:165px;
  padding-right:165px;
  justify-content:center;
  gap:24px;
}
.navbar{
  min-height:64px;
  background:#fff;
  border-bottom:1px solid rgba(13,22,38,.08);
  box-shadow:0 7px 18px rgba(16,27,43,.16);
}
.nav-inner{
  max-width:1024px;
  min-height:64px;
  padding-left:165px;
  padding-right:165px;
  margin:0 auto;
  gap:20px;
}
.menu{
  gap:24px;
  min-height:64px;
}
.menu a{
  color:#151a22;
  font-size:12px;
  line-height:64px;
  text-shadow:none;
}
.menu a.active::after{
  bottom:16px;
  background:#101521;
}
.reserve-btn{
  height:36px;
  padding:0 15px 0 13px;
  border-radius:999px;
  background:linear-gradient(180deg,#071226 0%,#040b18 100%);
  font-size:12px;
  box-shadow:0 2px 0 rgba(0,0,0,.65), inset 0 0 0 1px rgba(255,255,255,.08);
}
.hero{
  height:350px;
  background-image:linear-gradient(180deg,rgba(255,255,255,.12),rgba(255,255,255,0) 30%), url("hero-clean.jpg");
  background-size:100% 350px;
  background-position:center top;
  background-color:transparent;
}
.hero::before{
  display:none;
}
.hero::after{
  height:120px;
  background:linear-gradient(180deg,rgba(255,255,255,0),rgba(8,14,23,.20));
}
.hero-copy{
  left:170px;
  right:46px;
  top:48px;
  max-width:none;
}
h1{
  font-family:Georgia,"Times New Roman",serif;
  font-size:27px;
  line-height:1.08;
  letter-spacing:.35px;
  color:#04050b;
  max-width:850px;
  text-shadow:0 2px 0 rgba(255,255,255,.75),0 8px 18px rgba(255,255,255,.36),0 1px 3px rgba(0,0,0,.28);
}
h1 .gold{
  color:#8f7943;
}
h1 .gold::after{
  display:block;
}
.hero-copy p{
  max-width:610px;
  margin:14px 0 0;
  font-size:15.5px;
  line-height:1.55;
  color:#071126;
  text-shadow:0 1px 0 rgba(255,255,255,.82),0 2px 8px rgba(255,255,255,.62),0 1px 2px rgba(0,0,0,.22);
}
.booking-card{
  width:calc(100% - 72px);
  max-width:none;
  margin:-38px 36px 0;
  grid-template-columns:170px 1px minmax(170px,1.45fr) minmax(118px,1fr) minmax(118px,1fr) minmax(118px,1fr) 118px;
  align-items:center;
  column-gap:10px;
  row-gap:12px;
  padding:16px 15px 16px 17px;
  border-radius:8px;
  box-shadow:0 10px 22px rgba(14,25,44,.22);
}
.booking-title{
  grid-column:auto;
  text-align:left;
}
.booking-title strong{
  font-family:"Segoe UI",Arial,sans-serif;
  font-size:18px;
  line-height:1.05;
  text-transform:uppercase;
  color:#10131a;
}
.booking-title small{
  display:block;
}
.booking-divider{
  display:block;
}
.field-wrap label{
  font-size:8px;
  text-transform:uppercase;
  color:#465163;
  font-weight:900;
  letter-spacing:.2px;
}
select,input{
  height:38px;
  font-size:11px;
}
.quote-btn{
  grid-column:auto;
  max-width:none;
  height:38px;
  font-size:11px;
}
.quote-btn svg{
  width:15px;
  height:15px;
  background:transparent;
  color:currentColor;
  border-radius:0;
  padding:0;
}
.feature-row{
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
  max-width:none;
  margin:0;
  gap:0;
  padding:24px 24px 24px;
  background:#eef2f7;
  text-align:left;
  align-items:start;
}
.feature-row h2{
  display:none;
}
.feature{
  min-height:88px;
  display:grid;
  grid-template-columns:38px minmax(0,1fr);
  gap:7px;
  padding:0 4px 0 2px;
  border:0;
  border-radius:0;
  background:transparent;
  position:relative;
  align-items:start;
  align-content:start;
}
.feature:not(:last-child)::after{
  content:"";
  position:absolute;
  top:1px;
  right:0;
  width:1px;
  height:88px;
  background:linear-gradient(180deg,rgba(180,187,198,0),rgba(180,187,198,.72) 18%,rgba(180,187,198,.72) 82%,rgba(180,187,198,0));
}
.feature-icon{
  width:38px;
  height:44px;
  margin:0;
  align-self:start;
  justify-self:start;
}
.feature-copy{
  min-width:0;
  padding-top:1px;
  max-width:112px;
  justify-self:start;
}
.feature-copy strong{
  min-height:26px;
  font-size:11.6px;
  line-height:1.08;
  white-space:nowrap;
}
.feature-copy small{
  display:block;
  margin-top:8px;
  max-width:112px;
  font-size:10.2px;
  line-height:1.3;
}
.home-pages{
  display:grid;
  max-width:none;
  margin:0;
  grid-template-columns:repeat(2,minmax(0,1fr));
  padding:30px 36px 34px;
}
footer{
  min-height:44px;
  display:flex;
  justify-content:space-between;
  padding:10px 36px;
  background:#e8edf4;
  color:#7a828e;
}
.footer-links{
  justify-content:flex-start;
  gap:18px;
}
.footer-links a{
  color:#7a828e;
}
.footer-links a:not(:last-child)::after{
  content:"";
}
.copyright{
  color:#707987;
  text-align:left;
  font-size:10px;
}
.whatsapp-float{
  right:max(22px,calc((100vw - 1024px) / 2 + 22px));
}

@media (max-width:620px){
  html,body{
    width:100%;
    max-width:100vw;
    overflow-x:hidden;
  }
  body{
    background:#dfe4eb;
  }
  body::before,
  body::after{
    display:none;
  }
  .site-shell{
    width:100vw;
    max-width:100vw;
    padding-top:80px;
  }
  .brand-logo-link{
    position:fixed;
    width:86px;
    left:17px;
    top:8px;
    padding:0;
    border-radius:0;
    background:transparent;
    filter:drop-shadow(0 8px 12px rgba(7,17,38,.24));
  }
  .topbar{display:none}
  header{
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:80;
  }
  .navbar{
    width:100vw;
    max-width:100vw;
    min-height:80px;
    background:
      linear-gradient(90deg,rgba(255,255,255,.9),rgba(255,255,255,.64) 48%,rgba(255,255,255,.9)),
      url("mobile-blue-taxi-map.png");
    background-size:125% auto;
    background-position:center 56%;
    box-shadow:0 10px 24px rgba(7,17,38,.10);
  }
  .nav-inner{
    width:100vw;
    max-width:100vw;
    min-height:80px;
    padding:12px 15px 12px 116px;
    justify-content:flex-end;
    flex-direction:row;
    align-items:center;
    flex-wrap:nowrap;
  }
  .nav-inner > .menu-toggle{display:none !important}
  .mobile-fixed-toggle{
    display:inline-flex !important;
    position:fixed !important;
    top:27px !important;
    right:auto !important;
    left:calc(100dvw - 70px) !important;
    z-index:101 !important;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    width:58px !important;
    height:48px !important;
    margin:0;
    border:1px solid rgba(255,255,255,.34) !important;
    border-radius:14px;
    background:linear-gradient(180deg,#143f7a 0%,#071f4a 100%) !important;
    color:#fff !important;
    font-size:0;
    box-shadow:0 10px 22px rgba(7,18,38,.24), inset 0 1px 0 rgba(255,255,255,.22) !important;
    backdrop-filter:blur(3px);
  }
  .mobile-fixed-toggle::before{display:none}
  .mobile-fixed-toggle span{
    display:block;
    width:26px !important;
    height:3px !important;
    border-radius:3px;
    background:#fff !important;
  }
  .mobile-fixed-toggle span + span{margin-top:5px !important}
  .menu{
    display:none;
    position:absolute;
    left:0;
    right:0;
    top:100%;
    width:100%;
    padding:12px 15px 16px;
    background:linear-gradient(180deg,#0d182b 0%,#071126 100%);
    z-index:31;
  }
  .menu.open{display:grid}
  .menu-item{
    display:grid;
    min-height:auto;
  }
  .menu a{
    min-height:48px;
    line-height:1;
    color:rgba(255,255,255,.84);
    font-size:13px;
  }
  .submenu{
    position:static;
    min-width:0;
    padding:0 0 0 14px;
    border:0;
    border-radius:0;
    background:transparent;
    box-shadow:none;
    opacity:1;
    visibility:visible;
    transform:none;
  }
  .submenu a{
    min-height:42px;
    padding:0 10px;
    color:rgba(255,255,255,.74);
    background:transparent;
    font-size:12px;
  }
  .submenu a:hover,
  .submenu a.active{
    color:#fff;
    background:rgba(255,255,255,.08);
  }
  .reserve-btn{display:none}
  .hero{
    height:395px;
    background-image:linear-gradient(180deg,rgba(255,255,255,.12),rgba(255,255,255,0) 30%), url("hero-clean.jpg");
    background-size:auto 360px;
    background-position:66% center;
  }
  .hero::before{
    display:block;
    left:12px;
    top:36px;
    width:calc(100% - 24px);
    height:194px;
    border-radius:12px;
    background:linear-gradient(180deg,rgba(255,255,255,.66),rgba(255,255,255,.34) 72%,rgba(255,255,255,0));
  }
  .hero-copy{
    left:20px;
    top:44px;
    right:18px;
    max-width:350px;
  }
  h1{
    font-size:21px;
    line-height:1.12;
    max-width:350px;
  }
  .hero-copy p{
    max-width:330px;
    font-size:13px;
    line-height:1.38;
  }
  .booking-card{
    width:calc(100% - 32px);
    margin:-14px 16px 0;
    grid-template-columns:1fr;
    padding:22px 18px 18px;
    gap:12px;
  }
  .booking-title{text-align:left}
  .booking-title strong{font-size:22px}
  .booking-divider{display:none}
  .field-wrap label{font-size:8px}
  select,input{height:42px;font-size:13px}
  .quote-btn{
    grid-column:1/-1;
    width:100%;
    height:46px;
    font-size:17px;
  }
  .feature-row{
    width:calc(100vw - 24px);
    max-width:324px;
    margin:0 auto;
    grid-template-columns:repeat(3,82px);
    justify-content:space-between;
    gap:18px 0;
    padding:24px 0 28px;
    overflow:hidden;
  }
  .feature{
    min-width:0;
    width:100%;
    max-width:100%;
    min-height:112px;
    grid-template-columns:1fr;
    gap:6px;
    padding:0;
    text-align:center;
    justify-items:center;
    overflow:hidden;
  }
  .feature:not(:last-child)::after{display:none}
  .feature-icon{
    width:34px;
    height:36px;
    justify-self:center;
  }
  .feature-icon svg{
    width:34px;
    height:34px;
  }
  .feature-copy{
    width:100%;
    max-width:100%;
    min-width:0;
    padding-top:0;
    justify-self:center;
  }
  .feature-copy strong{
    min-height:24px;
    font-size:8.2px;
    line-height:1.08;
    white-space:normal;
    word-break:normal;
    overflow-wrap:anywhere;
  }
  .feature-copy small{
    max-width:100%;
    margin-top:6px;
    font-size:7.7px;
    line-height:1.25;
    overflow-wrap:anywhere;
  }
  .home-pages{
    grid-template-columns:1fr;
    padding:28px 16px 34px;
  }
  .content-card,.content-card:first-child{
    grid-template-columns:1fr;
  }
  footer{
    display:flex;
    padding:12px 18px;
  }
  .whatsapp-float{right:14px}
}

.flota-gallery{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  padding:0 36px 36px;
  background:#fff;
}
.flota-gallery img{
  width:100%;
  height:280px;
  object-fit:cover;
  border-radius:8px;
  box-shadow:0 8px 20px rgba(14,25,44,.12);
  display:block;
  transition:transform .32s ease, box-shadow .32s ease;
}
.flota-gallery img:hover{
  transform:scale(1.02);
  box-shadow:0 12px 28px rgba(14,25,44,.22);
}
@media (max-width:620px){
  .flota-gallery{
    grid-template-columns:1fr;
    padding:0 16px 24px;
    gap:14px;
  }
  .flota-gallery img{
    height:220px;
  }
}

.flota-gallery{
  display:none;
}
.flota-showcase{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
  padding:28px 28px 38px;
  background:#fff;
}
.flota-card{
  position:relative;
  min-width:0;
  min-height:590px;
  overflow:hidden;
  border:1px solid #d9dee7;
  border-radius:22px;
  background:#fff;
  box-shadow:0 14px 28px rgba(14,25,44,.10);
}
.flota-card__label{
  display:none;
}
.flota-card__number{
  display:none;
}
.flota-card__media{
  position:relative;
  z-index:2;
  height:260px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:44px 26px 8px;
}
.flota-card__media::after{
  content:"";
  position:absolute;
  left:12%;
  right:12%;
  bottom:14px;
  height:22px;
  border-radius:50%;
  background:rgba(0,0,0,.36);
  filter:blur(12px);
}
.flota-card__media img{
  position:relative;
  z-index:1;
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
  border:0;
  border-radius:0;
  background:transparent;
  filter:contrast(1.04) saturate(1.07) drop-shadow(0 15px 18px rgba(0,0,0,.42));
}
.flota-card__body{
  position:relative;
  z-index:2;
  padding:12px 24px 28px;
}
.flota-card__body h3{
  margin:0;
  color:#071126;
  font-family:Georgia,"Times New Roman",serif;
  font-size:31px;
  line-height:1.08;
}
.flota-card:first-child .flota-card__body h3{
  color:#071126;
}
.flota-card__body p{
  min-height:75px;
  margin:14px 0 18px;
  color:#2f3a4b;
  font-size:14px;
  line-height:1.68;
}
.flota-specs{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  margin:0;
  overflow:hidden;
  border:1px solid #d9dee7;
  border-radius:14px;
  background:#f7f9fc;
}
.flota-specs div{
  min-width:0;
  display:grid;
  justify-items:center;
  gap:5px;
  padding:16px 8px 15px;
  text-align:center;
}
.flota-specs div + div{
  border-left:1px solid #d9dee7;
}
.flota-specs dt{
  display:grid;
  justify-items:center;
  gap:5px;
  margin:0;
  color:#6a7485;
  font-size:9px;
  line-height:1;
  font-weight:900;
  text-transform:uppercase;
}
.flota-specs dt svg{
  width:18px;
  height:18px;
  color:#aa9462;
  stroke-width:2.25;
}
.flota-specs dd{
  margin:0;
  color:#071126;
  font-size:12px;
  line-height:1.2;
  font-weight:900;
}
.flota-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
}
.flota-tags span{
  min-height:29px;
  display:inline-flex;
  align-items:center;
  padding:0 13px;
  border:1px solid #cfd6e2;
  border-radius:999px;
  background:#eef2f7;
  color:#273244;
  font-size:10px;
  line-height:1;
  font-weight:900;
  text-transform:uppercase;
}
.flota-cta{
  width:100%;
  max-width:100%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:48px;
  margin-top:28px;
  padding:0 18px;
  border-radius:999px;
  background:linear-gradient(180deg,#2ee477 0%,#18b957 100%);
  color:#fff;
  text-decoration:none;
  font-size:14px;
  line-height:1;
  font-weight:900;
  box-shadow:0 12px 24px rgba(24,185,87,.24), inset 0 1px 0 rgba(255,255,255,.28);
  transition:transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.flota-cta svg{
  width:20px;
  height:20px;
  color:#fff;
  flex:0 0 auto;
}
.flota-cta span{
  font-size:20px;
  line-height:1;
}
.flota-cta:hover{
  color:#fff;
  transform:translateY(-2px);
  background:linear-gradient(180deg,#35ef82 0%,#15aa4e 100%);
  box-shadow:0 16px 28px rgba(24,185,87,.3), inset 0 1px 0 rgba(255,255,255,.34);
}
.flota-cta:hover svg{
  color:#fff;
}

@media (max-width:900px) and (min-width:621px){
  .flota-showcase{
    grid-template-columns:1fr;
    padding:24px 28px 34px;
  }
  .flota-card{
    min-height:auto;
  }
  .flota-card__media{
    height:245px;
  }
  .flota-card__body p{
    min-height:0;
  }
}

@media (max-width:620px){
  .flota-showcase{
    grid-template-columns:1fr;
    gap:16px;
    padding:18px 14px 26px;
    background:#fff;
  }
  .flota-card{
    min-height:auto;
    border-radius:18px;
  }
  .flota-card__label{
    top:12px;
    left:13px;
    min-height:27px;
    padding:0 12px;
    font-size:11px;
  }
  .flota-card__number{
    top:18px;
    right:18px;
    font-size:56px;
  }
  .flota-card__media{
    height:205px;
    padding:38px 14px 0;
  }
  .flota-card__media img{
    max-width:100%;
  }
  .flota-card__body{
    padding:14px 16px 22px;
  }
  .flota-card__body h3{
    font-size:28px;
  }
  .flota-card__body p{
    min-height:0;
    margin:11px 0 16px;
    font-size:13px;
    line-height:1.58;
  }
  .flota-specs{
    border-radius:13px;
  }
  .flota-specs div{
    padding:13px 5px 12px;
  }
  .flota-specs dt{
    font-size:7.6px;
  }
  .flota-specs dt svg{
    width:16px;
    height:16px;
  }
  .flota-specs dd{
    font-size:11px;
  }
  .flota-tags{
    gap:7px;
    margin-top:12px;
  }
  .flota-tags span{
    min-height:27px;
    padding:0 10px;
    font-size:9px;
  }
.flota-cta{
    margin-top:22px;
    font-size:13px;
    min-height:46px;
    padding:0 14px;
  }
}

.hero-eyebrow{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:0 12px;
  margin-bottom:10px;
  border-radius:999px;
  background:rgba(255,255,255,.78);
  color:#8a1115;
  border:1px solid rgba(170,148,98,.28);
  font-size:11px;
  line-height:1;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.35px;
  box-shadow:0 8px 16px rgba(14,25,44,.08);
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.hero-actions a{
  min-height:38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 16px;
  border-radius:999px;
  text-decoration:none;
  font-size:11px;
  line-height:1;
  font-weight:900;
  text-transform:uppercase;
  box-shadow:0 8px 18px rgba(14,25,44,.16);
  transition:transform .22s ease, box-shadow .22s ease, background .22s ease;
}
.hero-primary{
  color:#fff;
  background:linear-gradient(180deg,#df1f27 0%,#a4070d 100%);
}
.hero-secondary{
  color:#071126;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(7,17,38,.14);
}
.hero-actions a:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 24px rgba(14,25,44,.22);
}
.hero-trust{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  margin-top:13px;
  max-width:560px;
}
.hero-trust span{
  display:inline-flex;
  align-items:center;
  min-height:24px;
  padding:0 10px;
  border-radius:999px;
  background:rgba(7,17,38,.76);
  color:#fff;
  font-size:10px;
  line-height:1;
  font-weight:800;
  box-shadow:0 6px 14px rgba(7,17,38,.18);
}

@media (max-width:620px){
  .hero-eyebrow{
    min-height:24px;
    margin-bottom:8px;
    padding:0 10px;
    font-size:9px;
  }
  .hero-actions{
    gap:8px;
    margin-top:12px;
  }
  .hero-actions a{
    min-height:34px;
    padding:0 12px;
    font-size:9px;
  }
  .hero-trust{
    gap:6px;
    margin-top:10px;
  }
.hero-trust span{
    min-height:21px;
    padding:0 8px;
    font-size:8px;
  }
}

.legacy-booking{
  display:none !important;
}
.agenda-card{
  display:block;
  max-width:960px;
  padding:22px 24px 24px;
}
.agenda-card [hidden]{
  display:none !important;
}
.agenda-service-switch{
  position:absolute;
  top:18px;
  right:22px;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:7px;
  z-index:3;
}
.agenda-service-select{
  display:none;
}
.agenda-service-switch button{
  min-height:28px;
  padding:0 10px;
  border:1px solid #d2d9e5;
  border-radius:999px;
  background:#fff;
  color:#071126;
  font:900 10px "Segoe UI",Arial,sans-serif;
  text-transform:uppercase;
  cursor:pointer;
  box-shadow:0 3px 10px rgba(7,17,38,.08);
}
.agenda-service-switch button.active{
  background:#071126;
  color:#fff;
  border-color:#071126;
  animation:agendaModePulse 1.6s ease-in-out infinite;
}
@keyframes agendaModePulse{
  0%,100%{box-shadow:0 0 0 0 rgba(7,17,38,.30),0 3px 10px rgba(7,17,38,.08)}
  50%{box-shadow:0 0 0 6px rgba(7,17,38,.08),0 7px 18px rgba(7,17,38,.16)}
}
.agenda-title{
  text-align:left;
  padding:0;
}
.agenda-title strong{
  font-family:Georgia,"Times New Roman",serif;
  font-size:28px;
  line-height:1.04;
  color:#071126;
  text-transform:none;
}
.agenda-title small{
  display:block;
  margin-top:6px;
  color:#465163;
  font-size:13px;
  line-height:1.35;
  font-weight:700;
}
.agenda-progress{
  display:flex;
  align-items:center;
  gap:8px;
  margin:16px 0 18px;
}
.agenda-card.agenda-direct-mode .agenda-progress{
  display:none;
}
.agenda-progress span{
  width:34px;
  height:5px;
  border-radius:999px;
  background:#d9dee7;
  transition:background .22s ease, width .22s ease;
}
.agenda-progress span.active{
  width:54px;
  background:#b20d14;
}
.agenda-step{
  display:none;
}
.agenda-step.active{
  display:block;
}
.agenda-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:13px;
}
.agenda-grid .wide{
  grid-column:1/-1;
}
.agenda-card .field-wrap{
  min-height:auto;
}
.agenda-card .field-wrap label{
  font-size:9px;
  text-transform:uppercase;
  color:#465163;
  font-weight:900;
  letter-spacing:.25px;
}
.agenda-card select,
.agenda-card input{
  height:42px;
  font-size:12px;
}
.agenda-card textarea{
  min-height:72px;
  font-size:12px;
}
.agenda-rate{
  display:grid;
  grid-template-columns:1fr auto;
  gap:4px 14px;
  align-items:center;
  margin:16px 0 28px;
  padding:14px 16px;
  border:1px solid rgba(170,148,98,.34);
  border-radius:10px;
  background:#fffaf0;
  color:#071126;
}
.agenda-rate[hidden]{
  display:none;
}
.agenda-rate span{
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
  color:#8a7241;
}
.agenda-rate strong{
  font-size:22px;
  line-height:1;
  font-weight:900;
  color:#a4070d;
}
.agenda-rate small{
  grid-column:1/-1;
  color:#5d6776;
  font-size:12px;
  line-height:1.35;
}
.agenda-rate.pending strong{
  color:#071126;
}
.agenda-actions{
  display:flex;
  justify-content:flex-end;
  gap:10px;
  margin-top:16px;
}
.agenda-actions.split{
  justify-content:space-between;
}
.agenda-card .quote-btn{
  width:auto;
  min-width:150px;
  max-width:none;
  height:42px;
  padding:0 18px;
  font-size:12px;
  text-decoration:none;
}
.agenda-card .quote-btn.secondary{
  color:#071126;
  background:#eef2f7;
  box-shadow:inset 0 0 0 1px #d2d9e5;
}
.agenda-confirmation{
  border:1px solid #d9dee7;
  border-radius:10px;
  padding:18px;
  background:#f8fafc;
}
.agenda-confirmation h3{
  margin:0;
  color:#071126;
  font-family:Georgia,"Times New Roman",serif;
  font-size:24px;
  line-height:1.12;
}
.agenda-confirmation p{
  margin:8px 0 14px;
  color:#465163;
  font-size:14px;
  line-height:1.5;
}
.agenda-confirmation ul{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:9px;
  margin:0;
  padding:0;
  list-style:none;
}
.agenda-confirmation li{
  min-height:42px;
  display:flex;
  align-items:center;
  padding:10px 12px;
  border:1px solid #dce2ec;
  border-radius:8px;
  background:#fff;
  color:#465163;
  font-size:12px;
  line-height:1.25;
}
.agenda-confirmation strong{
  margin-left:4px;
  color:#071126;
}
.agenda-whatsapp{
  color:#fff !important;
}

/* Compact app-style layout for the agenda flow. */
.agenda-card{
  max-width:860px;
  margin:-38px auto 0;
  padding:18px 32px 22px;
  border-radius:18px;
}
.agenda-title{
  text-align:left;
  padding-right:320px;
}
.agenda-title strong{
  font-size:21px;
  text-transform:uppercase;
}
.agenda-title small{
  margin-top:4px;
  font-size:11.5px;
  font-weight:600;
}
.agenda-progress{
  justify-content:center;
  gap:7px;
  margin:14px 0 14px;
}
.agenda-progress span{
  width:10px;
  height:10px;
  border-radius:999px;
}
.agenda-progress span.active{
  width:10px;
  background:#d2b25e;
}
.agenda-card .compact-hidden{
  display:none;
}
.agenda-card .agenda-grid{
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px 12px;
}
.agenda-card .field-wrap{
  gap:5px;
  min-height:auto;
}
.agenda-card .field-wrap.wide{
  grid-column:1/-1;
}
.agenda-card .field-wrap.route-field{
  grid-column:auto;
}
.agenda-card .field-wrap.half{
  grid-column:auto;
}
.agenda-card .field-wrap label{
  font-size:8.5px;
  letter-spacing:.18px;
}
.agenda-card select,
.agenda-card input{
  height:36px;
  min-height:36px;
  padding:0 34px 0 11px;
  font-size:11.5px;
  border-radius:8px;
}
.agenda-card input{
  padding-right:11px;
}
.agenda-card textarea{
  min-height:52px;
  padding:10px 11px;
  font-size:11.5px;
  border-radius:8px;
}
.agenda-card .agenda-actions{
  margin-top:14px;
}
.agenda-card .quote-btn{
  width:100%;
  height:40px;
  min-width:0;
  font-size:12px;
  border-radius:999px;
}
.agenda-rate{
  max-width:860px;
  margin:14px auto 28px;
  padding:12px 14px;
  border-radius:10px;
}
.agenda-rate span{
  font-size:9.5px;
}
.agenda-rate strong{
  font-size:20px;
}
.agenda-rate small{
  font-size:11px;
}

@media (max-width:900px) and (min-width:621px){
  .agenda-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:620px){
  .agenda-card{
    width:calc(100% - 32px);
    margin:-14px 16px 0;
    padding:20px 18px 18px;
  }
  .agenda-title strong{
    font-size:28px;
  }
  .agenda-service-switch{
    display:none;
  }
  .agenda-service-select{
    display:flex;
    flex-direction:column;
    gap:5px;
    margin:10px 0 4px;
  }
  .agenda-service-select label{
    font-size:8.5px;
    text-transform:uppercase;
    color:#465163;
    font-weight:900;
    letter-spacing:.18px;
  }
  .agenda-service-select select{
    height:36px;
    font-size:11px;
  }
  .agenda-title small{
    font-size:12px;
  }
  .agenda-grid,
  .agenda-confirmation ul{
    grid-template-columns:1fr;
  }
  .agenda-rate{
    grid-template-columns:1fr;
  }
  .agenda-actions,
  .agenda-actions.split{
    display:grid;
    grid-template-columns:1fr;
  }
  .agenda-card .quote-btn{
    width:100%;
    min-width:0;
    height:46px;
    font-size:13px;
  }
}

@media (max-width:620px){
  .agenda-card{
    width:calc(100% - 24px);
    margin:-34px 12px 0;
    padding:18px 18px 22px;
    border-radius:18px;
  }
  .agenda-title strong{
    font-size:21px;
  }
  .agenda-title{
    text-align:left;
    padding-right:0;
  }
  .agenda-card .agenda-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .agenda-card .field-wrap.wide,
  .agenda-card .route-field,
  .agenda-card .field-wrap.route-field{
    grid-column:1/-1;
  }
  .agenda-card select,
  .agenda-card input{
    height:36px;
    font-size:11px;
  }
  .agenda-card textarea{
    min-height:52px;
    font-size:11px;
  }
  .agenda-card .quote-btn{
    height:40px;
    font-size:12px;
  }
  .agenda-rate{
    width:calc(100% - 24px);
    margin:14px 12px 28px;
  }
}

@media (max-width:620px){
  .vehicle-gif-strip{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:8px;
    padding:22px 14px 22px;
  }
  .vehicle-gif-strip img{
    height:132px;
    border-radius:8px;
    box-shadow:0 8px 18px rgba(14,25,44,.12);
  }
}

.service-highlights{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:20px;
  padding:30px 36px 8px;
  background:#eef2f7;
}
.services-page-options{
  padding-top:0;
  padding-bottom:42px;
}
.service-highlight{
  overflow:hidden;
  border:1px solid #d9dee7;
  border-radius:14px;
  background:#fff;
  box-shadow:0 12px 24px rgba(14,25,44,.10);
}
.service-highlight__media{
  position:relative;
  height:250px;
  overflow:hidden;
  background:#d9dee7;
}
.service-highlight__media > img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.service-highlight__body{
  padding:20px 22px 22px;
}
.service-highlight__body h2{
  margin:0;
  color:#071126;
  font-family:Georgia,"Times New Roman",serif;
  font-size:24px;
  line-height:1.08;
  text-transform:uppercase;
}
.service-highlight__body p{
  margin:10px 0 16px;
  color:#354052;
  font-size:14px;
  line-height:1.5;
}
.service-highlight__body a{
  display:inline-flex;
  min-height:36px;
  align-items:center;
  justify-content:center;
  padding:0 16px;
  border-radius:999px;
  color:#fff;
  background:#071126;
  text-decoration:none;
  text-transform:uppercase;
  font-size:11px;
  font-weight:900;
}
.page-hero{
  position:relative;
}
.service-request-panel{
  display:grid;
  grid-template-columns:300px minmax(0,1fr);
  gap:26px;
  padding:0 36px 42px;
  background:#fff;
}
.service-request-copy{
  padding:24px;
  border-radius:14px;
  background:#071126;
  color:#fff;
}
.service-request-copy h2{
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:28px;
  line-height:1.08;
}
.service-request-copy p{
  margin:12px 0 0;
  color:rgba(255,255,255,.78);
  font-size:14px;
  line-height:1.55;
}
.service-request-form{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  padding:24px;
  border:1px solid #d9dee7;
  border-radius:14px;
  background:#f8fafc;
}
.service-request-form .field-wrap.wide{
  grid-column:1/-1;
}
.service-request-form .field-wrap{
  min-height:auto;
  gap:6px;
}
.service-request-form .field-wrap label{
  font-size:9px;
  text-transform:uppercase;
  color:#465163;
  font-weight:900;
  letter-spacing:.25px;
}
.service-request-form input,
.service-request-form select{
  height:40px;
  font-size:12px;
}
.service-request-form textarea{
  min-height:82px;
  font-size:12px;
}
.service-request-form .quote-btn{
  grid-column:1/-1;
  width:100%;
  max-width:none;
  height:42px;
  font-size:12px;
}

@media (min-width:621px){
  .menu{
    gap:13px;
  }
  .menu a{
    font-size:10.5px;
  }
}

@media (max-width:900px) and (min-width:621px){
  .service-highlights,
  .service-request-panel{
    grid-template-columns:1fr;
  }
  .service-request-copy{
    padding:22px;
  }
}

@media (max-width:620px){
  .service-highlights{
    grid-template-columns:1fr;
    gap:16px;
    padding:22px 14px 8px;
  }
  .service-highlight__media{
    height:210px;
  }
  .service-highlight__body{
    padding:18px;
  }
  .service-highlight__body h2{
    font-size:22px;
  }
  .service-request-panel{
    grid-template-columns:1fr;
    gap:16px;
    padding:0 14px 30px;
  }
  .service-request-copy{
    padding:20px;
  }
  .service-request-copy h2{
    font-size:23px;
  }
  .service-request-form{
    grid-template-columns:1fr;
    padding:18px;
  }
  .service-request-form .quote-btn{
    height:42px;
  }
}

.menu .submenu a{
  min-height:36px;
  height:auto;
  padding:0 12px;
  color:#101827;
  line-height:1.2;
  text-shadow:none;
  white-space:nowrap;
}
.menu .submenu a.active::after{
  display:none;
}

@media (max-width:620px){
  .menu .submenu a{
    min-height:42px;
    padding:0 10px;
    color:rgba(255,255,255,.74);
    font-size:12px;
    background:transparent;
  }
}

body.modal-open{
  overflow:hidden;
}
.service-modal{
  position:fixed;
  inset:0;
  z-index:140;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
}
.service-modal.open{
  display:flex;
}
.service-modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(7,17,38,.68);
  backdrop-filter:blur(4px);
}
.service-modal__dialog{
  position:relative;
  z-index:1;
  width:min(920px,100%);
  max-height:min(88vh,820px);
  display:grid;
  grid-template-columns:300px minmax(0,1fr);
  gap:0;
  overflow:auto;
  border-radius:18px;
  background:#fff;
  box-shadow:0 24px 64px rgba(0,0,0,.34);
}
.service-modal__dialog .service-request-copy{
  border-radius:0;
  min-height:100%;
}
.service-modal__dialog .service-request-form{
  border:0;
  border-radius:0;
}
.service-modal__close{
  position:absolute;
  top:12px;
  right:12px;
  z-index:3;
  width:38px;
  height:38px;
  border:0;
  border-radius:50%;
  background:#fff;
  color:#071126;
  font-size:28px;
  line-height:1;
  box-shadow:0 8px 18px rgba(7,17,38,.24);
  cursor:pointer;
}
.service-modal__close:focus-visible{
  outline:3px solid rgba(210,195,154,.75);
  outline-offset:2px;
}

@media (max-width:720px){
  .service-modal{
    align-items:flex-end;
    padding:12px;
  }
  .service-modal__dialog{
    width:100%;
    max-height:88dvh;
    grid-template-columns:1fr;
    border-radius:18px 18px 10px 10px;
  }
  .service-modal__dialog .service-request-copy{
    min-height:auto;
    padding:18px 54px 18px 18px;
  }
  .service-modal__dialog .service-request-copy h2{
    font-size:21px;
  }
  .service-modal__dialog .service-request-copy p{
    font-size:12.5px;
  }
  .service-modal__dialog .service-request-form{
    grid-template-columns:1fr;
    padding:16px;
  }
  .service-modal__close{
    top:10px;
    right:10px;
    width:34px;
    height:34px;
    font-size:24px;
  }
}

/* Professional PWA app finish */
:root{
  --app-bg:#071126;
  --app-surface:#f3f6fa;
  --app-panel:#ffffff;
  --app-accent:#c9aa5f;
}
html,
body{
  background:var(--app-bg) !important;
}
body{
  background:var(--app-bg) !important;
  padding:0 env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}
body::before,
body::after{
  display:none !important;
}
.site-shell{
  background:var(--app-surface);
  box-shadow:0 22px 58px rgba(0,0,0,.34);
}
.navbar,
footer{
  background:#071126;
}
.navbar .menu a{
  color:#fff;
}
.navbar .menu a:hover,
.navbar .menu a.active{
  color:#f3f6fa;
}
.navbar .submenu a{
  color:#071126;
}
.topbar{
  background:#0b1730;
  color:#fff;
}
.top-link,
.follow{
  color:#fff;
}
.social-dot{
  color:#fff;
  border-color:rgba(255,255,255,.78);
}
.brand-logo{
  filter:drop-shadow(0 10px 16px rgba(0,0,0,.36));
}
.hero{
  border-bottom:1px solid rgba(7,17,38,.08);
}
.booking-card,
.agenda-card,
.content-card,
.service-highlight,
.service-request-form,
.flota-card{
  border-radius:8px;
}
.agenda-card{
  background:rgba(255,255,255,.98);
  border:1px solid rgba(201,170,95,.24);
  box-shadow:0 18px 36px rgba(7,17,38,.22);
}
.hero-eyebrow{
  background:#071126;
  color:#f8fafc;
  border-color:rgba(201,170,95,.62);
}
.hero-trust span{
  background:#071126;
  border:1px solid rgba(201,170,95,.32);
}
.reserve-btn,
.hero-primary,
.quote-btn{
  background:#b20d14;
}
.hero-secondary{
  background:#fff;
  color:#071126;
}
.agenda-service-switch button.active,
.quote-btn.send,
.content-card a,
.service-highlight__body a{
  background:#071126;
}
.whatsapp-float{
  box-shadow:0 14px 34px rgba(0,0,0,.28);
}
@media (display-mode:standalone){
  header{
    top:env(safe-area-inset-top);
  }
  .site-shell{
    min-height:100dvh;
  }
}
@media (max-width:620px){
  body{
    background:var(--app-bg) !important;
  }
  .site-shell{
    background:var(--app-surface);
    min-height:100dvh;
    padding-top:calc(80px + env(safe-area-inset-top));
  }
  .mobile-fixed-toggle{
    top:calc(27px + env(safe-area-inset-top)) !important;
  }
  .brand-logo-link{
    top:env(safe-area-inset-top);
  }
  .agenda-card{
    border-radius:8px;
  }
  .whatsapp-float{
    bottom:calc(14px + env(safe-area-inset-bottom));
  }
  .push-inbox{
    bottom:calc(14px + env(safe-area-inset-bottom));
  }
}

.mobile-menu-head,
.mobile-menu-actions{
  display:none;
}

@media (max-width:620px){
  body.mobile-menu-open{
    overflow:hidden;
    touch-action:none;
  }

  .mobile-fixed-toggle{
    top:calc(17px + env(safe-area-inset-top)) !important;
    left:auto !important;
    right:16px !important;
    width:54px !important;
    height:54px !important;
    border:1px solid rgba(201,170,95,.44) !important;
    border-radius:18px !important;
    background:
      linear-gradient(180deg,rgba(255,255,255,.12),rgba(255,255,255,0)),
      linear-gradient(145deg,#0c1a35 0%,#071126 62%,#150b10 100%) !important;
    box-shadow:
      0 18px 34px rgba(0,0,0,.34),
      inset 0 1px 0 rgba(255,255,255,.18),
      inset 0 -1px 0 rgba(201,170,95,.18) !important;
    backdrop-filter:blur(10px);
    transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
  }
  .mobile-fixed-toggle span{
    width:24px !important;
    height:2px !important;
    border-radius:999px !important;
    background:#fff !important;
    box-shadow:0 0 12px rgba(255,255,255,.18);
    transform-origin:center;
    transition:transform .24s ease, opacity .2s ease, margin .24s ease, background .2s ease;
  }
  .mobile-fixed-toggle span + span{
    margin-top:6px !important;
  }
  .mobile-fixed-toggle[aria-expanded="true"]{
    border-color:rgba(201,170,95,.7) !important;
    background:
      linear-gradient(180deg,rgba(178,13,20,.48),rgba(178,13,20,0) 58%),
      linear-gradient(145deg,#071126 0%,#0b1730 100%) !important;
    transform:translateY(1px);
    box-shadow:
      0 12px 26px rgba(0,0,0,.36),
      inset 0 1px 0 rgba(255,255,255,.12) !important;
  }
  .mobile-fixed-toggle[aria-expanded="true"] span:nth-child(1){
    transform:translateY(8px) rotate(45deg);
  }
  .mobile-fixed-toggle[aria-expanded="true"] span:nth-child(2){
    opacity:0;
    transform:scaleX(.4);
  }
  .mobile-fixed-toggle[aria-expanded="true"] span:nth-child(3){
    transform:translateY(-8px) rotate(-45deg);
  }

  .menu{
    position:fixed !important;
    top:calc(84px + env(safe-area-inset-top)) !important;
    left:12px !important;
    right:12px !important;
    bottom:calc(12px + env(safe-area-inset-bottom)) !important;
    width:auto !important;
    max-width:none !important;
    overflow:auto;
    overscroll-behavior:contain;
    display:none;
    grid-template-columns:1fr;
    align-items:stretch !important;
    align-content:start;
    gap:8px !important;
    padding:14px !important;
    border:1px solid rgba(201,170,95,.2);
    border-radius:24px;
    background:
      radial-gradient(circle at 18% 0%,rgba(201,170,95,.22),transparent 28%),
      linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,0) 34%),
      linear-gradient(160deg,#0d1a33 0%,#071126 64%,#12080d 100%) !important;
    box-shadow:
      0 30px 70px rgba(0,0,0,.45),
      inset 0 1px 0 rgba(255,255,255,.12);
    z-index:100 !important;
  }
  .menu.open{
    display:grid !important;
    animation:mobileAppMenuIn .24s cubic-bezier(.2,.8,.2,1) both;
  }
  .menu.open::before{
    content:"";
    position:fixed;
    inset:0;
    z-index:-1;
    background:rgba(7,17,38,.58);
    backdrop-filter:blur(3px);
  }

  .mobile-menu-head{
    display:grid;
    gap:0;
    padding:18px 14px;
    margin-bottom:4px;
    border:1px solid rgba(255,255,255,.1);
    border-radius:18px;
    background:
      linear-gradient(135deg,rgba(255,255,255,.1),rgba(255,255,255,.03)),
      linear-gradient(90deg,rgba(178,13,20,.22),transparent 52%);
  }
  .mobile-menu-kicker{
    color:var(--app-accent);
    font-size:10px;
    font-weight:900;
    line-height:1.1;
    text-transform:uppercase;
    letter-spacing:1.4px;
  }
  .mobile-menu-head strong{
    color:#fff;
    font-size:22px;
    line-height:1.1;
    letter-spacing:0;
  }
  .mobile-menu-head small{
    color:rgba(255,255,255,.68);
    font-size:12px;
    line-height:1.35;
  }

  .menu-item{
    display:grid !important;
    align-self:stretch !important;
    align-items:stretch !important;
    min-height:0 !important;
    gap:6px;
  }
  .menu-item.has-submenu{
    min-height:154px !important;
  }
  .menu a{
    min-height:52px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:flex-start !important;
    gap:12px;
    padding:0 14px !important;
    border:1px solid rgba(255,255,255,.08) !important;
    border-radius:16px !important;
    background:rgba(255,255,255,.055);
    color:rgba(255,255,255,.88) !important;
    font-size:13px !important;
    font-weight:850 !important;
    line-height:1.1 !important;
    letter-spacing:.2px !important;
    text-transform:uppercase;
    text-shadow:none !important;
    box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
  }
  .menu a::before{
    content:"";
    width:10px !important;
    height:10px !important;
    margin:0 !important;
    border-radius:4px !important;
    background:linear-gradient(135deg,var(--app-accent),rgba(201,170,95,.34)) !important;
    box-shadow:0 0 0 5px rgba(201,170,95,.08) !important;
  }
  .menu a::after,
  .menu a.active::after{
    content:"";
    position:static !important;
    display:block !important;
    width:8px !important;
    height:8px !important;
    margin:0 0 0 auto !important;
    border-top:2px solid currentColor !important;
    border-right:2px solid currentColor !important;
    border-radius:0 !important;
    background:transparent !important;
    opacity:.38;
    transform:rotate(45deg) !important;
  }
  .menu a:hover,
  .menu a.active{
    color:#fff !important;
    background:
      linear-gradient(90deg,rgba(178,13,20,.46),rgba(178,13,20,.08)),
      rgba(255,255,255,.08) !important;
    border-color:rgba(201,170,95,.34) !important;
    transform:none !important;
  }
  .menu a.active::before{
    background:linear-gradient(135deg,#fff,var(--app-accent)) !important;
    box-shadow:0 0 0 5px rgba(201,170,95,.16),0 0 18px rgba(201,170,95,.28) !important;
  }

  .submenu{
    position:static !important;
    display:grid !important;
    gap:6px;
    min-width:0 !important;
    padding:0 0 2px 20px !important;
    border:0 !important;
    border-radius:0 !important;
    background:transparent !important;
    box-shadow:none !important;
    opacity:1 !important;
    visibility:visible !important;
    transform:none !important;
  }
  .menu .submenu a{
    min-height:44px !important;
    padding:0 12px !important;
    border-radius:14px !important;
    color:rgba(255,255,255,.76) !important;
    font-size:11px !important;
    background:rgba(255,255,255,.035) !important;
  }
  .menu .submenu a::before{
    width:7px !important;
    height:7px !important;
    border-radius:50% !important;
  }

  .mobile-menu-actions{
    display:grid;
    grid-template-columns:1fr;
    gap:8px;
    margin-top:8px;
    padding-top:10px;
    border-top:1px solid rgba(255,255,255,.1);
  }
  .menu .mobile-menu-actions a{
    justify-content:center !important;
    min-height:50px !important;
    border-radius:16px !important;
    font-size:12px !important;
  }
  .menu .mobile-menu-actions a::before,
  .menu .mobile-menu-actions a::after{
    display:none !important;
  }
  .menu .mobile-menu-primary{
    background:linear-gradient(180deg,#c51f28,#8f1118) !important;
    border-color:rgba(255,255,255,.14) !important;
    color:#fff !important;
    box-shadow:0 14px 26px rgba(178,13,20,.28), inset 0 1px 0 rgba(255,255,255,.18) !important;
  }
  .menu .mobile-menu-secondary{
    background:rgba(255,255,255,.08) !important;
    border-color:rgba(201,170,95,.28) !important;
    color:#f7efd8 !important;
  }

  @keyframes mobileAppMenuIn{
    from{opacity:0;transform:translateY(-10px) scale(.985)}
    to{opacity:1;transform:translateY(0) scale(1)}
  }
}

/* Header image background */
.navbar{
  background:
    linear-gradient(90deg,rgba(7,17,38,.92),rgba(7,17,38,.62) 44%,rgba(7,17,38,.78)),
    url("../encabezado.png") center 52% / cover no-repeat !important;
  border-bottom:1px solid rgba(201,170,95,.22);
  box-shadow:0 14px 30px rgba(0,0,0,.24);
}
.navbar .menu a{
  color:#fff;
  text-shadow:0 2px 8px rgba(0,0,0,.5);
}
.navbar .reserve-btn{
  box-shadow:0 12px 24px rgba(0,0,0,.22), inset 0 0 0 1px rgba(255,255,255,.12);
}

@media (max-width:620px){
  .navbar{
    background:
      linear-gradient(90deg,rgba(7,17,38,.9),rgba(7,17,38,.42) 50%,rgba(7,17,38,.76)),
      url("../encabezado.png") 68% center / cover no-repeat !important;
    border-bottom:1px solid rgba(201,170,95,.28);
    box-shadow:0 12px 26px rgba(0,0,0,.24);
  }
}
