/* ==================== CSS VARIABLES ==================== */
:root {

  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Open Sans', sans-serif;

    /* Colors */
    --primary: #E63946;
    --primary-dark: #c62828;
    --secondary: #2B2D42;
    --secondary-light: #3d405b;
    --text-light: #faf6f6;
    --text-dark: #2B2D42;
    --text-muted: #555;
    --bg-light: #f9f9f9;
    --bg-dark: #1D1C1C;
    
    /* Spacing */
    --space-xs: 5px;
    --space-sm: 10px;
    --space-md: 20px;
    --space-lg: 30px;
    --space-xl: 40px;
    
    /* Z-index */
    --z-modal: 500;
    --z-overlay: 400;
    --z-floating: 300;
    --z-header: 200;
    --z-base: 1;
    
    /* Shadows */
    --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.15);
    
    /* Border radius */
    --radius-sm: 5px;
    --radius-md: 10px;
    --radius-lg: 15px;
    --radius-xl: 30px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
  }
  
  /* ==================== BASE STYLES ==================== */
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    background: var(--bg-light);
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    line-height: 1.6;
  }
  
  h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-top: 0;
    line-height: 1.2;
  }
  
  a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-normal);
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  button, 
  input, 
  select, 
  textarea {
    font-family: inherit;
    font-size: inherit;
  }
  
  /* ==================== LAYOUT ==================== */
  .main-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    width: 100%;
  }
  
  /* ==================== HEADER & NAVIGATION ==================== */
  .main-header {
    background-color: transparent;
    color: white;
    padding: var(--space-sm) var(--space-xl);
    position: sticky;
    top: 0;
    z-index: var(--z-header);
  }
  
  .top-bar {
    background-color: rgba(29, 28, 28, 0.4);
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) var(--space-xl);
    width: fit-content;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .header-left {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  
  /* Brand Text */
  .brand-text,
  .brand-text a {
    font-size: 26px;
    font-weight: bold;
    color: white;
  }
  .mobile-header {display: none;}
  .glow-bulb {
    position: relative;
    animation: bulbGlow 6s ease-in-out infinite;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.25);
  }
  
  @keyframes bulbGlow {
    0%, 100% {
      text-shadow: 0 0 5px rgba(255, 255, 255, 0.2),
                   0 0 10px rgba(255, 255, 255, 0.15),
                   0 0 15px rgba(255, 255, 255, 0.1);
      color: #ccc;
    }
    50% {
      text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
                   0 0 20px rgba(255, 255, 255, 0.6),
                   0 0 30px rgba(255, 255, 255, 0.4);
      color: white;
    }
  }
  
  /* Navigation */
  .navbar {
    display: flex;
    gap: var(--space-lg);
    padding: 0;
  }
  
  .navbar a.nav-link {
    position: relative;
    margin: var(--space-xs) 1px;
    padding: var(--space-xs) var(--space-sm);
    color: white;
    font-weight: 600;
    border-radius: var(--radius-xl);
    transition: background var(--transition-normal);
  }
  
  .navbar a.nav-link:hover {
    background-color: rgba(230, 57, 70, 0.2);
    color: var(--primary);
  }
  
  .navbar a.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background: white;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-normal);
  }
  
  .navbar a.nav-link:hover::after,
  .navbar a.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  
  /* CTA Header */
  .cta-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-left: auto;
  }
  
  .cta-header button {
    background-color: var(--primary);
    border: none;
    color: white;
    padding: var(--space-sm) var(--space-md);
    font-weight: bold;
    border-radius: var(--radius-sm);
    cursor: pointer;
    animation: buttonGlow 3s ease-in-out infinite;
    transition: background var(--transition-normal);
  }
  
  .cta-header button:hover {
    background-color: var(--primary-dark);
  }
  /* ==================== PHONE BUTTON IN NAVBAR ==================== */
.phone-link-inline {
  display: inline-block;
  background-color: white;
  color: rgb(5, 2, 2);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-xl);
  font-weight: 600;
  text-decoration: none;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.phone-link-inline:hover {
  background-color: var(--primary-dark);
  color: white;
  transform: scale(1.05);
}

.phone-link-inline:active {
  transform: scale(0.95);
}

  @keyframes buttonGlow {
    0%, 100% {
      box-shadow: 0 0 5px rgba(230, 57, 70, 0.3);
    }
    50% {
      box-shadow: 0 0 20px rgba(230, 57, 70, 0.8);
    }
  }
  
  /* Promo Bar */
  .promo-bar {
    background-color: var(--primary);
    color: white;
    text-align: center;
    font-weight: bold;
    padding: var(--space-xs) 0;
    font-size: 16px;
  }
  
  .promo-bar .flash-text {
    animation: blink 1s step-start infinite;
  }
  
  @keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
  }
  
  @keyframes flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
  }
  /* ==================== PROMO BAR PHONE BUTTON ==================== */
.promo-bar .phone-link {
  display: inline-block;
  background-color: white;
  color: var(--primary);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-xl);
  font-weight: 600;
  text-decoration: none;
  margin-left: var(--space-sm);
  transition: background var(--transition-normal), color var(--transition-normal);
}

.promo-bar .phone-link:hover {
  background-color: var(--primary-dark);
  color: white;
}

  /* ==================== HERO SECTION ==================== */
  .first-fold {
    position: relative;
    display: flex;
    flex-direction: column;
  }
  
  .video-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    height: 100%;
    width: 100%;
    overflow: hidden;
    background: var(--secondary) url('images/video-poster.jpg') center/cover;
  }
  
  .bg-video {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  
  .hero-section {
    padding: var(--space-md);
    text-align: center;
    color: white;
  }
  
  .hero-section h1 {
    font-size: 36px;
    margin-bottom: var(--space-sm);
  }
  
  .intro-section {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    padding: var(--space-xl) var(--space-md);
    margin: 0 auto;
    max-width: 800px;
  }
  
  /* Features List */
  .features-list-section {
    padding: var(--space-xl) var(--space-md);
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
  }
  
  .features-list {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 2;
    text-align: left;
    list-style: none;
  }
  
  .features-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: var(--space-sm);
    font-weight: 500;
  }
  
  .features-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    background-image: url('images/check.png');
    background-size: contain;
    background-repeat: no-repeat;
  }
  
  .features-btn {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-xl);
    font-weight: bold;
    margin-top: var(--space-md);
    transition: background var(--transition-normal);
  }
  
  .features-btn:hover {
    background-color: var(--primary-dark);
  }
  
  /* Spring Note */
  .features-spring-wrap {
    position: absolute;
    top: 50%;
    right: 5%;
    z-index: var(--z-base);
    transform: translateY(-50%);
  }
  
  .spring-note {
    background: #f0f9ff;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 350px;
    text-align: left;
  }
  
  .spring-note h3 {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: var(--space-md);
  }
  
  .spring-note p {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
  }
  
  .spring-note button {
    margin-top: var(--space-sm);
    background-color: var(--primary);
    color: white;
    border: none;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    font-weight: bold;
    cursor: pointer;
    transition: background var(--transition-normal);
  }
  
  .spring-note button:hover {
    background-color: var(--primary-dark);
  }
  
  /* ==================== ABOUT US ==================== */
  .about-us-wrapper {
    position: relative;
    display: flex;
    min-height: 90vh;
    overflow: hidden;
  }
  
  .about-us-text {
    flex: 1;
    background-color: var(--secondary);
    color: white;
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    clip-path: polygon(0% 0, 100% 0, 95% 100%, 0% 100%);
    z-index: var(--z-base);
  }
  
  .about-us-text h2 {
    color: var(--primary);
    font-size: 36px;
    margin-bottom: var(--space-md);
  }
  
  .about-us-text p {
    font-size: 18px;
    line-height: 1.7;
  }
  
  .about-us-slideshow {
    flex: 1;
    position: relative;
    overflow: hidden;
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%);
  }
  
  .about-us-slideshow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    opacity: 0;
    transition: opacity var(--transition-slow);
  }
  
  .about-us-slideshow img.active {
    opacity: 1;
  }
  
  .white-divider {
    height: 30px;
    background-color: white;
    width: 100%;
  }
  
  /* ==================== PRICING ==================== */
  .pricing-header {
    text-align: center;
    margin: var(--space-md) 0;
  }
  
  .pricing-header h2 {
    font-size: 36px;
    color: var(--secondary);
    margin-bottom: var(--space-sm);
  }
  
  .pricing-header p {
    font-size: 18px;
    color: var(--text-muted);
  }
  
  .car-section-wrapper {
    flex: 1;
    min-height: 100vh;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  
  .car-select {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    gap: 0.5rem;
    max-width: 800px;
    margin: 0 auto;
    margin-top: var(--space-md);
  }
  
  .car-select button {
    background-color: #007bff;
    color: white;
    padding: var(--space-sm) var(--space-md);
    margin: var(--space-xs);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background var(--transition-normal);
    
    align-items: center;
    display: inline-flex;
    gap: 8px;
    white-space: nowrap;
    flex: 0 0 auto; /* Prevents buttons from stretching */
  }
  
  .car-select .car-icon {
    width: 24px;
    height: auto;
  }
  .car-select button:hover {
    background-color: #0056b3;
  }
  
  .car-select button.selected {
    background-color: var(--secondary);
    color: white;
    font-weight: bold;
    border: 2px solid var(--primary);
    box-shadow: 0 0 10px rgba(230, 57, 70, 0.3);
  }
  
  .pricing-table {
    margin-top: var(--space-lg);
  }
  
  .pricing-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 var(--space-md);
    border-radius: var(--radius-sm);
    background: white;
    box-shadow: var(--shadow-sm);
  }
  
  .pricing-table th,
  .pricing-table td {
    background: white;
    border: none;
    box-shadow: var(--shadow-sm);
    padding: var(--space-md);
    border-radius: var(--radius-md);
  }
  
  .pricing-table th {
    background-color: #f2f2f2;
    font-weight: 600;
  }
  
  .pricing-table td:nth-child(2) {
    font-weight: bold;
    color: var(--secondary);
    font-size: 18px;
  }
  /* ==================== DISCOUNTED PRICE STYLES ==================== */
.pricing-table .orig-price {
  text-decoration: line-through;
  color: var(--text-muted);
  margin-right: var(--space-xs);
  display: inline-block;
}
.pricing-table .disc-price {
  color: var(--primary);
  font-weight: bold;
  display: inline-block;
}

  /* ==================== BOOKING FORM ==================== */
  .styled-booking-form {
    max-width: 700px;               /* limit width */
    margin: var(--space-lg) auto;   /* center horizontally */
    background-color: white;
    padding: var(--space-lg);
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-md);
  }
  
  


/* ==================== BOOKING FORM CONTENT WIDTH ==================== */
/* Center & constrain the form itself */
.styled-booking-form .form-left form {
  display: block;
  margin: 0 auto;        /* center inside the white card */
  width: 100%;
  max-width: 450px;       /* <-- tweak this to whatever “less width” you want */
}

/* Make its inputs fill that inner container */
.styled-booking-form .form-left form input,
.styled-booking-form .form-left form textarea {
  width: 100%;
  box-sizing: border-box;
}


.styled-booking-form .form-left h3 {
  margin-top: 0;
  margin-bottom: var(--space-md);
  color: var(--secondary);
}

.styled-booking-form input,
.styled-booking-form textarea {
  width: 100%;
  padding: var(--space-md);
  margin-bottom: var(--space-md);
  border: 1px solid #ccc;
  border-radius: var(--radius-sm);
  font-size: 16px;
}

.styled-booking-form textarea {
  min-height: 120px;
  resize: vertical;
}

.styled-booking-form button[type="submit"] {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  transition: background var(--transition-normal);
}

.styled-booking-form button[type="submit"]:hover {
  background-color: var(--primary-dark);
}

.styled-booking-form .form-right {
  background-color: var(--secondary);
  color: white;
  padding: var(--space-md);
  border-radius: var(--radius-sm);
}

.styled-booking-form .form-right h4 {
  margin-top: 0;
  margin-bottom: var(--space-sm);
}

/* ==================== NEED HELP BUTTON ==================== */
.styled-booking-form .form-right .call-now {
  display: inline-block;
  margin-top: 0;
  padding: var(--space-sm) var(--space-lg);
  background-color: white;
  color: rgb(8, 2, 2);
  border-radius: var(--radius-xl);  font-weight: 600;
  text-decoration: none;
  transition: background var(--transition-normal), transform var(--transition-fast);
}

.styled-booking-form .form-right .call-now:hover {
  background-color: var(--primary-dark);
  color: white;
  transform: scale(1.02);
}


  /* ==================== CONTACT ==================== */
  .contact-section {
    background: url('images/contact-us.jpg') no-repeat center center/cover;
    padding: var(--space-xl) var(--space-md);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .contact-container {
    display: flex;
    gap: var(--space-xl);
    max-width: 1200px;
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .contact-left {
    flex: 1 1 400px;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
  }
  
  .contact-left h2 {
    font-size: 32px;
    margin-bottom: var(--space-sm);
    font-weight: bold;
    line-height: 1.2;
  }
  
  .contact-left p {
    font-size: 18px;
    color: #e0e0e0;
    line-height: 1.6;
  }
  
  .contact-form {
    flex: 1 1 50%;
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    background: rgba(0, 0, 0, 0.6);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    max-width: 500px;
  }
  
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    width: 100%;
    padding: var(--space-md);
    font-size: 16px;
    border: none;
    border-radius: var(--radius-xl);
    background-color: rgba(255, 255, 255, 0.95);
    transition: box-shadow var(--transition-fast);
  }
  
  .contact-form input:focus,
  .contact-form select:focus,
  .contact-form textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--primary);
  }
  
  .contact-form textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  .contact-form button {
    width: 100%;
    padding: var(--space-sm) var(--space-xl);
    font-size: 16px;
    border: none;
    border-radius: var(--radius-xl);
    background-color: var(--primary);
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background var(--transition-normal), transform var(--transition-fast);
  }
  
  .contact-form button:hover {
    background-color: var(--primary-dark);
    transform: scale(1.02);
  }
  
  /* ==================== FOOTER ==================== */
  footer {
    background-color: var(--secondary);
    color: white;
    padding: var(--space-xl) var(--space-md);
    position: relative;
    font-family: 'Futura', 'Segoe UI', sans-serif;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--space-lg);
  }
  
  .footer-column {
    flex: 1 1 200px;
    text-align: left;
  }
  
  .footer-column h4 {
    font-size: 18px;
    margin-bottom: var(--space-md);
    color: var(--primary);
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-column ul li {
    margin: var(--space-sm) 0;
    font-size: 15px;
  }
  
  .footer-column ul li a {
    color: white;
    transition: color var(--transition-normal);
  }
  
  .footer-column ul li a:hover {
    color: var(--primary);
  }
  
  .footer-bottom {
    margin-top: var(--space-lg);
    font-size: 14px;
    border-top: 1px solid #444;
    padding-top: var(--space-md);
    color: #ccc;
  }
  
  /* ==================== FLOATING ELEMENTS ==================== */
  .whatsapp-float {
    position: fixed;
    bottom: 120px;
    right: var(--space-md);
    z-index: var(--z-floating);
    cursor: pointer;
    transition: transform var(--transition-normal);
  }
  
  .whatsapp-icon {
    width: 50px;
    height: 50px;
    animation: pulse 2s infinite;
  }
  
  .whatsapp-icon:hover {
    transform: scale(1.1);
  }
  
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
  }
  
  .callback-float {
    position: fixed;
    bottom: 180px;
    right: var(--space-md);
    z-index: var(--z-floating);
    background-color: var(--primary);
    color: white;
    border-radius: var(--radius-xl);
    padding: var(--space-sm) var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
    box-shadow: var(--shadow-md);
    font-weight: bold;
    font-size: 15px;
    transition: background var(--transition-normal), transform var(--transition-normal);
  }
  
  .callback-float:hover {
    background-color: var(--primary-dark);
    transform: scale(1.03);
  }
  
  .callback-icon {
    width: 22px;
    height: 22px;
  }
  
  .callback-text {
    white-space: nowrap;
  }
  
  /* ==================== POPUPS & MODALS ==================== */
  /* hide the unused static popup on prices.html */
#popup-message {
  display: none;
}

  .spring-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    z-index: 500;
  }
  
  
  
  .spring-popup-content {
    background: #f0f9ff;
    padding: 30px 40px;
    border-radius: 15px;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    position: relative;
  }
  
  
  .close-popup {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-md);
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
  }
  
  .popup-message-text {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: var(--space-md);
  }
  
  .popup-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .popup-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: var(--space-sm) var(--space-md);
    font-size: 16px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background var(--transition-normal);
    font-weight: 600;
  }
  
  .popup-btn:hover {
    background-color: var(--primary-dark);
  }
  
  .popup-btn.secondary {
    background-color: var(--secondary);
  }
  
  .popup-btn.secondary:hover {
    background-color: var(--secondary-light);
  }
  
  .callback-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background-color: rgba(0, 0, 0, 0.3);
    z-index: var(--z-overlay);
    display: none;
    justify-content: center;
    align-items: center;
  }
  
  .callback-popup-content {
    background: #ffffff;
    padding: var(--space-lg) var(--space-xl);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    width: 90%;
    max-width: 400px;
    position: relative;
    animation: popUp 0.3s ease;
  }
  
  .callback-popup-content h3 {
    margin-bottom: var(--space-md);
    font-size: 22px;
    color: var(--secondary);
  }
  
  #callbackForm input,
  #callbackForm select,
  #callbackForm textarea {
    width: 100%;
    margin-bottom: var(--space-md);
    padding: var(--space-sm);
    font-size: 16px;
    border-radius: var(--radius-sm);
    border: 1px solid #ccc;
  }
  
  #callbackForm button {
    width: 100%;
    padding: var(--space-sm);
    background-color: var(--primary);
    color: white;
    font-weight: bold;
    font-size: 16px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background var(--transition-normal);
  }
  
  #callbackForm button:hover {
    background-color: var(--primary-dark);
  }
  
  .close-callback {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-md);
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
  }
  
  .thankyou-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: rgba(0, 0, 0, 0.4);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: var(--z-modal);
  }
  
  .thankyou-popup {
    background: white;
    padding: var(--space-lg) var(--space-xl);
    border-radius: var(--radius-md);
    font-size: 18px;
    font-weight: bold;
    color: var(--secondary);
    box-shadow: var(--shadow-md);
    animation: popupFade 0.4s ease;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes popUp {
    0% { transform: scale(0.9); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
  }
  
  @keyframes popupFade {
    from { transform: translateY(10px) scale(0.95); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
  }
  .menu-icon {
    display: none;
  }
  #mobileMenu {
    display: none;
    flex-direction: column;
  }
  
  #mobileMenu.show {
    display: flex;
  }
  
  .mobile-menu-overlay{display: none;}
  /* ==================== MOBILE STYLES ==================== */
  @media (max-width: 767px) {
    /* Hide desktop elements */
    .navbar,
  .cta-header .tablet-nav,
  .phone-link-inline {
      display: none !important;
    }
    .header-left {
        display: none !important;
    }
    .top-bar, .main-header {
        width: 100%;
        margin: 0;
        padding: 0;}
    /* Mobile header */
    .mobile-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background-color: var(--secondary);
      box-sizing: border-box;
      border-radius: var(--radius-sm);
      padding: var(--space-sm) var(--space-md);
      position: relative;
      width: 100vw;
      max-width: 100%;

      z-index: var(--z-header);
    }
    .mobile-header .brand-text{display: flex;}
    .mobile-header .brand-text a {
      white-space: nowrap;
      font-size: 16px;
      font-weight: bold;
      color: white;
    }
    
    .mobile-nav-icons {
      display: flex;
      align-items: center;
      gap: var(--space-sm);
    }
    
    .phone-icon img {
      margin-top: 5px;
      width:  33px;
      height: 33px;
    }
    
    .book-now-btn {
      background-color: var(--primary);
      color: white;
      padding: 6px 14px;
      font-size: 14px;
      border-radius: var(--radius-xl);
      font-weight: bold;
    }
    .menu-icon {
        display: block;
      }
    .menu-icon img {
      width: 35px;
      height: 35px;
    }
    
    /* Mobile menu */
    .mobile-menu-overlay {
      display: none;
      flex-direction: column;
      background-color: rgba(0, 0, 0, 0.95);
      position: absolute;
      top: 90%;
      right: 39px;
      border-radius: 0 0 var(--radius-md) var(--radius-md);
      padding: var(--space-sm) var(--space-md);
      z-index: var(--z-header);
      width: max-content;
      min-width: 150px;
max-width: 240px;
    }
    
    .mobile-menu-overlay a {
      color: white;
      padding: var(--space-sm) 0;
      font-size: 16px;
    }
    
    .mobile-menu-overlay a:hover {
      color: var(--primary);
    }
    
    .top-bar {
      background-color: transparent;
      border-radius: 0;
      max-width: 100%;
      margin: 0;
      padding: 0;
    }
    
    /* Hero section */
    .hero-section {
      padding: var(--space-md);
    }
    
    .hero-section h1 {
      font-size: 25px;
    }
    
    .hero-section p {
      font-size: 18px;
      padding: var(--space-md);
    }
    
    /* Features */
    .features-spring-wrap {
        position: relative;
        width: 80%;
        margin: -80px auto 40px auto; /* pulls it up to overlap */
        z-index: 2;
        background-color: transparent;
        padding: 16px;
        border-radius: 16px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        transform: translateY(50%); /* this creates the "half overlap" look */
        
      }
    
    .spring-note {
      max-width: 100%;
    }
    .spring-note h3 {
        font-size: 18px;
        margin-bottom: 8px;
        color: #e63946;
      }
      .spring-note p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 8px;
      }
    
      .spring-note button {
        background-color: #e63946;
        color: white;
        border: none;
        padding: 10px 16px;
        font-size: 14px;
        border-radius: 8px;
        font-weight: bold;
        cursor: pointer;
      }
    .features-list-section {
      padding: var(--space-xl) var(--space-sm);
      margin-top: 0;
    }
    
    .features-list {
      margin-top: 0;
    }
    
    .features-btn {
      margin-left: 0;
    }
    
    /* About us */
    .about-us-wrapper {
      flex-direction: column;
    }
    
    .about-us-text {
      clip-path: none;
      padding: var(--space-xl) var(--space-md);
      text-align: center;
    }
    
    .about-us-slideshow {
      position: static;
      height: 300px;
    }
    
    .about-us-slideshow img {
      height: 300px;
    }
    
    /* Popup buttons */
    .popup-btn {
      font-size: 14px;
      padding: var(--space-sm);
    }

    /*==== spring pop-up for mobile *==========*/
    .spring-popup-overlay {

            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            backdrop-filter: blur(8px);
            background-color: rgba(0, 0, 0, 0.2);
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            z-index: 9999;
          }
      
      .spring-popup-content {
        background-color: #ffffff;
        right: 25px;
        border-radius: 16px;
        padding: 20px;
        width: 90%;
        max-width: 400px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
      }
      .popup-message-text {
        font-size: 14px;
        line-height: 1.6;
      }
    
      .popup-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
      }
    
      .popup-btn {
        padding: 10px 16px;
        font-size: 14px;
        border-radius: 8px;
        border: none;
        font-weight: 600;
        cursor: pointer;
        background-color: #e63946;
        color: #fff;
      }
    
      .popup-btn.secondary {
        background-color: #2B2D42;
      }
        /* Stack the two panels vertically */
  .styled-booking-form {
    max-width: 700px;
  margin: var(--space-lg) auto;
  }

  /* Make the Help panel full‑width */
  .styled-booking-form .form-right {
    width: auto;                    /* let it size to its content */
    margin: var(--space-md) auto 0; /* center it under the form */
    padding: var(--space-md);       /* keep its padding */
  }

  /* Button becomes a full‑width block */
  .styled-booking-form .form-right .call-now {
    display: inline-block;
    width: auto;
    margin: var(--space-md) auto 0; /* center horizontally */
    text-align: center;
  }
  }
  

  /* ==================== TABLET STYLES ==================== */
  @media (min-width: 768px) and (max-width: 1024px) {
    .menu-icon {
      display: none;
    }
    
    .navbar {
      display: none;
    }
    
    .tablet-nav {
      display: flex;
      justify-content: center;
      padding: var(--space-sm) 0;
      gap: var(--space-md);
    }
    
    .tablet-btn {
      padding: var(--space-sm) var(--space-md);
      border-radius: var(--radius-md);
      font-weight: bold;
      color: white;
      font-size: 16px;
      box-shadow: var(--shadow-sm);
    }
    
    .tablet-btn.red { background-color: var(--primary); font-size: 14px;
        padding: 8px 14px;
        line-height: 1.2;}
    .tablet-btn.blue { background-color: #007bff; }
    .tablet-btn.green { background-color: #28a745; }
    
    .features-spring-wrap {
      position: static;
      margin: var(--space-md) auto;
    }
    
    .spring-note {
      max-width: 100%;
    }
  }
  
  /* ==================== ACCESSIBILITY ==================== */
  @media (prefers-reduced-motion: reduce) {
    * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
  }
  
  /* Focus styles for accessibility */
  button:focus,
  input:focus,
  select:focus,
  textarea:focus,
  a:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
  }
  
  /* Print styles */
  @media print {
    .main-header,
    .promo-bar,
    .callback-float,
    .whatsapp-float {
      display: none !important;
    }
    
    body {
      background: white !important;
      color: black !important;
    }
    
    .container {
      max-width: 100%;
      padding: 0;
    }
  }