/* ================================================================
   TRIPORBIT — Premium Travel Website Design System
   Royal Blue · Gold · Deep Navy · Glassmorphism
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Colors */
  --royal:      #1a3a6e;
  --royal-dark: #0f2347;
  --royal-mid:  #1e4080;
  --sky:        #2563eb;
  --gold:       #c9922a;
  --gold-light: #e8b84b;
  --gold-pale:  #fdf3dc;
  --white:      #ffffff;
  --cream:      #fafaf7;
  --charcoal:   #111827;
  --mist:       #f0f4f9;
  --text:       #111827;
  --text2:      #4b5563;
  --text3:      #9ca3af;
  --border:     rgba(26,58,110,.14);
  --border2:    rgba(201,146,42,.35);

  /* Shadows */
  --sh-sm:   0 2px 12px rgba(26,58,110,.08);
  --sh-md:   0 8px 32px rgba(26,58,110,.12);
  --sh-lg:   0 20px 60px rgba(26,58,110,.18);
  --sh-xl:   0 32px 80px rgba(26,58,110,.22);
  --sh-gold: 0 8px 28px rgba(201,146,42,.3);

  /* Radii */
  --r-sm: 6px; --r-md: 12px; --r-lg: 20px; --r-xl: 28px; --r-2xl: 40px;

  /* Transitions */
  --ease: all .32s cubic-bezier(.4,0,.2,1);

  /* Nav */
  --nav-h: 76px;
}

/* ── RESET ─────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; border: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── LOADER ─────────────────────────────────────────────── */
#pageLoader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--royal-dark);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 20px; transition: opacity .6s, visibility .6s;
}
#pageLoader.out { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 5vw, 38px);
  font-weight: 700; color: var(--white);
  letter-spacing: 2px;
}
.loader-brand span { color: var(--gold-light); }
.loader-orbit {
  width: 44px; height: 44px;
  border: 3px solid rgba(255,255,255,.1);
  border-top-color: var(--gold-light);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── NAVBAR ─────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h);
  transition: background .35s, box-shadow .35s, height .3s;
}
#nav.solid {
  background: rgba(15,35,71,.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(0,0,0,.28);
}
#nav.sc { height: 62px; }
.nav-wrap {
  max-width: 1280px; margin: 0 auto;
  padding: 0 clamp(16px,3vw,32px);
  display: flex; align-items: center;
  justify-content: space-between; height: 100%;
}
.nav-brand {
  display: flex; flex-direction: column;
  z-index: 901; position: relative;
}
.nav-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px,3vw,22px);
  font-weight: 700; color: var(--white);
  letter-spacing: 1.5px; line-height: 1.1;
}
.nav-brand-name span { color: var(--gold-light); }
.nav-brand-sub {
  font-size: 9px; color: rgba(255,255,255,.38);
  letter-spacing: 3px; text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 2px;
}
.nav-links a {
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,.72);
  padding: 7px 13px; border-radius: var(--r-sm);
  transition: var(--ease); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 3px; left: 13px; right: 13px;
  height: 1px; background: var(--gold-light);
  transform: scaleX(0); transition: transform .3s;
  transform-origin: center;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold-light); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), #a0751f) !important;
  color: var(--charcoal) !important; font-weight: 700 !important;
  padding: 9px 20px !important; border-radius: 99px !important;
  box-shadow: var(--sh-gold) !important; letter-spacing: 1px !important;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 28px rgba(201,146,42,.5) !important; }
.nav-cta::after { display: none !important; }
.nav-hbg {
  display: none; flex-direction: column; gap: 5px;
  padding: 5px; z-index: 901; background: none; border: none; cursor: pointer;
}
.nav-hbg span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--ease); pointer-events: none;
}
.nav-hbg.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hbg.open span:nth-child(2) { opacity: 0; }
.nav-hbg.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif; font-weight: 600;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 13px 26px; border-radius: 99px;
  transition: var(--ease); cursor: pointer; border: none;
  white-space: nowrap; text-decoration: none;
}
.btn-gold { background: linear-gradient(135deg, var(--gold), #a0751f); color: var(--charcoal); box-shadow: var(--sh-gold); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(201,146,42,.5); }
.btn-royal { background: var(--royal); color: var(--white); box-shadow: var(--sh-md); }
.btn-royal:hover { background: var(--royal-mid); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--royal); box-shadow: 0 4px 20px rgba(0,0,0,.15); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.2); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,.4); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--gold-light); color: var(--gold-light); transform: translateY(-2px); }
.btn-wa { background: #25D366; color: var(--white); box-shadow: 0 4px 16px rgba(37,211,102,.32); }
.btn-wa:hover { background: #1eba57; transform: translateY(-2px); box-shadow: 0 8px 26px rgba(37,211,102,.45); }
.btn-sm { padding: 9px 18px; font-size: 10px; }

/* ── LAYOUT ──────────────────────────────────────────────── */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 clamp(14px,4vw,28px); }
.sec { padding: clamp(56px,10vw,96px) 0; }
.sec-sm { padding: clamp(36px,6vw,56px) 0; }

/* ── SECTION LABELS ──────────────────────────────────────── */
.lbl {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.lbl::before, .lbl::after {
  content: ''; display: block; width: 24px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}
.ttl {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px,5vw,52px);
  font-weight: 700; color: var(--charcoal);
  line-height: 1.15; margin-bottom: 14px;
}
.ttl em { font-style: italic; color: var(--royal); }
.ttl.lt { color: var(--white); }
.ttl.lt em { color: var(--gold-light); }
.sub-txt {
  font-size: clamp(14px,1.8vw,16px);
  color: var(--text2); max-width: 540px; line-height: 1.85;
}
.sub-txt.lt { color: rgba(255,255,255,.65); }
.sh { margin-bottom: clamp(32px,5vw,52px); }
.sh.c { text-align: center; }
.sh.c .lbl { justify-content: center; }
.sh.c .sub-txt { margin: 0 auto; }

/* ── REVEAL ──────────────────────────────────────────────── */
.rv  { opacity: 0; transform: translateY(26px); transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1); }
.rvl { opacity: 0; transform: translateX(-26px); transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1); }
.rvr { opacity: 0; transform: translateX(26px);  transition: opacity .65s cubic-bezier(.4,0,.2,1), transform .65s cubic-bezier(.4,0,.2,1); }
.rv.in,.rvl.in,.rvr.in { opacity: 1; transform: translate(0); }

/* ── GLASSMORPHISM CARD ──────────────────────────────────── */
.glass {
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
}
.glass-dark {
  background: rgba(15,35,71,.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative; height: 100vh; min-height: 620px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1626714638456-5f14c9427ad4?w=1800&q=90') center/cover no-repeat;
  filter: none !important;
}
.hero-ov {
  position: absolute; inset: 0;
  background: linear-gradient(160deg,
    rgba(15,35,71,.82) 0%,
    rgba(15,35,71,.48) 45%,
    rgba(15,35,71,.72) 100%);
}
.hero-bot {
  position: absolute; bottom: 0; left: 0; right: 0; height: 130px;
  background: linear-gradient(to top, var(--cream), transparent);
  pointer-events: none;
}
.hero-cnt {
  position: relative; z-index: 2; text-align: center;
  padding: 0 clamp(16px,5vw,40px); max-width: 900px; width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 700; letter-spacing: 3.5px;
  text-transform: uppercase; color: var(--gold-light);
  background: rgba(201,146,42,.14);
  border: 1px solid rgba(201,146,42,.3);
  padding: 7px 16px; border-radius: 99px; margin-bottom: 20px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px,7.5vw,86px);
  font-weight: 700; color: var(--white);
  line-height: 1.06; margin-bottom: 18px;
  text-shadow: 0 3px 22px rgba(0,0,0,.28);
}
.hero-title em { font-style: italic; color: var(--gold-light); display: block; }
.hero-sub {
  font-size: clamp(14px,2.2vw,17px);
  color: rgba(255,255,255,.78);
  max-width: 560px; margin: 0 auto 32px;
  line-height: 1.85; font-weight: 300;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  color: rgba(255,255,255,.4); font-size: 9px;
  letter-spacing: 2px; text-transform: uppercase;
}
.hero-scroll-dot {
  width: 1.5px; height: 32px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.5));
}

/* ── TRUST STRIP ─────────────────────────────────────────── */
.trust-strip {
  background: var(--royal-dark);
  padding: clamp(20px,4vw,30px) 0;
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; max-width: 900px; margin: 0 auto;
}
.trust-item {
  text-align: center; padding: clamp(14px,3vw,22px) 14px;
  border-right: 1px solid rgba(255,255,255,.09);
  position: relative; transition: var(--ease);
}
.trust-item:last-child { border: none; }
.trust-item::after {
  content: ''; position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%); width: 0; height: 2px;
  background: var(--gold-light); transition: .4s;
}
.trust-item:hover::after { width: 60%; }
.trust-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px,4vw,38px);
  font-weight: 700; color: var(--gold-light);
  display: block; line-height: 1;
}
.trust-lbl {
  font-size: clamp(9px,1.6vw,11px);
  color: rgba(255,255,255,.5); letter-spacing: 1.5px;
  text-transform: uppercase; margin-top: 5px; display: block;
}
.trust-icon {
  font-size: clamp(16px,2.5vw,20px);
  color: var(--gold); margin-bottom: 6px; display: block;
}

/* ── ABOUT ───────────────────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px,6vw,80px); align-items: center;
}
.about-imgs { position: relative; padding-bottom: 32px; }
.about-main {
  border-radius: var(--r-xl); overflow: hidden;
  height: clamp(280px,45vw,480px); box-shadow: var(--sh-xl);
}
.about-main img { width: 100%; height: 100%; object-fit: cover; filter: none !important; transition: transform .5s; }
.about-main:hover img { transform: scale(1.04); }
.about-sm {
  position: absolute; bottom: 0; right: clamp(-12px,-3vw,-28px);
  width: clamp(140px,18vw,210px); height: clamp(110px,14vw,160px);
  border-radius: var(--r-lg); overflow: hidden;
  border: 5px solid var(--cream); box-shadow: var(--sh-lg);
}
.about-sm img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; top: -14px; left: -14px;
  width: clamp(72px,9vw,90px); height: clamp(72px,9vw,90px);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #a0751f);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; box-shadow: var(--sh-gold); z-index: 2;
}
.about-badge-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px,3vw,24px);
  font-weight: 700; color: var(--white); line-height: 1;
}
.about-badge-t {
  font-size: 8px; color: rgba(255,255,255,.8); font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; text-align: center; line-height: 1.4;
}
.about-hl {
  display: flex; align-items: center; gap: 12px;
  font-size: clamp(13px,1.8vw,14px); color: var(--text2); margin-bottom: 12px;
}
.about-hl i {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(201,146,42,.1); border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 12px; flex-shrink: 0;
}

/* ── SERVICES ────────────────────────────────────────────── */
.services-bg {
  background: linear-gradient(180deg, var(--cream) 0%, #e8eef7 100%);
}
.svc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.svc-card {
  background: var(--white); border-radius: var(--r-xl);
  padding: clamp(22px,3vw,30px) clamp(18px,2.5vw,24px);
  box-shadow: var(--sh-md); transition: var(--ease);
  position: relative; overflow: hidden; border: 1px solid transparent;
}
.svc-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,58,110,.04), rgba(201,146,42,.06));
  opacity: 0; transition: var(--ease);
}
.svc-card:hover {
  transform: translateY(-8px); box-shadow: var(--sh-xl);
  border-color: rgba(201,146,42,.25);
}
.svc-card:hover::before { opacity: 1; }
.svc-ico {
  width: 56px; height: 56px; border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(26,58,110,.1), rgba(201,146,42,.08));
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; font-size: 22px; color: var(--royal);
  transition: var(--ease);
}
.svc-card:hover .svc-ico {
  background: linear-gradient(135deg, var(--royal), var(--royal-mid));
  color: var(--white); border-color: var(--royal);
}
.svc-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px,2.2vw,20px); color: var(--charcoal); margin-bottom: 9px;
}
.svc-card p {
  font-size: 13px; color: var(--text2); line-height: 1.8; margin-bottom: 16px;
}
.svc-num {
  position: absolute; top: 14px; right: 18px;
  font-family: 'Cormorant Garamond', serif; font-size: 48px;
  font-weight: 700; color: rgba(26,58,110,.05); line-height: 1;
}

/* ── WHY US ───────────────────────────────────────────────── */
.why-bg {
  background: linear-gradient(135deg, var(--royal-dark), var(--royal));
  position: relative; overflow: hidden;
}
.why-bg::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1200&q=20') center/cover;
  opacity: .07; filter: none;
}
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; position: relative; }
.why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl); padding: clamp(24px,3.5vw,36px) clamp(18px,2.5vw,26px);
  text-align: center; transition: var(--ease);
  position: relative; overflow: hidden;
}
.why-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transition: transform .4s; transform-origin: center;
}
.why-card:hover { transform: translateY(-6px); border-color: rgba(201,146,42,.3); background: rgba(255,255,255,.1); }
.why-card:hover::after { transform: scaleX(1); }
.why-ico {
  width: 66px; height: 66px; border-radius: 50%;
  background: rgba(201,146,42,.14); border: 1px solid rgba(201,146,42,.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 26px; color: var(--gold-light);
}
.why-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px,2.5vw,22px); color: var(--white); margin-bottom: 10px;
}
.why-card p { font-size: 13px; color: rgba(255,255,255,.58); line-height: 1.85; }

/* ── GALLERY ─────────────────────────────────────────────── */
.gallery-bg { background: var(--charcoal); }
.gal-filter {
  display: flex; gap: 9px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 32px;
}
.gal-btn {
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 7px 16px; border-radius: 99px;
  border: 1.5px solid rgba(255,255,255,.2); color: rgba(255,255,255,.6);
  background: transparent; cursor: pointer; transition: var(--ease);
  font-family: 'DM Sans', sans-serif;
}
.gal-btn:hover, .gal-btn.on {
  background: var(--gold); color: var(--charcoal);
  border-color: var(--gold); box-shadow: var(--sh-gold);
}
.gal-grid {
  columns: 3; gap: 12px; column-fill: balance;
}
.gal-item {
  break-inside: avoid; margin-bottom: 12px;
  border-radius: var(--r-lg); overflow: hidden;
  position: relative; cursor: pointer; display: block;
}
.gal-item img {
  width: 100%; display: block; transition: transform .55s; filter: none !important;
}
.gal-item:hover img { transform: scale(1.07); }
.gal-ov {
  position: absolute; inset: 0;
  background: rgba(15,35,71,0);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 7px;
  transition: var(--ease); color: var(--white);
}
.gal-ov i { font-size: 22px; opacity: 0; transform: scale(.5); transition: var(--ease); }
.gal-cap {
  font-size: 11px; font-weight: 600; opacity: 0;
  transform: translateY(6px); transition: var(--ease);
  text-transform: uppercase; letter-spacing: 1px;
  background: rgba(201,146,42,.85); padding: 3px 10px; border-radius: 99px;
}
.gal-item:hover .gal-ov { background: rgba(15,35,71,.62); }
.gal-item:hover .gal-ov i { opacity: 1; transform: scale(1); }
.gal-item:hover .gal-cap { opacity: 1; transform: translateY(0); }

/* Lightbox */
.lb {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,.93);
  display: none; flex-direction: column;
  align-items: center; justify-content: center;
}
.lb.open { display: flex; }
.lb img { max-width: 90vw; max-height: 80vh; border-radius: var(--r-lg); object-fit: contain; }
.lb-x {
  position: absolute; top: 18px; right: 22px;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: var(--white);
  font-size: 16px; display: flex; align-items: center;
  justify-content: center; cursor: pointer; border: none; transition: var(--ease);
}
.lb-x:hover { background: rgba(255,255,255,.2); }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: var(--white);
  font-size: 16px; display: flex; align-items: center;
  justify-content: center; cursor: pointer; border: none; transition: var(--ease);
}
.lb-nav:hover { background: rgba(255,255,255,.2); }
.lb-prev { left: 16px; } .lb-next { right: 16px; }
.lb-cap { color: rgba(255,255,255,.6); font-size: 13px; margin-top: 14px; text-align: center; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testi-bg { background: linear-gradient(180deg, #e8eef7 0%, var(--cream) 100%); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.testi-card {
  background: var(--white); border-radius: var(--r-xl);
  padding: clamp(24px,3.5vw,36px) clamp(20px,3vw,28px);
  box-shadow: var(--sh-md); transition: var(--ease);
  position: relative; overflow: hidden;
}
.testi-card::before {
  content: '\201C'; font-family: 'Cormorant Garamond', serif;
  font-size: 100px; color: rgba(26,58,110,.06);
  position: absolute; top: -8px; left: 16px; line-height: 1;
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--sh-xl); }
.testi-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 13px; }
.testi-card p {
  font-size: clamp(13px,1.8vw,15px); color: var(--text2);
  line-height: 1.9; font-style: italic; margin-bottom: 18px; position: relative; z-index: 1;
}
.testi-auth { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--royal), var(--royal-mid));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: var(--white); flex-shrink: 0;
}
.testi-auth strong { display: block; font-size: 14px; color: var(--charcoal); font-weight: 600; }
.testi-auth span { font-size: 11px; color: var(--text3); }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(28px,5vw,56px); align-items: start; }
.contact-info-card {
  background: var(--royal-dark); border-radius: var(--r-xl);
  padding: clamp(26px,4vw,36px); margin-bottom: 18px;
}
.contact-info-card h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 22px;
  color: var(--white); margin-bottom: 22px;
}
.contact-info-card h3 em { font-style: italic; color: var(--gold-light); }
.ci { display: flex; gap: 13px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.ci:last-of-type { border: none; }
.ci-ico {
  width: 40px; height: 40px; border-radius: var(--r-md);
  background: rgba(201,146,42,.12); border: 1px solid rgba(201,146,42,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-size: 14px; flex-shrink: 0;
}
.ci-body { display: flex; flex-direction: column; gap: 2px; }
.ci-body strong { font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.38); }
.ci-body a, .ci-body span { font-size: 13px; color: rgba(255,255,255,.75); transition: var(--ease); }
.ci-body a:hover { color: var(--gold-light); }
.social-btns { display: flex; gap: 9px; margin-top: 18px; flex-wrap: wrap; }
.soc-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: rgba(255,255,255,.55); transition: var(--ease);
  text-decoration: none;
}
.soc-btn:hover { background: var(--gold); color: var(--charcoal); border-color: var(--gold); transform: translateY(-2px); }
.map-frame { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); }
.contact-form {
  background: var(--white); border-radius: var(--r-xl);
  padding: clamp(24px,3.5vw,36px); box-shadow: var(--sh-md);
}
.contact-form h3 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(20px,2.8vw,26px);
  color: var(--charcoal); margin-bottom: 4px;
}
.contact-form h3 em { font-style: italic; color: var(--royal); }
.form-sub { font-size: 13px; color: var(--text2); margin-bottom: 20px; }
.fg { margin-bottom: 14px; }
.fg label {
  display: block; font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text3); margin-bottom: 5px;
}
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid rgba(26,58,110,.13);
  border-radius: var(--r-md); font-size: 14px;
  color: var(--text); background: var(--mist);
  transition: var(--ease); outline: none;
  -webkit-appearance: none; appearance: none;
  font-family: 'DM Sans', sans-serif;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--royal); background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,58,110,.1);
}
.fg textarea { resize: vertical; }
.fr { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-success {
  text-align: center; padding: 32px 16px; display: none;
}
.form-success i { font-size: 48px; color: #25D366; display: block; margin-bottom: 12px; }
.form-success h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; color: var(--charcoal); margin-bottom: 8px; }
.form-success p { color: var(--text2); font-size: 14px; margin-bottom: 18px; }

/* ── CTA STRIP ───────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, var(--gold), #a0751f);
  padding: clamp(36px,6vw,52px) 0; position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1200&q=20') center/cover;
  opacity: .1; filter: none;
}
.cta-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 22px;
  flex-wrap: wrap; position: relative;
}
.cta-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px,3.5vw,38px); color: var(--royal-dark); font-weight: 700;
}
.cta-inner p { font-size: 14px; color: rgba(15,35,71,.65); margin-top: 5px; }
.cta-btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── TOURS PAGE SPECIFIC ─────────────────────────────────── */
.tour-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.tour-card {
  background: var(--white); border-radius: var(--r-xl);
  overflow: hidden; box-shadow: var(--sh-md); transition: var(--ease);
}
.tour-card:hover { transform: translateY(-8px); box-shadow: var(--sh-xl); }
.tour-img { height: clamp(180px,24vw,240px); overflow: hidden; position: relative; }
.tour-img img { width: 100%; height: 100%; object-fit: cover; filter: none !important; transition: transform .6s; }
.tour-card:hover .tour-img img { transform: scale(1.08); }
.tour-badge {
  position: absolute; top: 12px; left: 12px;
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 4px 11px; border-radius: 99px;
}
.badge-gold { background: var(--gold); color: var(--charcoal); }
.badge-royal { background: var(--royal); color: var(--white); }
.badge-green { background: linear-gradient(135deg,#166534,#16a34a); color: var(--white); }
.tour-body { padding: clamp(16px,2.5vw,22px); }
.tour-cat { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.tour-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(17px,2.2vw,21px); color: var(--charcoal); margin-bottom: 9px; line-height: 1.3;
}
.tour-meta { display: flex; gap: 12px; margin-bottom: 10px; flex-wrap: wrap; }
.tour-meta span { font-size: 12px; color: var(--text3); display: flex; align-items: center; gap: 4px; }
.tour-meta i { color: var(--gold); font-size: 10px; }
.tour-desc { font-size: 13px; color: var(--text2); line-height: 1.75; margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.tour-footer { padding-top: 13px; border-top: 1px solid var(--mist); }
.tour-acts { display: flex; gap: 7px; margin-top: 9px; }
.tour-acts .btn { flex: 1; justify-content: center; padding: 9px 12px; font-size: 10px; }

/* Tour detail modal */
.tmo { position: fixed; inset: 0; z-index: 8000; background: rgba(15,35,71,.9); backdrop-filter: blur(6px); display: none; align-items: center; justify-content: center; padding: 16px; overflow-y: auto; }
.tmo.open { display: flex; }
.tmb { background: var(--white); border-radius: var(--r-xl); max-width: 720px; width: 100%; max-height: 92vh; overflow-y: auto; position: relative; }
.tmi { height: clamp(200px,30vw,280px); overflow: hidden; border-radius: var(--r-xl) var(--r-xl) 0 0; }
.tmi img { width: 100%; height: 100%; object-fit: cover; }
.tm-close { position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--charcoal); font-size: 13px; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 2; border: none; transition: var(--ease); }
.tm-close:hover { background: var(--charcoal); color: var(--white); }
.tm-body { padding: clamp(18px,3vw,28px); }
.tm-body h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(22px,3.5vw,30px); color: var(--charcoal); margin-bottom: 10px; }
.tm-inc { display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0; }
.tm-inc span { font-size: 11px; background: var(--mist); color: var(--text2); padding: 4px 11px; border-radius: 99px; border: 1px solid var(--border); }
.tm-itin { margin: 14px 0; }
.itin-row { display: flex; gap: 10px; margin-bottom: 8px; }
.itin-n { width: 26px; height: 26px; border-radius: 50%; background: var(--royal); color: var(--white); font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.itin-row p { font-size: 13px; color: var(--text2); line-height: 1.7; padding-top: 3px; }
.tm-btns { display: flex; gap: 9px; flex-wrap: wrap; margin-top: 16px; }

/* ── CARS PAGE ───────────────────────────────────────────── */
.car-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.car-card {
  background: var(--white); border-radius: var(--r-xl);
  overflow: hidden; box-shadow: var(--sh-md); transition: var(--ease);
}
.car-card:hover { transform: translateY(-7px); box-shadow: var(--sh-xl); }
.car-img { height: clamp(160px,20vw,210px); overflow: hidden; position: relative; background: var(--mist); }
.car-img img { width: 100%; height: 100%; object-fit: cover; filter: none !important; transition: transform .5s; }
.car-card:hover .car-img img { transform: scale(1.06); }
.car-body { padding: clamp(16px,2.5vw,22px); }
.car-body h3 { font-family: 'Cormorant Garamond', serif; font-size: clamp(17px,2vw,20px); color: var(--charcoal); margin-bottom: 5px; }
.car-sub { font-size: 11px; color: var(--gold); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; display: block; }
.car-specs { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 14px; }
.car-spec { font-size: 11px; background: var(--mist); color: var(--text2); padding: 4px 10px; border-radius: 99px; display: flex; align-items: center; gap: 4px; }
.car-spec i { color: var(--royal); font-size: 10px; }
.car-feat { display: inline-flex; align-items: center; gap: 5px; background: linear-gradient(135deg, var(--gold), #a0751f); color: var(--charcoal); font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 99px; margin-bottom: 10px; }

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  position: relative; height: clamp(240px,38vw,360px);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; margin-top: var(--nav-h);
}
.page-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: none !important; }
.page-hero-ov { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,35,71,.88), rgba(15,35,71,.62)); }
.page-hero-cnt { position: relative; z-index: 2; text-align: center; padding: 0 clamp(16px,5vw,40px); }
.breadcrumb {
  display: flex; align-items: center; gap: 7px;
  justify-content: center; margin-bottom: 11px;
  font-size: clamp(10px,2vw,12px); color: rgba(255,255,255,.5); flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.62); transition: var(--ease); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb i { font-size: 8px; }
.page-hero-cnt h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px,6vw,60px); font-weight: 700;
  color: var(--white); line-height: 1.1; margin-bottom: 10px;
}
.page-hero-cnt h1 em { font-style: italic; color: var(--gold-light); }
.page-hero-cnt p { font-size: clamp(12px,2vw,14px); color: rgba(255,255,255,.7); max-width: 460px; margin: 0 auto; }

/* ── FLOATING BUTTONS ────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 88px; right: 22px; z-index: 990;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; box-shadow: 0 6px 26px rgba(37,211,102,.46);
  text-decoration: none; transition: var(--ease);
  animation: wa-pulse 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); }
.wa-tip {
  position: absolute; right: 66px; top: 50%; transform: translateY(-50%);
  background: var(--charcoal); color: var(--white);
  font-size: 11px; font-weight: 600; padding: 6px 12px; border-radius: 99px;
  white-space: nowrap; opacity: 0; pointer-events: none; transition: var(--ease);
  border: 1px solid rgba(255,255,255,.1);
}
.wa-float:hover .wa-tip { opacity: 1; }
@keyframes wa-pulse {
  0%,100%{ box-shadow: 0 6px 26px rgba(37,211,102,.46), 0 0 0 0 rgba(37,211,102,.4); }
  50%{ box-shadow: 0 6px 26px rgba(37,211,102,.46), 0 0 0 14px rgba(37,211,102,0); }
}
.call-float {
  position: fixed; bottom: 156px; right: 22px; z-index: 990;
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--royal), var(--royal-mid));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; box-shadow: 0 6px 22px rgba(26,58,110,.46);
  text-decoration: none; transition: var(--ease);
  border: 2px solid rgba(201,146,42,.35);
}
.call-float:hover { transform: scale(1.1); background: var(--gold); color: var(--charcoal); border-color: var(--gold); }
.call-tip {
  position: absolute; right: 66px; top: 50%; transform: translateY(-50%);
  background: var(--royal-dark); color: var(--white);
  font-size: 11px; font-weight: 600; padding: 6px 12px; border-radius: 99px;
  white-space: nowrap; opacity: 0; pointer-events: none; transition: var(--ease);
  border: 1px solid rgba(255,255,255,.1);
}
.call-float:hover .call-tip { opacity: 1; }
.sct {
  position: fixed; bottom: 22px; left: 22px; z-index: 990;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--royal-dark); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; box-shadow: var(--sh-md);
  transition: var(--ease); opacity: 0; pointer-events: none; cursor: pointer; border: none;
}
.sct.show { opacity: 1; pointer-events: auto; }
.sct:hover { background: var(--gold); transform: translateY(-2px); }

/* ── STICKY BOOK BAR ─────────────────────────────────────── */
.sbb {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: rgba(15,35,71,.97); backdrop-filter: blur(16px);
  border-top: 1px solid rgba(201,146,42,.2);
  padding: 10px clamp(14px,4vw,26px);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  transform: translateY(100%); transition: transform .4s ease;
  box-shadow: 0 -4px 24px rgba(0,0,0,.28);
}
.sbb.show { transform: translateY(0); }
.sbb-txt strong {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: clamp(14px,2.5vw,16px); color: var(--gold-light);
}
.sbb-txt span { font-size: clamp(10px,1.8vw,11px); color: rgba(255,255,255,.5); }
.sbb-btns { display: flex; gap: 9px; flex-shrink: 0; }

/* ── TOAST ───────────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 88px; left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--royal-dark); color: var(--white);
  padding: 11px 24px; border-radius: 99px;
  font-size: 13px; font-weight: 500; z-index: 9990;
  opacity: 0; pointer-events: none; transition: all .35s;
  border: 1px solid rgba(201,146,42,.3);
  box-shadow: var(--sh-lg); white-space: nowrap; max-width: calc(100vw - 32px); text-align: center;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.ok { background: #14532d; border-color: rgba(37,211,102,.35); }
.toast.err { background: #7f1d1d; border-color: rgba(239,68,68,.35); }

/* ── FOOTER ──────────────────────────────────────────────── */
footer { background: var(--charcoal); color: rgba(255,255,255,.6); }
.ft { padding: clamp(44px,8vw,68px) 0 clamp(28px,5vw,40px); border-bottom: 1px solid rgba(255,255,255,.08); }
.ft-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 40px; }
.ft-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px,3.5vw,24px);
  font-weight: 700; color: var(--white);
}
.ft-brand-name span { color: var(--gold-light); }
.ft-brand-tag { font-size: 9px; color: var(--gold-light); letter-spacing: 2.5px; text-transform: uppercase; margin-top: 2px; }
.ft-about { font-size: 13px; line-height: 1.85; margin: 13px 0 16px; color: rgba(255,255,255,.42); max-width: 240px; }
.ft-mmt {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(201,146,42,.1); border: 1px solid var(--border2);
  color: var(--gold-light); font-size: 11px; font-weight: 600;
  padding: 6px 14px; border-radius: 99px; transition: var(--ease);
}
.ft-mmt:hover { background: rgba(201,146,42,.2); }
.ft-soc { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.ft-soc a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: rgba(255,255,255,.52); transition: var(--ease);
}
.ft-soc a:hover { background: var(--gold); color: var(--charcoal); border-color: var(--gold); transform: translateY(-2px); }
.ft-col h4 { font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--white); margin-bottom: 17px; }
.ft-col ul { display: flex; flex-direction: column; gap: 9px; }
.ft-col ul li a { font-size: 13px; color: rgba(255,255,255,.44); transition: var(--ease); }
.ft-col ul li a:hover { color: var(--gold-light); padding-left: 4px; }
.ft-ci { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: rgba(255,255,255,.44); margin-bottom: 10px; }
.ft-ci i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.ft-ci a { color: rgba(255,255,255,.44); transition: var(--ease); word-break: break-word; }
.ft-ci a:hover { color: var(--gold-light); }
.fb { padding: 16px 0; text-align: center; font-size: clamp(11px,2vw,12px); color: rgba(255,255,255,.28); }
.fb a { color: var(--gold-light); }

/* ── PRIVACY PAGE ────────────────────────────────────────── */
.privacy-body {
  max-width: 800px; margin: 0 auto;
  background: var(--white); border-radius: var(--r-xl);
  padding: clamp(28px,4vw,52px); box-shadow: var(--sh-md);
}
.privacy-body h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(22px,3vw,28px); color: var(--charcoal); margin: 28px 0 10px; }
.privacy-body h2:first-child { margin-top: 0; }
.privacy-body p { font-size: 14px; color: var(--text2); line-height: 1.9; margin-bottom: 14px; }
.privacy-body ul { margin: 10px 0 14px 20px; }
.privacy-body ul li { font-size: 14px; color: var(--text2); line-height: 1.9; margin-bottom: 5px; list-style: disc; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media(max-width:1200px){
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .tour-grid { grid-template-columns: repeat(2,1fr); }
  .car-grid { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:1024px){
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-item { border-bottom: 1px solid rgba(255,255,255,.08); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3) { border-bottom: none; }
  .trust-item:nth-child(4) { border-bottom: none; }
  .ft-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .gal-grid { columns: 2; }
}
@media(max-width:900px){
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-sm { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media(max-width:768px){
  :root { --nav-h: 64px; }
  .nav-hbg { display: flex !important; }
  .nav-links {
    position: fixed !important; top: 0 !important; left: 0 !important;
    width: 100% !important; height: 100vh !important;
    background: rgba(15,35,71,.98) !important;
    backdrop-filter: blur(24px) !important;
    flex-direction: column !important; align-items: center !important;
    justify-content: center !important; gap: 0 !important;
    z-index: 900 !important; opacity: 0 !important;
    pointer-events: none !important; transition: opacity .28s ease !important;
    padding: 80px 0 40px !important; overflow-y: auto !important;
  }
  .nav-links.open { opacity: 1 !important; pointer-events: auto !important; }
  .nav-links a {
    font-size: 15px !important; padding: 16px 24px !important;
    display: block !important; border-radius: 0 !important; width: 100% !important;
    text-align: center !important; border-bottom: 1px solid rgba(255,255,255,.07) !important;
  }
  .nav-links a::after { display: none !important; }
  .nav-cta {
    margin: 16px auto 0 !important; width: calc(100% - 40px) !important;
    display: block !important; text-align: center !important; border-radius: 99px !important;
    padding: 13px 20px !important; font-size: 13px !important;
  }
  #nav { background: rgba(15,35,71,.97) !important; }
  .nav-brand, .nav-hbg { z-index: 901 !important; }

  .hero { height: 74vh; min-height: 460px; }
  .hero-bg { background-position: center 35%; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: min(280px,88vw); justify-content: center; }
  .hero-eyebrow { display: none; }
  .hero-scroll { display: none; }
  .hero-bot { height: 80px; }

  .svc-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .tour-grid { grid-template-columns: 1fr; }
  .car-grid { grid-template-columns: 1fr; }
  .gal-grid { columns: 2; }
  .fr { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-btns { justify-content: center; }
  .sbb { flex-direction: column; text-align: center; padding: 12px 16px; gap: 8px; }
  .sbb-btns { justify-content: center; }
  .wa-float { width: 50px; height: 50px; font-size: 23px; bottom: 18px; right: 18px; }
  .wa-tip { display: none; }
  .call-float { width: 50px; height: 50px; font-size: 19px; bottom: 80px; right: 18px; }
  .call-tip { display: none; }
  .sct { left: 14px; bottom: 14px; }
}
@media(max-width:580px){
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .gal-grid { columns: 1; }
  .testi-grid { grid-template-columns: 1fr; }
  .ft-grid { grid-template-columns: 1fr; }
}
@media(max-width:480px){
  .hero { height: 70vh; min-height: 420px; }
  .hero-bg { background-position: center 30%; }
  .tm-btns { flex-direction: column; }
  .tm-btns .btn { width: 100%; justify-content: center; }
}
