/* ==========================================================================
   NATIONAL TRAVELS — MASTER CSS  (v2 — Full Fixes)
   Nav always visible · Floating buttons bottom-right · Optimised images
   ========================================================================== */

/* ── Google Fonts ────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ── CSS Custom Properties ───────────────────────────────────────────────── */
:root {
  --primary:        #0F5257;
  --primary-dark:   #0B3C40;
  --primary-light:  #EBF3F5;
  --secondary:      #CCA43B;
  --secondary-dark: #A6832B;
  --dark:           #1E293B;
  --light:          #FDFBF7;
  --white:          #FFFFFF;
  --body-text:      #475569;
  --muted-text:     #94A3B8;

  --nav-bg:         #0B3C40;          /* solid, never transparent          */
  --nav-height:     70px;             /* desktop header height              */
  --nav-height-sm:  60px;             /* mobile header height               */

  --ease:           cubic-bezier(.16,1,.3,1);
  --t-fast:         .2s ease;
  --t-smooth:       .4s var(--ease);

  --shadow-sm:      0 4px 6px -1px rgba(0,0,0,.06);
  --shadow-md:      0 10px 20px -4px rgba(0,0,0,.08);
  --shadow-lg:      0 20px 40px -8px rgba(0,0,0,.10);
  --shadow-premium: 0 30px 60px -15px rgba(15,82,87,.15);

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --glass-bg:   rgba(255,255,255,.84);
  --glass-bd:   rgba(255,255,255,.42);
  --glass-sh:   0 8px 32px rgba(15,82,87,.09);
}

/* ── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--light);
  color: var(--body-text);
  overflow-x: hidden;
  line-height: 1.7;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--dark);
  font-weight: 700;
}

a { color: var(--primary); text-decoration: none; transition: var(--t-fast); }
a:hover { color: var(--secondary); }

img { max-width: 100%; height: auto; display: block; }

/* ── Typography helpers ──────────────────────────────────────────────────── */
.text-primary  { color: var(--primary)   !important; }
.text-gold     { color: var(--secondary) !important; }
.bg-primary-dark { background-color: var(--primary-dark) !important; }
.bg-cream        { background-color: #F8F6F0 !important; }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn-primary {
  background: var(--primary); border-color: var(--primary);
  color: var(--white); font-family: 'Outfit', sans-serif; font-weight: 600;
  padding: 12px 28px; border-radius: var(--radius-sm);
  transition: var(--t-smooth);
  box-shadow: 0 4px 14px rgba(15,82,87,.3);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--primary-dark); border-color: var(--primary-dark);
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(15,82,87,.4);
  color: var(--white);
}
.btn-secondary {
  background: var(--secondary); border-color: var(--secondary);
  color: var(--white); font-family: 'Outfit', sans-serif; font-weight: 600;
  padding: 12px 28px; border-radius: var(--radius-sm);
  transition: var(--t-smooth);
  box-shadow: 0 4px 14px rgba(204,164,59,.3);
}
.btn-secondary:hover {
  background: var(--secondary-dark); border-color: var(--secondary-dark);
  color: var(--white); transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25D366; border-color: #25D366;
  color: var(--white) !important; font-family: 'Outfit', sans-serif;
  font-weight: 600; padding: 12px 28px; border-radius: var(--radius-sm);
  transition: var(--t-smooth); box-shadow: 0 4px 14px rgba(37,211,102,.3);
}
.btn-whatsapp:hover {
  background: #128C7E; border-color: #128C7E;
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.4);
}
.btn-outline-light {
  font-family: 'Outfit', sans-serif; font-weight: 600;
  padding: 12px 28px; border-radius: var(--radius-sm);
  transition: var(--t-smooth);
}
.btn-outline-light:hover { transform: translateY(-2px); background: var(--white); color: var(--primary); }

/* ── Glass card ──────────────────────────────────────────────────────────── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid var(--glass-bd);
  box-shadow: var(--glass-sh);
  border-radius: var(--radius-md);
  transition: var(--t-smooth);
}
.glass-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-premium); }

/* ── Section header ──────────────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .subtitle {
  text-transform: uppercase; color: var(--secondary);
  font-weight: 700; letter-spacing: 2px; font-size: .85rem;
  margin-bottom: 8px; display: inline-block;
}
.section-header h2 {
  font-size: 2.4rem; font-weight: 800;
  position: relative; padding-bottom: 14px; margin-bottom: 0;
}
.section-header h2::after {
  content: ''; position: absolute; left: 50%; bottom: 0;
  transform: translateX(-50%); width: 56px; height: 4px;
  background: var(--secondary); border-radius: 2px;
}

/* ════════════════════════════════════════════════════════════════════════════
   TOP BAR
   ════════════════════════════════════════════════════════════════════════════ */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,.85);
  font-size: .83rem; padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative; z-index: 1060;
}
.top-bar a { color: rgba(255,255,255,.85); }
.top-bar a:hover { color: var(--secondary); }

/* ════════════════════════════════════════════════════════════════════════════
   MAIN NAVIGATION — always solid, always visible
   ════════════════════════════════════════════════════════════════════════════ */
.main-navbar {
  background: var(--nav-bg) !important;    /* solid — never transparent     */
  padding: 0;
  min-height: var(--nav-height);
  position: sticky !important;
  top: 0;
  z-index: 1050;
  box-shadow: 0 2px 20px rgba(0,0,0,.18);
  transition: box-shadow var(--t-fast);
}

/* ── Brand ── */
.navbar-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 800; font-size: 1.45rem;
  color: var(--white) !important;
  display: flex; align-items: center; gap: 8px;
  padding: 14px 0;
}
.navbar-brand .brand-logo {
  width: 120px;
  height: auto;
  display: block;
}
.navbar-brand span { color: var(--secondary); }

/* ── Nav links ── */
.nav-link {
  font-family: 'Outfit', sans-serif; font-weight: 600;
  color: rgba(255,255,255,.92) !important;
  padding: 8px 14px !important; font-size: .97rem;
  position: relative; transition: color var(--t-fast);
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 14px;
  width: 0; height: 2px; background: var(--secondary);
  transition: width var(--t-fast);
}
.nav-link:hover, .nav-link.active {
  color: var(--secondary) !important;
}
.nav-link:hover::after, .nav-link.active::after { width: calc(100% - 28px); }

/* ── Dropdown ── */
.dropdown-menu {
  background: var(--primary-dark) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  margin-top: 0 !important;
}
.dropdown-item {
  color: rgba(255,255,255,.85) !important;
  font-family: 'Outfit', sans-serif; font-weight: 500;
  padding: 10px 20px; transition: background var(--t-fast);
}
.dropdown-item:hover {
  background: rgba(255,255,255,.08) !important;
  color: var(--secondary) !important;
}

/* ── Hamburger (custom three-line toggler) ── */
.navbar-toggler {
  border: none; background: transparent; padding: 8px;
  border-radius: var(--radius-sm);
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-bar {
  display: block; width: 24px; height: 2.5px;
  background: var(--white); border-radius: 2px;
  margin: 5px 0; transition: var(--t-fast);
}

/* Mobile collapse overlay */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: var(--primary-dark);
    position: absolute; top: 100%; left: 0; width: 100%;
    padding: 16px 20px 24px;
    border-bottom: 3px solid var(--secondary);
    box-shadow: 0 8px 24px rgba(0,0,0,.22);
    z-index: 1049;
  }
  .nav-link {
    color: rgba(255,255,255,.9) !important;
    padding: 11px 4px !important;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .nav-link:last-child { border-bottom: none; }
  .nav-link::after { display: none; }
  .dropdown-menu {
    position: static !important; background: rgba(255,255,255,.06) !important;
    border: none !important; box-shadow: none !important; margin: 4px 0;
  }
}

/* ════════════════════════════════════════════════════════════════════════════
   HERO BANNER (Swiper)
   ════════════════════════════════════════════════════════════════════════════ */

/* Skeleton / loading placeholder while slide images fetch */
.hero-swiper {
  width: 100%;
  height: calc(100vh - var(--nav-height) - 40px);
  min-height: 520px;
  background: #0B3C40;               /* dark teal placeholder              */
  position: relative;
  overflow: hidden;
}

/* Loading shimmer shown until first image paints */
.hero-swiper::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0)   0%,
    rgba(255,255,255,.04) 50%,
    rgba(255,255,255,0)   100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.8s infinite;
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

.hero-slide {
  position: relative; width: 100%; height: 100%;
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
  display: flex; align-items: center; justify-content: center;
}
/* Progressive enhancement: bg only shows after CSS is loaded */
.hero-slide img.slide-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.62) 0%,
    rgba(0,0,0,.38) 50%,
    rgba(0,0,0,.65) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  color: var(--white); max-width: 860px; padding: 0 20px;
}
.hero-content h1, .hero-content h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 800; color: var(--white); margin-bottom: 18px; line-height: 1.18;
}
.hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.9); margin-bottom: 32px;
  font-family: 'Outfit', sans-serif;
}

/* Ken-Burns motion on active slide */
.swiper-slide-active .hero-slide {
  animation: kenburns 12s ease-out forwards;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}

/* Swiper nav arrows */
.swiper-button-next, .swiper-button-prev {
  color: var(--white) !important;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
  width: 50px !important; height: 50px !important;
  border-radius: 50%; border: 1px solid rgba(255,255,255,.22);
  transition: var(--t-fast);
}
.swiper-button-next:hover, .swiper-button-prev:hover {
  background: var(--secondary); border-color: var(--secondary);
}
.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 1.1rem !important; font-weight: 700;
}
.swiper-pagination-bullet {
  background: var(--white) !important; opacity: .5;
  width: 10px !important; height: 10px !important;
}
.swiper-pagination-bullet-active {
  opacity: 1; background: var(--secondary) !important;
}

/* ── Quick booking widget (floats up from hero bottom) ── */
.quick-booking-section {
  position: relative; z-index: 100;
  margin-top: -64px; padding-bottom: 40px;
}
.booking-widget-container { padding: 28px 32px; }
.booking-widget-container h3 {
  font-weight: 700; font-size: 1.4rem; margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px; color: var(--primary);
}
.booking-widget-container h3 i { color: var(--secondary); }
.form-control-custom {
  background: rgba(248,250,252,.85);
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-sm); padding: 11px 14px;
  transition: var(--t-fast); font-size: .94rem; width: 100%;
}
.form-control-custom:focus {
  background: var(--white); border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(15,82,87,.14); outline: none;
}

/* ── Service cards ── */
.service-card { padding: 38px 28px; height: 100%; text-align: center; }
.service-icon-box {
  width: 78px; height: 78px; background: var(--primary-light);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px; transition: var(--t-smooth);
}
.service-icon-box i { font-size: 1.9rem; color: var(--primary); transition: var(--t-smooth); }
.service-card:hover .service-icon-box { background: var(--primary); }
.service-card:hover .service-icon-box i { color: var(--white); transform: rotateY(180deg); }
.service-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 14px; }
.service-card p  { font-size: .93rem; color: var(--body-text); }

/* ── Vehicle cards ── */
.vehicle-card { overflow: hidden; height: 100%; display: flex; flex-direction: column; }
.vehicle-img-wrapper {
  position: relative; width: 100%; height: 224px; overflow: hidden;
  background: #e2e8f0;
}
.vehicle-img-wrapper img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.vehicle-card:hover .vehicle-img-wrapper img { transform: scale(1.08); }
.vehicle-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--primary); color: var(--white);
  padding: 4px 12px; border-radius: 20px;
  font-size: .72rem; font-weight: 700; letter-spacing: .5px;
  text-transform: uppercase; z-index: 5;
}
.vehicle-info { padding: 22px; flex-grow: 1; display: flex; flex-direction: column; }
.vehicle-info h3 { font-size: 1.35rem; font-weight: 700; margin-bottom: 4px; }
.vehicle-class {
  color: var(--secondary); font-weight: 600; font-size: .82rem;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px;
}
.vehicle-features { list-style: none; padding: 0; margin-bottom: 18px; }
.vehicle-features li {
  font-size: .88rem; margin-bottom: 7px;
  display: flex; align-items: center; gap: 9px;
}
.vehicle-features li i { color: var(--primary); }
.vehicle-pricing { border-top: 1px solid #E2E8F0; padding-top: 14px; margin-top: auto; }
.price-tag {
  font-size: 1.2rem; font-weight: 800; color: var(--dark); margin-bottom: 4px;
}
.price-tag span { font-size: .88rem; color: var(--body-text); font-weight: 400; }
.extra-km-tag  { font-size: .83rem; color: var(--body-text); margin-bottom: 14px; }

/* ── Tariff table ── */
.table-tariff { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
.table-tariff thead { background: var(--primary); color: var(--white); }
.table-tariff th { font-family: 'Outfit', sans-serif; font-weight: 600; padding: 17px; border: none; }
.table-tariff td { padding: 15px; vertical-align: middle; }

/* ── Gallery ── */
.gallery-filter { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 38px; }
.gallery-filter-btn {
  background: var(--white); border: 1px solid #E2E8F0;
  padding: 8px 20px; border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif; font-weight: 600;
  cursor: pointer; transition: var(--t-fast);
}
.gallery-filter-btn.active, .gallery-filter-btn:hover {
  background: var(--primary); color: var(--white); border-color: var(--primary);
}
.gallery-item-wrapper {
  position: relative; border-radius: var(--radius-md); overflow: hidden;
  height: 270px; box-shadow: var(--shadow-sm);
}
.gallery-item-wrapper img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease);
}
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(15,82,87,.86);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; opacity: 0; transition: opacity .4s ease;
  padding: 18px; text-align: center;
}
.gallery-item-wrapper:hover img { transform: scale(1.1); }
.gallery-item-wrapper:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 2rem; color: var(--white); margin-bottom: 8px; }
.gallery-overlay h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 4px; }
.gallery-overlay p  { color: rgba(255,255,255,.8); font-size: .82rem; }

/* ── Inner page banner ── */
.inner-banner {
  padding: 110px 0 54px; background-size: cover; background-position: center;
  position: relative; text-align: center;
}
.inner-banner-overlay {
  position: absolute; inset: 0; background: rgba(11,60,64,.82);
}
.inner-banner-content { position: relative; z-index: 5; }
.inner-banner-content h1 {
  color: var(--white); font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800; margin-bottom: 10px;
}
.breadcrumb-custom {
  display: flex; justify-content: center; list-style: none;
  padding: 0; margin: 0; font-family: 'Outfit', sans-serif; font-weight: 500;
}
.breadcrumb-custom li { font-size: .93rem; }
.breadcrumb-custom li a { color: rgba(255,255,255,.8); }
.breadcrumb-custom li a:hover { color: var(--secondary); }
.breadcrumb-custom li::after { content: '/'; margin: 0 9px; color: rgba(255,255,255,.45); }
.breadcrumb-custom li:last-child::after { display: none; }
.breadcrumb-custom li.active { color: var(--secondary); }

/* ── SEO content blocks ── */
.seo-section {
  background: var(--white); border-radius: var(--radius-md);
  padding: 38px; box-shadow: var(--shadow-sm); margin-bottom: 28px;
}
.seo-section h3 {
  color: var(--primary); margin-bottom: 18px;
  position: relative; padding-bottom: 10px;
}
.seo-section h3::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 38px; height: 3px; background: var(--secondary); border-radius: 2px;
}

/* ── Testimonials ── */
.testimonial-card {
  padding: 28px; border-radius: var(--radius-md);
  background: var(--white); box-shadow: var(--shadow-sm);
}
.rating { color: #FFC107; margin-bottom: 14px; }
.testimonial-text { font-style: italic; margin-bottom: 18px; }
.client-info { display: flex; align-items: center; gap: 14px; }
.client-img {
  width: 48px; height: 48px; border-radius: 50%;
  background: #E2E8F0; display: flex; align-items: center;
  justify-content: center; font-weight: 700; color: var(--primary);
  flex-shrink: 0;
}
.client-details h5 { margin: 0; font-size: .97rem; }
.client-details span { font-size: .78rem; color: var(--muted-text); }

/* ════════════════════════════════════════════════════════════════════════════
   FLOATING ACTION BUTTONS
   — Both buttons sit bottom-RIGHT on ALL screen sizes
   — WhatsApp sits ABOVE the phone call button
   ════════════════════════════════════════════════════════════════════════════ */
.fab-group {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;       /* vertical stack                            */
  align-items: center;
  gap: 14px;
  /* Guarantee the group is always on top and loads immediately              */
  will-change: transform;
}

.fab-btn {
  position: relative;           /* for tooltip                               */
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform .3s var(--ease), box-shadow .3s ease;
  -webkit-tap-highlight-color: transparent;
}
.fab-btn:hover { transform: scale(1.12) translateY(-2px); }

/* WhatsApp */
.fab-wa {
  background: #25D366;
  color: var(--white) !important;
  box-shadow: 0 6px 22px rgba(37,211,102,.45);
  animation: fab-pulse-wa 2.2s ease-out infinite;
}
.fab-wa:hover { box-shadow: 0 10px 28px rgba(37,211,102,.55); }

/* Call */
.fab-call {
  background: var(--primary);
  color: var(--white) !important;
  box-shadow: 0 6px 22px rgba(15,82,87,.40);
}
.fab-call:hover { box-shadow: 0 10px 28px rgba(15,82,87,.52); }

/* Pulse keyframes — WhatsApp only */
@keyframes fab-pulse-wa {
  0%  { box-shadow: 0 6px 22px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.50); }
  60% { box-shadow: 0 6px 22px rgba(37,211,102,.45), 0 0 0 14px rgba(37,211,102,0); }
  100%{ box-shadow: 0 6px 22px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* CSS Tooltips (no JS needed) */
.fab-btn::before {
  content: attr(data-tooltip);
  position: absolute;
  right: calc(100% + 12px);
  top: 50%; transform: translateY(-50%);
  background: var(--dark);
  color: var(--white);
  font-family: 'Outfit', sans-serif; font-weight: 600;
  font-size: .78rem; white-space: nowrap;
  padding: 5px 12px; border-radius: 6px;
  pointer-events: none;
  opacity: 0; transition: opacity .2s ease;
}
.fab-btn::after {
  content: '';
  position: absolute; right: calc(100% + 5px); top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--dark);
  pointer-events: none;
  opacity: 0; transition: opacity .2s ease;
}
.fab-btn:hover::before, .fab-btn:hover::after { opacity: 1; }

/* ── Footer ─────────────────────────────────────────────────────────────── */
.main-footer {
  background: #0F1A15; color: rgba(255,255,255,.7);
  padding: 72px 0 28px;
}
.main-footer h4 {
  color: var(--white); font-size: 1.2rem; font-weight: 700;
  margin-bottom: 22px; position: relative; padding-bottom: 10px;
}
.main-footer h4::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 34px; height: 3px; background: var(--secondary); border-radius: 2px;
}
.footer-logo {
  font-family: 'Outfit', sans-serif; font-weight: 800;
  color: var(--white); font-size: 1.55rem; margin-bottom: 18px; display: inline-block;
}
.footer-logo .footer-logo-img {
  width: 140px;
  height: auto;
  display: block;
}
.footer-logo span { color: var(--secondary); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 11px; }
.footer-links li a {
  color: rgba(255,255,255,.7); display: flex; align-items: center; gap: 7px;
  transition: var(--t-fast);
}
.footer-links li a:hover { color: var(--secondary); padding-left: 5px; }
.footer-contact-item { display: flex; gap: 13px; margin-bottom: 13px; }
.footer-contact-item i { color: var(--secondary); font-size: 1rem; margin-top: 4px; }
.social-icons { display: flex; gap: 10px; margin-top: 18px; }
.social-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.06); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: var(--t-fast);
}
.social-icon:hover { background: var(--secondary); color: var(--white); transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  margin-top: 56px; padding-top: 26px; font-size: .84rem;
}
.footer-bottom a { color: rgba(255,255,255,.7); }
.footer-bottom a:hover { color: var(--secondary); }

/* ════════════════════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 991.98px) {
  .hero-swiper { height: 72vh; min-height: 460px; }
  .quick-booking-section { margin-top: -30px; }
}

@media (max-width: 767.98px) {
  :root { --nav-height: var(--nav-height-sm); }
  .hero-swiper { height: 65vh; min-height: 400px; }
  .section-header h2 { font-size: 1.9rem; }
  .inner-banner { padding: 90px 0 42px; }
  .booking-widget-container { padding: 18px; }
  .seo-section { padding: 24px; }
  /* Floating buttons — slightly smaller on mobile */
  .fab-btn { width: 52px; height: 52px; font-size: 1.5rem; }
  .fab-group { bottom: 20px; right: 20px; gap: 11px; }
  /* Hide tooltip text on small screens — buttons are self-explanatory */
  .fab-btn::before, .fab-btn::after { display: none; }
}

@media (max-width: 480px) {
  .hero-swiper { height: 58vh; min-height: 340px; }
}
