/* =========================================
   1. VARIABLES & CORE STYLES
   ========================================= */
:root {
  --primary-blue: #003366;
  --accent-red: #d90429;
  --dark-black: #0b090a;
  --glass-bg: rgba(11, 9, 10, 0.75);
  --light-bg: #f8f9fa;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--dark-black);
  background-color: #fff;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* =========================================
   2. NAVIGATION (HEADER)
   ========================================= */
.navbar {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(0, 51, 102, 0.98);
  padding: 8px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.nav-logo {
  height: 50px;
  width: auto;
  margin-right: 10px;
}

.nav-link {
  color: #fff !important;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin: 0 10px;
  opacity: 0.85;
}

.nav-link:hover {
  opacity: 1;
  color: var(--accent-red) !important;
}

.header-contact-btn {
  background: var(--accent-red);
  color: white !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(217, 4, 41, 0.3);
}

/* =========================================
   2.5. MARQUEE BANNER
   ========================================= */
.site-marquee {
  background: rgba(0, 51, 102, 0.92);
  color: #fff;
  padding: 8px 0;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  overflow: hidden;
  position: fixed;
  top: 77px;
  width: 100%;
  z-index: 999;
}


.site-marquee marquee {
  color: #fff;
}

.site-marquee .marquee-text {
  display: inline-block;
  white-space: nowrap;
  font-weight: 700;
}

/* Laptop 1024px to 1440px */
@media (min-width: 1025px) and (max-width: 1440px) {
  .site-marquee {
    top: 76px;
  }
}

/* Tab 768px to 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
  .site-marquee {
    top: 67px;
  }
}

@media (max-width: 767.98px) {
  .site-marquee {
    font-size: 0.85rem;
    padding: 8px 0;
    top: 66px;
  }
}



/* =========================================
   3. HERO SECTION
   ========================================= */
.hero {
  background-image: url('../images/background-img.png'); /* Assumes style.css is in a folder like /css/ */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding-top: 270px;
  padding-bottom: 50px;
}

.slogan-main {
  font-family: "Playfair Display", serif;
  font-size: 3.8rem;
  font-style: italic;
  color: #fff;
  margin-bottom: 15px;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.9);
  line-height: 1.1;
  margin-left: 50px;
}

.sub-slogan {
  font-size: 1.1rem;
  color: #fff;
  background: var(--accent-red);
  display: inline-block;
  padding: 5px 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 35px;
  border-radius: 4px;
  margin-left: 50px;
}

/* =========================================
   4. BOOKING WIDGET
   ========================================= */
.booking-widget-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.booking-header-tab {
  background: var(--primary-blue);
  color: white;
  padding: 12px 30px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 12px 12px 0 0;
  display: inline-block;
  position: relative;
  z-index: 2;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
}

.booking-widget-container {
  background: white;
  padding: 35px;
  border-radius: 0 15px 15px 15px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  border-bottom: 5px solid var(--primary-blue);
  position: relative;
  z-index: 1;
  margin-top: -1px;
}

.booking-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 20px;
}

.booking-field {
  flex: 1;
  min-width: 180px;
}

.booking-field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  color: #666;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.booking-field input {
  width: 100%;
  border: none;
  border-bottom: 2px solid #eee;
  padding: 15px;
  font-size: 1rem;
  color: #222;
  outline: none;
  background: transparent;
  font-weight: 600;
}

.booking-field input:focus {
  border-bottom-color: var(--accent-red);
}

.btn-get-quote {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #001a33 100%);
  color: white;
  border: none;
  padding: 16px 45px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  transition: 0.3s;
}

/* =========================================
   5. ABOUT SECTION
   ========================================= */
.about-section {
  padding: 100px 0;
  background: #fff;
}

.about-image-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 25px;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #444;
}

/* =========================================
   6. PREMIUM STICKY TERMS LAYOUT
   ========================================= */
.terms-section {
  padding: 100px 0;
  background-color: #fcfcfc;
}

.sticky-sidebar-col {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sticky-logo-box {
  text-align: center;
  padding: 40px 20px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid #eee;
}

.sticky-logo-box img {
  height: 120px;
  width: auto;
  margin-bottom: 20px;
}

.sticky-logo-box h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-blue);
  text-transform: uppercase;
}

.terms-card-premium {
  background: white;
  border-radius: 20px;
  padding: 45px;
  margin-bottom: 30px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.section-label {
  display: inline-block;
  padding: 6px 15px;
  background: rgba(0, 51, 102, 0.05);
  color: var(--primary-blue);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 20px;
}

.price-badge {
  color: var(--accent-red);
  font-weight: 800;
}

.list-premium {
  list-style: none;
  padding: 0;
}

.list-premium li {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px dashed #e0e0e0;
}

.notes-box {
  background: white;
  border-left: 5px solid var(--accent-red);
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* =========================================
   7. PREMIUM FOOTER
   ========================================= */
.footer-main {
  background: #001529;
  color: #ffffff;
  padding: 80px 0 30px;
  border-top: 5px solid var(--accent-red);
}

.footer-logo-box img {
  height: 80px;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}

.footer-brand-name {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 2px;
}

.footer-header {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

.footer-header::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-red);
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
  margin-bottom: 12px;
}

.footer-link:hover {
  color: var(--accent-red);
  transform: translateX(5px);
}

.social-circle {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  margin-right: 10px;
  transition: 0.3s;
}

.social-circle:hover {
  background: var(--accent-red);
}

/* =========================================
   8. WHATSAPP & ANIMATIONS
   ========================================= */
.whatsapp-icon {
  position: fixed;
  bottom: 50%;
  right: 0px;
  z-index: 1000;
  transform: translateY(50%);
}

.whatsapp-icon img {
  width: 60px;
  height: 60px;
  background-color: #29a71a;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* =========================================
   9. MOBILE & RESPONSIVE TWEAKS
   ========================================= */
@media (max-width: 991.98px) {
  .hero {
    background-image: url('../images/background-img.png') !important;
    background-size: 100% 450px !important;
    background-repeat: no-repeat !important;
    background-position: top center !important;
    background-color: #ffffff !important;
    padding-top: 100px !important;
  }

  .slogan-main {
    font-size: 2rem !important;
    margin-left: 0 !important;
    text-align: center;
  }

  .sub-slogan {
    margin-left: 0 !important;
    font-size: 0.8rem !important;
  }

  .booking-widget-wrapper {
    margin-top: 80px !important;
  }

  .booking-row {
    flex-direction: column !important;
  }

  .sticky-sidebar-col {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }

  .footer-main {
    text-align: center;
  }

  .footer-header::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

<style>
      :root {
        --primary-blue: #003366;
        --accent-red: #d90429;
        --light-bg: #f8f9fa;
        --glass-bg: rgba(11, 9, 10, 0.95);
      }

      body {
        font-family: "Montserrat", sans-serif;
        background-color: #ffffff;
        color: #333;
        line-height: 1.6;
      }

      /* --- Navbar --- */
      .navbar {
        background: var(--primary-blue);
        padding: 15px 0;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      }
      .navbar-brand {
        font-weight: 800;
        text-transform: uppercase;
      }
      .nav-logo { height: 45px; width: auto; margin-right: 10px; }

      /* --- Page Header --- */
      .page-title-section {
        padding: 60px 0;
        background: linear-gradient(45deg, #001a33, var(--primary-blue));
        color: white;
        margin-bottom: 50px;
      }

      /* --- Sticky Layout Logic --- */
      .sticky-sidebar {
        position: -webkit-sticky;
        position: sticky;
        top: 100px;
        z-index: 10;
      }

      .logo-card-sticky {
        background: white;
        padding: 40px;
        border-radius: 24px;
        text-align: center;
        border: 1px solid #eee;
        box-shadow: 0 20px 40px rgba(0,0,0,0.05);
      }

      .logo-card-sticky img {
        width: 120px;
        margin-bottom: 25px;
      }

      .logo-card-sticky h2 {
        font-weight: 800;
        color: var(--primary-blue);
        font-size: 1.4rem;
        text-transform: uppercase;
        letter-spacing: 1px;
      }

      .back-btn {
        display: inline-block;
        margin-top: 20px;
        padding: 10px 20px;
        background: var(--accent-red);
        color: white !important;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.8rem;
        transition: 0.3s;
      }
      .back-btn:hover { transform: scale(1.05); box-shadow: 0 5px 15px rgba(217, 4, 41, 0.3); }

      /* --- Content Side --- */
      .terms-content-wrapper {
        padding-left: 20px;
      }

      .policy-card {
        background: white;
        border-radius: 20px;
        padding: 40px;
        margin-bottom: 30px;
        border: 1px solid #f1f1f1;
        box-shadow: 0 10px 30px rgba(0,0,0,0.02);
      }

      .policy-label {
        display: inline-block;
        padding: 5px 15px;
        background: rgba(217, 4, 41, 0.1);
        color: var(--accent-red);
        font-weight: 800;
        font-size: 0.7rem;
        text-transform: uppercase;
        border-radius: 5px;
        margin-bottom: 20px;
      }

      .policy-title {
        color: var(--primary-blue);
        font-weight: 800;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 15px;
      }

      /* List Styling */
      .cancel-list {
        list-style: none;
        padding: 0;
        margin: 0;
      }

      .cancel-list li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
      }

      .cancel-list li:last-child { border-bottom: none; }

      .percentage-badge {
        background: var(--primary-blue);
        color: white;
        padding: 4px 12px;
        border-radius: 6px;
        font-weight: 800;
      }

      /* Dark Notes Box */
      .notes-container {
        background: var(--primary-blue);
        color: rgba(255,255,255,0.9);
        padding: 40px;
        border-radius: 20px;
        border-left: 8px solid var(--accent-red);
      }

      /* --- Footer --- */
      /* --- Premium Footer CSS --- */
.footer-main {
    background: #001529; /* Deep Navy */
    color: #ffffff;
    padding: 80px 0 30px;
    border-top: 5px solid var(--accent-red);
}

.footer-logo-box img {
    height: 80px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1); /* Makes logo white */
}

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 5px;
    color: #fff;
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-header {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.footer-header::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-red);
}

.footer-links-list {
    list-style: none;
    padding: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: var(--accent-red);
    transform: translateX(5px);
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-item i {
    color: var(--accent-red);
    font-size: 1.2rem;
}

.footer-contact-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-text a {
    color: inherit;
    text-decoration: none;
}

.footer-social-links {
    margin-top: 25px;
    display: flex;
    gap: 15px;
}

.social-circle {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.social-circle:hover {
    background: var(--accent-red);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 991px) {
    .footer-main { text-align: center; }
    .footer-header::after { left: 50%; transform: translateX(-50%); }
    .footer-contact-item { justify-content: center; }
    .footer-social-links { justify-content: center; }
}

      @media (max-width: 991px) {
        .sticky-sidebar { position: relative; top: 0; margin-bottom: 40px; }
        .terms-content-wrapper { padding-left: 0; }
        .page-title-section { text-align: center; padding: 40px 0; }
      }
    </style>

    <style>
      :root {
        --primary-blue: #003366;
        --accent-red: #d90429;
        --dark-black: #0b090a;
        --glass-bg: rgba(11, 9, 10, 0.75);
      }

      body {
        font-family: "Montserrat", sans-serif;
        color: var(--dark-black);
        background-color: #fff;
        overflow-x: hidden;
        scroll-behavior: smooth;
      }

      /* --- Header --- */
      .navbar {
        background: var(--glass-bg);
        backdrop-filter: blur(15px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 12px 0;
        transition: all 0.4s ease;
      }
      .navbar.scrolled {
        background: rgba(0, 51, 102, 0.98);
        padding: 8px 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
      }
      .navbar-brand {
        font-weight: 800;
        font-size: 1.5rem;
        color: #fff !important;
        text-transform: uppercase;
      }
      /* Logo adjustment in header */
      .nav-logo {
        height: 50px;
        width: auto;
        margin-right: 10px;
      }

      .nav-link {
        color: #fff !important;
        font-weight: 600;
        font-size: 0.8rem;
        text-transform: uppercase;
        margin: 0 10px;
        opacity: 0.85;
      }
      .nav-link:hover {
        opacity: 1;
        color: var(--accent-red) !important;
      }

      .header-contact-btn {
        background: var(--accent-red);
        color: white !important;
        padding: 10px 22px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.85rem;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: 0.3s;
        box-shadow: 0 4px 15px rgba(217, 4, 41, 0.3);
      }

      /* --- Hero Section --- */
      .hero {
        background-image: url(images/background-img.png);
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        padding-top: 270px;
        padding-bottom: 50px;
      }
      .slogan-main {
        font-family: "Playfair Display", serif;
        font-size: 3.8rem;
        font-style: italic;
        color: #fff;
        margin-bottom: 15px;
        text-shadow: 0 4px 25px rgba(0, 0, 0, 0.9);
        line-height: 1.1;
        margin-left: 50px;
      }
      .sub-slogan {
        font-size: 1.1rem;
        color: #fff;
        background: var(--accent-red);
        display: inline-block;
        padding: 5px 20px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 3px;
        margin-bottom: 35px;
        border-radius: 4px;
        margin-left: 50px;
      }

      /* --- BOOKING WIDGET --- */
      .booking-widget-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
      }
      .booking-header-tab {
        background: var(--primary-blue);
        color: white;
        padding: 12px 30px;
        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        border-radius: 12px 12px 0 0;
        display: inline-block;
        margin-bottom: 0;
        position: relative;
        z-index: 2;
        box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
      }
      .booking-widget-container {
        background: white;
        padding: 35px;
        border-radius: 0 15px 15px 15px;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
        border-bottom: 5px solid var(--primary-blue);
        position: relative;
        z-index: 1;
        margin-top: -1px;
      }
      .booking-row {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-end;
        gap: 20px;
      }
      .booking-field {
        flex: 1;
        min-width: 180px;
      }
      .booking-field label {
        display: block;
        font-size: 0.7rem;
        font-weight: 800;
        color: #666;
        text-transform: uppercase;
        margin-bottom: 10px;
      }
      .booking-field input {
        width: 100%;
        border: none;
        border-bottom: 2px solid #eee;
        padding: 15px;
        font-size: 1rem;
        color: #222;
        outline: none;
        background: transparent;
        font-weight: 600;
      }
      .booking-field input:focus {
        border-bottom-color: var(--accent-red);
      }
      .btn-get-quote {
        background: linear-gradient(
          135deg,
          var(--primary-blue) 0%,
          #001a33 100%
        );
        color: white;
        border: none;
        padding: 16px 45px;
        border-radius: 12px;
        font-weight: 800;
        font-size: 1rem;
        text-transform: uppercase;
        transition: 0.3s;
      }

      /* --- About Us Section --- */
      .about-section {
        padding: 100px 0;
        background: #fff;
      }
      .about-image-container {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      }
      .about-content h2 {
        font-weight: 800;
        color: var(--primary-blue);
        margin-bottom: 25px;
      }
      .about-content p {
        font-size: 1.1rem;
        line-height: 1.9;
        color: #444;
      }

      /* --- Terms Section --- */
      .terms-section {
        padding: 80px 0;
        background: #f4f7fa;
      }
      .card-terms {
        background: white;
        border-radius: 20px;
        padding: 40px;
        height: 100%;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
      }
      .list-cancel {
        list-style: none;
        padding: 0;
      }
      .list-cancel li {
        display: flex;
        justify-content: space-between;
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
        font-weight: 600;
      }
      .list-cancel li span.price {
        color: var(--accent-red);
        font-weight: 800;
      }
      .notes-box {
        background: white;
        border-left: 5px solid var(--accent-red);
        padding: 30px;
        border-radius: 0 20px 20px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      }

      /* --- Footer --- */
      footer {
        background: var(--primary-blue);
        color: white;
        padding: 60px 0 40px;
      }
      /* Logo adjustment in footer */
      .footer-logo-img {
        height: 90px;
        width: auto;
        margin-bottom: 15px;
      }
      .footer-logo-text {
        display: block;
        font-size: 1.6rem;
        font-weight: 800;
        letter-spacing: 1px;
        margin-top: -5px;
        text-transform: uppercase;
      }
      .footer-tagline {
        font-size: 0.85rem;
        font-weight: 600;
        color: #ccc;
        margin-top: 5px;
      }
      .footer-links h5,
      .footer-contact h5 {
        font-weight: 700;
        margin-bottom: 25px;
        color: #fff;
        position: relative;
        padding-bottom: 10px;
      }
      .footer-links h5::after,
      .footer-contact h5::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 30px;
        height: 2px;
        background: var(--accent-red);
      }
      .footer-links ul {
        list-style: none;
        padding: 0;
      }
      .footer-links ul li {
        margin-bottom: 12px;
      }
      .footer-links ul li a {
        color: #fff;
        text-decoration: none;
        font-size: 0.9rem;
        transition: 0.3s;
      }
      .footer-links ul li a:hover {
        color: var(--accent-red);
        padding-left: 5px;
      }
      .contact-item {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;
      }
      .contact-item i {
        color: var(--accent-red);
        font-size: 1.2rem;
      }
      .contact-item div {
        font-size: 0.9rem;
        color: #fff;
      }
      .contact-item a {
        color: #fff;
        text-decoration: none;
      }
      .whatsapp-icon {
        position: fixed;
        bottom: 50%;
        right: 0px;
        z-index: 1000;
        animation: bounce 1.5s infinite;
        transform: translateY(10%);
      }
      .whatsapp-icon img {
        width: 60px;
        height: 60px;
        background-color: #29a71a;
        border-radius: 5px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        transition: transform 0.8s ease;
      }

      @media (max-width: 991px) {
        .footer-col {
          text-align: center;
          margin-bottom: 50px;
        }
        .footer-links h5::after,
        .footer-contact h5::after {
          left: 50%;
          transform: translateX(-50%);
        }
        .contact-item {
          justify-content: center;
        }
        .slogan-main {
          font-size: 2.5rem;
          margin-left: 0;
          text-align: center;
        }
        .sub-slogan {
          margin-left: 0;
          display: block;
          text-align: center;
        }
        .booking-row {
          flex-direction: column;
          align-items: stretch;
        }
        .booking-header-tab {
          font-size: 0.7rem;
          padding: 10px 15px;
          width: 100%;
          border-radius: 10px 10px 0 0;
          text-align: center;
        }
        .booking-widget-container {
          border-radius: 0 0 15px 15px;
        }
        .nav-logo {
          height: 40px;
        }
      }

      /* for mobile view */
      /* --- Optimized Mobile Hero & Form (max-width: 991px) --- */
@media (max-width: 991.98px) {
    /* 1. Hero Section: Show image only at the top */
    .hero {
        /* Set background image height and prevent it from covering the whole section */
        background-image: url('images/background-img.png') !important;
        background-size: 100% 450px !important; /* Forces the image to be 450px tall */
        background-repeat: no-repeat !important;
        background-position: top center !important;
        background-color: #ffffff !important; /* Area behind the form becomes white */
        
        display: block !important;
        padding-top: 100px !important; /* Space for fixed navbar */
        padding-bottom: 40px !important;
        min-height: auto !important;
    }

    /* 2. Slogan Content: Centered over the 450px image area */
    .hero .text-left {
        text-align: center !important;
        margin-bottom: 0 !important;
        height: 250px; /* Vertical space for text on the image */
        display: flex;
        flex-direction: column;
        justify-content: end;
        align-items: center;
    }

    .sub-slogan {
        margin-left: 0 !important; /* Removes desktop 50px margin */
        font-size: 0.8rem !important;
        padding: 6px 15px !important;
        display: inline-block !important;
        width: fit-content;
        margin-bottom: 10px !important;
    }

    .slogan-main {
        margin-left: 0 !important; /* Removes desktop 50px margin */
        font-size: 2rem !important;
        text-align: center;
        text-shadow: 0 4px 15px rgba(0,0,0,0.8) !important;
        line-height: 1.2;
    }

    /* 3. Booking Form: Starts AFTER the hero image area */
    .booking-widget-wrapper {
        margin-top: 80px !important; /* Pushes the form down into the white background area */
        padding: 0 10px;
    }

    /* 4. Form UI Improvements for Mobile */
    .booking-header-tab {
        width: 100% !important;
        display: block !important;
        border-radius: 12px 12px 0 0 !important;
        font-size: 0.75rem;
        padding: 12px 10px !important;
        text-align: center;
    }

    .booking-widget-container {
        border-radius: 0 0 15px 15px !important;
        padding: 25px 20px !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08) !important;
        border: 1px solid #f0f0f0;
    }

    /* 5. Stack form fields vertically */
    .booking-row {
        flex-direction: column !important;
        gap: 0 !important;
    }

    .booking-field {
        width: 100% !important;
        margin-bottom: 15px;
        border-bottom: 1px solid #eee;
    }

    .booking-field label {
        font-size: 0.7rem !important;
        margin-bottom: 2px !important;
    }

    .booking-field input {
        padding: 8px 0 !important;
        font-size: 1.1rem !important;
    }

    .btn-get-quote {
        width: 100% !important;
        margin-top: 15px;
        padding: 16px !important;
        font-size: 1rem !important;
        border-radius: 10px !important;
    }
}

/* Extra small screens fix (e.g. iPhone SE) */
@media (max-width: 400px) {
    .hero {
        background-size: 100% 380px !important; /* Slightly shorter image */
    }
    .hero .text-left {
        height: 200px;
    }

    .container-hero {
        /* height: 400px; */
        margin-top: 60px !important;
    }
    .slogan-main {
        font-size: 1.7rem !important;
    }
}
    </style>

    /* //visitor counter */

    /* --- Compact & Fixed Width Visitor Counter --- */
.visitor-stats-wrapper {
    display: block; /* Keeps it on its own line */
    margin-top: 1.5rem;
}

.visitor-card {
    /* KEY FIX: display: inline-flex makes the box fit the content exactly */
    display: inline-flex; 
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    transition: all 0.3s ease;
    width: auto; /* Ensures it doesn't stretch to 100% */
}

.visitor-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
}

.visitor-icon-box {
    background: linear-gradient(135deg, #004aad, #00c6ff);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0; /* Prevents icon from squishing */
}

.visitor-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.visitor-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
    white-space: nowrap; /* Prevents text from wrapping to a second line */
}

.visitor-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
}

.live-indicator {
    font-size: 9px;
    font-weight: 800;
    color: #00ff88;
    display: flex;
    align-items: center;
    gap: 4px;
}

.dot {
    width: 5px;
    height: 5px;
    background-color: #00ff88;
    border-radius: 50%;
    box-shadow: 0 0 5px #00ff88;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.visitor-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}