
body { 
    margin: 0; 
    font-family: 'Inter', sans-serif;
    background-color: black; 
    color: white;
    padding-top: 80px; 
  }
  
  /* Utility class to lock scroll when mobile menu is open */
  body.no-scroll {
    overflow: hidden;
  }

  /* --- HEADER (DESKTOP) --- */
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: black; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 4%; 
    box-sizing: border-box;
    transition: all 0.4s ease;
    z-index: 2000; /* Higher than menu overlay */
  }
  
  .site-header.scrolled {
    background-color: #0a0a0a;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 10px 4%; 
  }
  
  .logo { z-index: 2001; position: relative; }
  .logo img { 
    height: 34px; 
    transition: filter 0.4s ease;
  } 
  
  /* Prevent the logo from stretching while maintaining Core Web Vitals CLS standards */
.header-logo-img {
    width: auto;
    height: auto;
    max-width: 200px; /* Change this to whatever max-width you want your logo to be */
    max-height: 100%;
    object-fit: contain; /* Absolute failsafe against distortion */
    display: block;
}
  .site-header.scrolled .logo img,
  .site-header.menu-open .logo img { 
    filter: brightness(0) invert(1); /* Turns white on scroll AND when menu is open */
  }
  
  /* Desktop Menu */
  .center-menu ul { display: flex; gap: 40px; list-style: none; margin: 0; padding: 0; }
  .center-menu > ul > li { position: relative; padding: 15px 0; }
  .center-menu > ul > li > a, .center-menu > ul > li > .menu-item-wrap > a { text-decoration: none; color: white; font-size: 14.5px; font-weight: 500; transition: color 0.2s ease; }

  .site-header.scrolled .center-menu > ul > li > a,  .site-header.scrolled .center-menu > ul > li > .menu-item-wrap > a { color: #ffffff; }
  .center-menu > ul > li > a:hover { color: #e60000; }
  
  /* Dropdowns (Desktop) */
  .mega-menu, .simple-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08); 
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    border: 1px solid #f0f0f0;
  }
  .mega-menu { padding: 30px 35px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; width: max-content; }
  .simple-dropdown { padding: 20px; display: flex; flex-direction: column; gap: 12px; min-width: 220px; }
  
  .mega-menu::before, .simple-dropdown::before { content: ''; position: absolute; top: -6px; left: 50%; transform: translateX(-50%) rotate(45deg); width: 12px; height: 12px; background-color: #ffffff; border-top: 1px solid #f0f0f0; border-left: 1px solid #f0f0f0; }
  
  /* Desktop Hover Activation */
  @media (min-width: 1051px) {
    .center-menu li:hover .mega-menu, 
    .center-menu li:hover .simple-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
  }

  .mega-column h4 { font-family: 'Oswald', sans-serif; font-style: italic; margin: 0 0 12px 0; font-size: 14px; color: #888; text-transform: uppercase; font-weight: 600; letter-spacing: 0.5px; }
  .mega-column a, .simple-dropdown a { display: block; color: #444 !important; padding: 6px 0; font-size: 14px; text-decoration: none; transition: color 0.2s ease; }
  .mega-column a:hover, .simple-dropdown a:hover { color: #e60000 !important; }
  
  /* Right Side Actions */
  .header-actions { display: flex; align-items: center; gap: 12px; z-index: 2001; position: relative; }
  
  /* Square Icon Buttons (Phone & Hamburger) */
  .icon-btn { 
    display: flex; align-items: center; justify-content: center; 
    width: 42px; height: 42px; 
    background-color: transparent; 
    border: 1px solid #eaeaea; 
    border-radius: 12px; 
    color: white; 
    cursor: pointer;
    transition: all 0.3s ease; 
    padding: 0;
  }
  .icon-btn svg { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; fill: none; }
  .site-header.scrolled .icon-btn,
  .site-header.menu-open .icon-btn { border-color: #333; color: #fff; } /* Turns white on scroll or menu open */
  .icon-btn:hover { background-color: #e60000; border-color: #e60000; color: #ffffff; }

  /* Desktop Book Button */
  .desktop-book-btn { background-color: white; color: black; text-decoration: none; padding: 12px 24px; border-radius: 12px; font-size: 13px; text-transform: uppercase; font-weight: 600; border: 1px solid rgba(230, 0, 0, 0.3); box-shadow: 0 4px 12px rgba(230, 0, 0, 0.12); transition: all 0.3s ease; }
  .desktop-book-btn:hover { background-color: #e60000; border-color: #e60000; box-shadow: 0 4px 15px rgba(230, 0, 0, 0.25); }
  .site-header.scrolled .desktop-book-btn { background-color: #ffffff; color: black; border-color: transparent; }
  .site-header.scrolled .desktop-book-btn:hover { background-color: #e60000; color: #ffffff; }

  /* Mobile-Specific Elements (Hidden on Desktop) */
  .hamburger-btn { display: none; }
  .mobile-extras { display: none; }
  .mobile-toggle-btn { display: none; }

  /* --- MOBILE / TABLET VIEW (< 1050px) --- */
  @media (max-width: 1050px) {
    /* Swap Buttons */
    .desktop-book-btn { display: none; }
    .hamburger-btn { display: flex; }

    /* The Full Screen Menu Overlay */
    .center-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background-color: #0a0a0a; /* Premium Dark Mode for Menu */
      display: flex;
      flex-direction: column;
      padding: 100px 4% 40px 4%; /* Space for header at top */
      box-sizing: border-box;
      overflow-y: auto;
      transform: translateY(-100%); /* Slides down */
      transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
      z-index: 1999;
    }

    /* Menu Open State */
    .site-header.menu-open .center-menu {
      transform: translateY(0);
    }
    .site-header.menu-open {
      background-color: transparent; /* Lets the dark menu background show through */
      box-shadow: none;
    }

    /* Mobile Menu List Styling */
    .center-menu ul {
      flex-direction: column;
      gap: 0;
      width: 100%;
    }

    .center-menu > ul > li {
      padding: 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .menu-item-wrap {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
    }
    .menu-item-wrap a{
        color: #ffffff !important;
    font-family: 'Oswald', sans-serif;
    font-style: italic;
    font-size: 1.8rem;
    text-transform: uppercase;
    display: block;
    padding: 20px 0;
    width: 100%;
    text-decoration: none;
    }

    .center-menu > ul > li > a, .center-menu > ul > li > .menu-item-wrap > a  {
      color: #ffffff !important;
      font-family: 'Oswald', sans-serif;
      font-style: italic;
      font-size: 1.8rem;
      text-transform: uppercase;
      display: block;
      padding: 20px 0;
      width: 100%;
    }

    /* Mobile Dropdown Toggles (+) */
    .mobile-toggle-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      background: transparent;
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: #ffffff;
      font-size: 24px;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s;
    }
    .mobile-toggle-btn.active {
      background-color: #e60000;
      border-color: #e60000;
    }

    /* Reset Dropdowns for Mobile Accordion */
    .mega-menu, .simple-dropdown {
      position: static;
      transform: none;
      opacity: 1;
      visibility: visible;
      background-color: transparent;
      border: none;
      box-shadow: none;
      width: 100%;
      padding: 0 0 20px 15px; /* Indent sub-menus */
      display: none; /* Hidden by default in mobile */
    }
    
    .mega-menu::before, .simple-dropdown::before { display: none; }
    
    .mega-menu { grid-template-columns: 1fr; gap: 20px; }
    
    .mega-column h4 { color: #ffffff; font-size: 16px; margin-bottom: 8px; }
    .mega-column a, .simple-dropdown a { color: rgba(255, 255, 255, 0.7) !important; font-size: 16px; padding: 8px 0; }
    
    /* Display when toggled via JS */
    .mega-menu.open, .simple-dropdown.open { display: grid; }
    .simple-dropdown.open { display: flex; }

    /* Mobile Extras (Book Button, Contact) */
    .mobile-extras {
      display: flex;
      flex-direction: column;
      gap: 25px;
      margin-top: 40px;
    }

    .mobile-book-btn {
      background-color: #e60000;
      color: #ffffff;
      text-align: center;
      text-decoration: none;
      padding: 16px;
      border-radius: 12px;
      font-size: 15px;
      text-transform: uppercase;
      font-weight: 700;
      letter-spacing: 0.5px;
    }

    .mobile-contact {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .mobile-contact a {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #ffffff;
      text-decoration: none;
      font-size: 16px;
      font-weight: 500;
    }

    .mobile-contact svg {
      width: 20px;
      height: 20px;
      stroke: #e60000;
      stroke-width: 2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
  }


  /* --- FOOTER SECTION --- */
.site-footer {
  background-color: #0a0a0a;
  color: #ffffff; /* All base text is now white */
  padding: 70px 4% 30px 4%;
  font-family: 'Inter', sans-serif;
  /* Red border removed */
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 50px;
}

/* Footer Typography */
.footer-column h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  font-style: italic;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0 0 25px 0;
  letter-spacing: 0.5px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1); /* Keeps the logo white */
}

.footer-text {
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0 0 20px 0;
  color: #ffffff; /* Forced white */
}

/* Good Garage Scheme Rating */
.footer-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: black;
  font-weight: 600;
  background-color: white; /* Very subtle background pill */
  padding: 10px 16px;
  border-radius: 12px;
}

.footer-ggs-logo {
  height: 40px;
  border-radius: 4px;
}


.footer-rating-stars {
  color: #ffbc00;
  letter-spacing: 2px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: #ffffff; /* Changed to white */
  text-decoration: none;
  font-size: 14.5px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #e60000;
  transform: translateX(4px);
}

/* Footer Contact Info */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 14.5px;
  line-height: 1.5;
}

.footer-contact svg {
  width: 18px;
  height: 18px;
  stroke: #e60000; 
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact a {
  color: #ffffff; /* Changed to white */
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #e60000;
}

/* Footer Bottom (Perfectly Centered Layout) */
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* Forces exactly centered middle column */
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 13px;
}

.copyright {
  text-align: left;
}

.footer-bottom-links {
  display: flex;
  justify-content: center; /* Perfectly centers the links */
  gap: 20px;
}

.footer-bottom-links a {
  color: #ffffff; /* Changed to white */
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #e60000;
}

.social-icons {
  display: flex;
  justify-content: flex-end; /* Pushes icons to the right */
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px; 
  color: #ffffff;
  transition: all 0.3s ease;
}

.social-icons svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-icons a:hover {
  background-color: #e60000;
  transform: translateY(-3px);
}

/* Responsive Footer */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-bottom {
    grid-template-columns: 1fr; /* Stacks everything on mobile */
    gap: 20px;
    text-align: center;
  }
  .copyright {
    text-align: center;
  }
  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}


.cta-container {
  margin: 60px 4% 80px 4%; /* Matches the 4% margin of the header/hero */
  min-height: 450px; /* Smaller than the main hero */
  border-radius: 30px; /* Matches the hero's premium rounded corners */
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  
  /* Car-related background image */
  background-image: url('/wp-content/uploads/2026/07/vrs-auto-shop-front-coventry.jpg');
  background-size: cover;
  background-position: center;
}

/* Dark gradient overlay for text readability */
.cta-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.7) 100%);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 700px;
}

/* Title (Smaller version of the hero title) */
.cta-title {
  font-family: 'Oswald', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 15px 0;
  text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.cta-text {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 35px auto;
}

/* Contact Info Row */
.cta-contact-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
}

.cta-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.cta-contact-link svg {
  width: 20px;
  height: 20px;
  stroke: #e60000; /* Red accent for the icons */
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.cta-contact-link:hover {
  color: #e60000;
}

/* Buttons Row */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* Primary Button (White) */
.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: black;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn-primary:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Secondary Button (Transparent Outline) */
.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: #ffffff;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cta-title { font-size: 2.5rem; }
  .cta-contact-info { flex-direction: column; gap: 15px; }
  .cta-buttons { flex-direction: column; width: 100%; }
  .cta-btn-primary, .cta-btn-secondary { width: 100%; box-sizing: border-box; }
}


.reviews-section {
  margin: 80px 0; /* Full width for the scrolling effect, margin on top/bottom */
  padding: 0 4%;
}

.reviews-header-container {
  text-align: center;
  margin-bottom: 50px;
}

.reviews-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  color: white;
  margin: 0 0 10px 0;
  letter-spacing: -0.5px;
}

.reviews-subtitle {
  font-size: 1.05rem;
  color: white;
  margin: 0 auto;
}

/* Marquee Container with Edge Fade */
.marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px; /* Space between the two rows */
  margin-bottom: 40px;
}

/* Pause animation on hover for better readability */
.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

/* Animations */
.track-left {
  animation: scroll-left 45s linear infinite;
}

.track-right {
  /* Starts shifted left, moves right */
  animation: scroll-right 45s linear infinite;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Review Card Design */
.review-card {
  width: 350px;
  background-color: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.review-card:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.review-stars {
  color: #ffbc00;
  font-size: 16px;
  letter-spacing: 2px;
}

/* Icons for Review Source */
.review-source-icon {
  height: 20px;
  width: auto;
}

.review-source-svg {
  width: 20px;
  height: 20px;
}

.review-text {
  font-size: 14.5px;
  color: #444444;
  line-height: 1.6;
  font-style: italic; /* Makes it feel like a quote */
  margin: 0 0 20px 0;
  flex-grow: 1; /* Pushes the author name to the bottom */
}

.review-author {
  font-weight: 700;
  font-size: 14px;
  color: black;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Green checkmark for verified */
.verified-icon {
  width: 14px;
  height: 14px;
  fill: #22c55e;
}

/* CTA Button Container */
.reviews-cta-container {
  text-align: center;
}

.reviews-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  color: black;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.reviews-btn:hover {
  background-color: #e60000;
  box-shadow: 0 6px 18px rgba(230, 0, 0, 0.25);
  transform: translateY(-2px);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .review-card { width: 300px; padding: 20px; }
  .reviews-title { font-size: 2.2rem; }
}


    .service-hero-container {
  margin: 15px 4% 0px 4%; 
  min-height: 50vh;
  border-radius: 30px 30px 0 0; 
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  padding-top:60px;
  background-size: cover;
  background-position: center;
}

.service-hero-container.no-trust-bar{
    border-radius: 30px 30px 30px 30px;
}

.service-hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

.service-hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 800px;
}

.service-hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 15px 0;
  text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.service-hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto 30px auto;
  line-height: 1.6;
}

.service-hero-btn {
  display: inline-block;
  background-color: #ffffff;
  color: black;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.service-hero-btn:hover {
  background-color: #e60000;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 0, 0, 0.3);
}
 /* --- TRUST & VEHICLE FLOATING BAR --- */
.trust-vehicle-bar {
  margin: -50px 4% 60px 4%; 
  position: relative;
  z-index: 10;
}

.tvb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  border-radius: 0 0 30px 30px;
  padding: 20px 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08); 
  border: 1px solid #f0f0f0;
  flex-wrap: wrap; 
  gap: 20px;
}

/* Left Side: Trust Badge */
.tvb-trust {
  display: flex;
  align-items: center;
  gap: 15px;
}

.tvb-trust img {
  height: 36px;
  object-fit: contain;
}

.tvb-trust-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: white;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
}

.tvb-trust-text strong {
  font-weight: 800;
  color: black;
  font-size: 16px;
}

.tvb-trust-text span {
  font-weight: 500;
}

/* Center: Subtle Vertical Divider */
.tvb-divider {
  width: 1px;
  height: 50px; /* Slightly taller to accommodate the title on the right */
  background-color: #eaeaea;
}

/* Right Side Wrapper */
.tvb-right-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tvb-small-title {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: black;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Right Side: Vehicle Links */
.tvb-vehicles {
  display: flex;
  align-items: center;
  gap: 30px;
}

.tvb-vehicle-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: black;
  text-decoration: none; /* Removed underline from links */
  transition: color 0.3s ease;
}

.tvb-vehicle-item svg {
  width: 22px;
  height: 22px;
  stroke: #e60000;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

/* Hover Effects for the Links */
.tvb-vehicle-item:hover {
  color: #e60000;
}

.tvb-vehicle-item:hover svg {
  transform: scale(1.1); /* Subtle pop on the icon */
}

/* Mobile Responsiveness */
@media (max-width: 1050px) {
  .tvb-inner { 
    flex-direction: column; 
    justify-content: center; 
    text-align: center; 
    padding: 25px 20px;
  }
  .tvb-divider { 
    width: 100%; 
    height: 1px; 
  }
  .tvb-right-section {
    align-items: center; /* Centers the title and links on mobile */
  }
  .tvb-vehicles { 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 20px;
  }
}

.process-services-section {
  margin: 80px 4%; 
  padding: 0;
}

/* The Split Grid */
.ps-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  width: 100%; 
}

/* Shared Titles */
.ps-col-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  color: white;
  margin: 0 0 40px 0;
  letter-spacing: -0.5px;
}

/* --- Left Side: Vertical Timeline --- */
.ps-timeline {
  position: relative;
  padding-left: 45px; 
}

.ps-timeline::before {
  content: '';
  position: absolute;
  left: 13px; /* Centers the line exactly under the new squares */
  top: 5px;
  bottom: 10px;
  width: 2px;
  background-color: #eaeaea;
}

.ps-step {
  position: relative;
  margin-bottom: 45px;
}

.ps-step:last-child {
  margin-bottom: 0;
}

/* Updated to Rounded Squares */
.ps-step-square {
  position: absolute;
  left: -46px;
  top: 0;
  width: 28px;
  height: 28px;
  background-color: #ffffff;
  border: 2px solid #e60000;
  border-radius: 8px; /* Rounded corners to match your UI style */
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #e60000;
}

.ps-step-content h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  color: white;
  margin: 0 0 8px 0;
  letter-spacing: 0.5px;
}

.ps-step-content p {
  font-size: 14.5px;
  color: white;
  line-height: 1.6;
  margin: 0;
}

/* --- Right Side: Integrated Services Card --- */
.integrated-services-card {
  background-color: white;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  padding: 40px;
}

.isc-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  font-style: italic;
  color: black;
  text-transform: uppercase;
  margin: 0 0 20px 0;
  letter-spacing: -0.5px;
}

/* Image now sits neatly inside the card under the title */
.isc-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 25px;
}

/* Compact, inline 2-column list */
.isc-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 20px;
  margin-bottom: 35px;
}

.isc-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: black;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.4;
}

/* Tiny red square ticks */
.isc-icon {
  width: 16px;
  height: 16px;
  background-color: #e60000;
  border-radius: 4px; 
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px; /* Aligns visually with the text */
}

.isc-icon svg {
  width: 10px;
  height: 10px;
  stroke: #ffffff;
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Card Book Now Button */
.isc-btn {
  background-color: #e60000;
  color: #ffffff;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 16px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}

.isc-btn:hover {
  background-color: #cc0000;
  box-shadow: 0 6px 15px rgba(230, 0, 0, 0.25);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .ps-split-grid { grid-template-columns: 1fr; gap: 50px; }
}
@media (max-width: 576px) {
  .integrated-services-card { padding: 30px 20px; }
  .isc-list { grid-template-columns: 1fr; } /* Stacks to 1 column on very small phones */
}

.services-slider-section {
  margin: 40px 4%;
  position: relative;
}

.services-header {
  text-align: center;
  margin-bottom: 40px;
}

.services-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  color: white;
  margin: 0 0 10px 0;
  letter-spacing: -0.5px;
}

.services-subtitle {
  font-size: 1.05rem;
  color: white;
  margin: 0 auto;
  max-width: 600px;
  line-height: 1.5;
}

.slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background-color: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  color: black;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.slider-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.slider-btn:hover {
  background-color: #e60000;
  border-color: #e60000;
  color: #ffffff;
}

.prev-btn { left: -20px; }
.next-btn { right: -20px; }

.slider-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 20px 0;
  width: 100%;
  -ms-overflow-style: none;  
  scrollbar-width: none;  
  cursor: grab;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

.slider-track.active {
  cursor: grabbing;
  scroll-behavior: auto;
}

.service-card {
  flex: 0 0 calc(25% - 15px);
  height: 380px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.card-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.4) 50%, rgba(10, 10, 10, 0) 100%);
  pointer-events: none;
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 25px 20px;
  width: 100%;
  box-sizing: border-box;
  color: #ffffff;
  pointer-events: auto;
}

.card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  margin: 0 0 8px 0;
  letter-spacing: 0.5px;
}

.card-desc {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 10px 0;
}

.card-link {
  display: inline-block;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #e60000;
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

.card-link:hover {
  color: #e60000;
}

@media (max-width: 992px) {
  .service-card { flex: 0 0 calc(33.333% - 14px); }
}
@media (max-width: 768px) {
  .service-card { flex: 0 0 calc(50% - 10px); }
  .prev-btn { left: -10px; }
  .next-btn { right: -10px; }
}
@media (max-width: 576px) {
  .service-card { flex: 0 0 85%; }
  .prev-btn, .next-btn { display: none; }
}

.clean-split-section {
  padding: 80px 4%; /* Matches the exact 4% edge spacing of the other sections */
  background-color: black;
}

.clean-split-container {
  width: 100%; /* Removed max-width so it matches the rest of the page */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.split-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  margin: 0 0 30px 0;
  color: white;
}

/* Light FAQs */
.light-faq-item {
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 5px;
}

.light-faq-summary {
  padding: 20px 0;
  /* Updated to Oswald Italic to match styling */
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.light-faq-summary::-webkit-details-marker { display: none; }

.light-faq-icon { 
  font-size: 24px; 
  color: #e60000; 
  font-weight: 300; 
  font-style: normal; /* Keeps the + icon straight */
  transition: transform 0.3s ease; 
}

.light-faq-item[open] .light-faq-icon { transform: rotate(45deg); }

.light-faq-content { 
  padding: 0 0 20px 0; 
  font-size: 14.5px; 
  color: white !important; 
  line-height: 1.6; 
  font-family: 'Inter', sans-serif; /* Keeps the answer text highly readable */
}

/* Contact Form Side (Unchanged - Perfect as is) */
.contact-form-box {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  border: 1px solid #eaeaea;
}
.contact-form-box h3{
    color:black !important;
}

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; color: #444; font-family: 'Inter', sans-serif; }
.form-control {
  width: 100%; padding: 12px 15px; border: 1px solid #eaeaea; border-radius: 8px;
  font-family: 'Inter', sans-serif; font-size: 14px; box-sizing: border-box;
  background-color: #fcfcfc; transition: border-color 0.3s;
}
.form-control:focus { outline: none; border-color: #e60000; }
textarea.form-control { resize: vertical; min-height: 100px; }

/* Form Submit Button */
.submit-btn {
  background-color: #e60001; color: #ffffff; border: none; width: 100%; padding: 14px; border-radius: 12px;
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 700; text-transform: uppercase; cursor: pointer; transition: all 0.3s;
}
.submit-btn:hover { background-color: #e60000; }

/* Contact Buttons (Reusing header icon-btn logic) */
.contact-button-row {
  display: flex; gap: 15px; margin-top: 30px; border-top: 1px solid #eaeaea; padding-top: 25px;
}

.header-style-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background-color: transparent; border: 1px solid black; border-radius: 12px; color: black; 
  text-decoration: none; padding: 12px 20px; font-size: 14px; font-weight: 600; transition: all 0.3s ease; flex: 1; 
}
.header-style-btn svg { width: 18px; height: 18px; stroke: black; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.header-style-btn:hover { background-color: #e60000; border-color: #e60000; color: #ffffff; }

@media (max-width: 992px) { 
  .clean-split-container { grid-template-columns: 1fr; gap: 50px; } 
}
@media (max-width: 576px) { 
  .contact-button-row { flex-direction: column; } 
}
/* WYSIWYG Scoped Styling for Legal Pages and Long Text */
.wysiwyg-content-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: white;
}

.wysiwyg-content-wrapper h2 {
    font-family: 'Oswald', sans-serif; /* Matches your form heading style */
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: white;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #E63946; /* Subtle red accent line */
    padding-bottom: 0.5rem;
    display: inline-block;
}

.wysiwyg-content-wrapper p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.wysiwyg-content-wrapper ul {
    margin-bottom: 1.5rem;
    padding-left: 20px;
}

.wysiwyg-content-wrapper ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    position: relative;
}

.wysiwyg-content-wrapper a {
    color: #E63946;
    text-decoration: none;
    font-weight: 600;
}

.wysiwyg-content-wrapper a:hover {
    text-decoration: underline;
}
   
.info-bar-section {
  margin: 40px 4%;
  background-color: #e60000;
  border-radius: 30px;
  padding: 25px 35px;
  box-shadow: 0 10px 30px rgba(230, 0, 0, 0.2); /* Soft red glow shadow */
}

.info-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: center;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Semi-transparent icon box */
.info-icon-box {
  width: 44px;
  height: 44px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.info-item:hover .info-icon-box {
  transform: scale(1.05); /* Subtle pop on hover */
}

.info-icon-box svg {
  width: 22px;
  height: 22px;
  stroke: #ffffff;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-content {
  display: flex;
  flex-direction: column;
}

.info-label {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.info-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

/* Make links white and remove underlines */
.info-text a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.info-text a:hover {
  opacity: 0.8;
}

/* Responsive Grid Adjustments */
@media (max-width: 1050px) {
  .info-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 576px) {
  .info-bar-section {
    padding: 25px 20px;
  }
  .info-bar-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
 /* --- 50/50 IMAGE & TEXT SECTION (FULL WIDTH) --- */
.image-text-section {
  margin: 80px 4%;
  padding: 0;
}

.image-text-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center; 
  width: 100%; /* Removed max-width to allow it to stretch with the page */
}

/* Modifier class to flip the layout (Image on Right) */
.image-text-container.reverse-layout .it-image-col {
  order: 2;
}
.image-text-container.reverse-layout .it-text-col {
  order: 1;
}

/* Image Column */
.it-image-col {
  position: relative;
}

.it-image-wrapper {
  border-radius: 24px; 
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08); 
}

.it-image-wrapper img {
  width: 100%;
  height: 100%;
  max-height: 550px; /* Slightly taller to look better on wide screens */
  object-fit: cover;
  display: block;
}

/* Text Column */
.it-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.it-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  color: white;
  margin: 0 0 25px 0;
  letter-spacing: -0.5px;
  line-height: 1.1;
  border-left: 4px solid #e60000; 
  padding-left: 15px;
}

.it-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: white;
  line-height: 1.7;
  margin: 0 0 20px 0;
}

.it-text:last-of-type {
  margin-bottom: 30px; 
}

/* Action Group (Holds Button & Trust Badge) */
.it-action-group {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap; /* Ensures they stack neatly on small screens */
}

/* Primary CTA Button */
.it-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  color: black;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.it-btn:hover {
  background-color: #e60000;
  box-shadow: 0 6px 18px rgba(230, 0, 0, 0.25);
  transform: translateY(-2px);
}

/* Inline Review Badge */
.it-review-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #fcfcfc;
  border: 1px solid #eaeaea;
  padding: 10px 18px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.it-review-badge:hover {
  border-color: white;
  background-color: #ffffff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}

.it-review-logo {
  height: 22px;
  object-fit: contain;
}

.it-review-text {
  display: flex;
  flex-direction: column;
}

.it-review-title {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: black;
}

.it-review-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: black;
  font-weight: 500;
}

/* Responsive Grid Adjustments */
@media (max-width: 992px) {
  .image-text-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .image-text-container.reverse-layout .it-image-col,
  .it-image-col { order: 1; }
  
  .image-text-container.reverse-layout .it-text-col,
  .it-text-col { order: 2; }
}

@media (max-width: 576px) {
  .it-action-group {
    flex-direction: column;
    align-items: flex-start;
  }
  .it-btn, .it-review-badge {
    width: 100%;
    box-sizing: border-box;
  }
}

  /* --- ALL SERVICES GRID SECTION --- */
.all-services-section {
  margin: 60px 4% 100px 4%;
}

.all-services-header {
  text-align: center;
  margin-bottom: 50px;
}

.all-services-title {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  color: white;
  margin: 0 0 15px 0;
  letter-spacing: -0.5px;
}

.all-services-subtitle {
  font-size: 1.1rem;
  color: white;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* The Grid Setup (Updated to match full width) */
.as-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  width: 100%; /* Replaced max-width so it matches the 4% margins perfectly */
}

/* Individual Service Card */
.as-card {
  display: flex;
  flex-direction: column;
  text-decoration: none; 
}

/* Image Wrapper */
.as-image-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 15px;
  background-color: #f0f0f0; 
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.as-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Title / Link Styling */
.as-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  color: white;
  text-align: center;
  margin: 0;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

/* Hover Effects */
.as-card:hover .as-image {
  transform: scale(1.05); 
}

.as-card:hover .as-card-title {
  color: #e60000; 
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1050px) {
  .as-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

@media (max-width: 650px) {
  .all-services-title {
    font-size: 2.2rem;
  }
  .as-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px; 
  }
  .as-image-wrapper {
    border-radius: 12px; 
    margin-bottom: 10px;
  }
  .as-card-title {
    font-size: 0.95rem; 
  }
}
/* --- HERO SECTION --- */
  .hero-container { margin: 0px 4% 0 4%; /* Reduced top margin */ height: 70vh; padding-top: 60px; border-radius: 30px; overflow: hidden; position: relative; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; padding-bottom: 60px; background-size: cover; background-position: center; }
  .hero-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%); z-index: 1; }
  .hero-content { position: relative; z-index: 2; text-align: center; color: #ffffff; max-width: 800px; padding: 0 20px; }
  
  /* Updated Trust Badge */
.trust-badge { 
  display: inline-flex; 
  align-items: center; 
  gap: 15px; /* Spaced out slightly more for the larger logo */
  background-color: #ffffff; 
  color: white; 
  padding: 10px 10px 10px 20px; /* Hugs the green button tighter on the right */
  border-radius: 14px; 
  margin-bottom: 30px; 
  box-shadow: 0 8px 25px rgba(0,0,0,0.25); 
  box-sizing: border-box;
}

/* Made the logo significantly larger */
.trust-logo { 
  height: 38px; 
  object-fit: contain;
}

/* New wrapper to stack the text neatly */
.trust-text-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  line-height: 1.25;
}

.trust-primary {
  font-size: 14.5px;
  font-weight: 700;
  color: black;
  letter-spacing: -0.2px;
}

.trust-rating-number { 
  font-weight: 800;
  font-size: 15.5px; /* Slightly pops out from the rest of the text */
}

.trust-secondary {
  font-size: 12px;
  color: white;
  font-weight: 500;
}

/* Slightly enlarged the green button to balance the taller logo */
.review-btn {
  background-color: #22c55e; 
  color: #ffffff;
  width: 38px; 
  height: 38px;
  border-radius: 10px; 
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-left: 5px;
}

.review-btn:hover { 
  background-color: #16a34a; 
  transform: translateX(2px); /* Slight nudge interaction */
}

.review-btn svg { 
  width: 18px; 
  height: 18px; 
  stroke: currentColor; 
}

  .hero-title { font-size: 4.5rem; font-weight: 700; text-transform: uppercase; line-height: 1.05; margin: 0 0 15px 0; text-shadow: 0 4px 20px rgba(0,0,0,0.5); font-family: 'Oswald', sans-serif; font-style:italic;}
  .hero-subtitle { font-size: 1.15rem; font-weight: 400; line-height: 1.6; color: rgba(255, 255, 255, 0.9); margin: 0 auto 30px auto; max-width: 650px; box-sizing: border-box;
    width: 90%;}
  .hero-btn { display: inline-block; background-color: #ffffff; color: black; text-decoration: none; padding: 14px 32px; border-radius: 12px; font-size: 14px; text-transform: uppercase; font-weight: 700; letter-spacing: 0.5px; transition: all 0.3s ease; box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2); }
  .hero-btn:hover { background-color: #f0f0f0; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3); }

  /* --- BRAND LOGO SCROLLER --- */
  .brand-scroller { margin: 30px 4%; overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }
  .brand-track { display: flex; align-items: center; gap: 80px; width: max-content; animation: scroll-brands 30s linear infinite; }
  .brand-item { font-family: 'Oswald', sans-serif; font-size: 28px; font-weight: 700; font-style: italic; color: #b0b0b0; text-transform: uppercase; letter-spacing: 1px; opacity: 0.7; transition: opacity 0.3s ease; display: flex; align-items: center; justify-content: center; }
  .brand-item:hover { opacity: 1; }
  @keyframes scroll-brands { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

  /* --- WHY CHOOSE US SECTION (No borders, pure white) --- */
  .features-section { margin: 60px 4%; padding: 0; }
  .features-header { text-align: center; margin-bottom: 40px; }
  .features-title { font-size: 2.5rem; font-weight: 700; text-transform: uppercase; color: white; margin: 0; letter-spacing: -0.5px; font-family: 'Oswald', sans-serif; font-style:italic; }
  
  .features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  
  .feature-card {
    background-color: transparent; /* Removed background */
    padding: 20px 15px; /* Adjusted padding for flat look */
    text-align: center;
    border: none; /* Removed borders */
  }

  .feature-icon-wrapper { width: 56px; height: 56px; background-color: #1b1b1b; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px auto; }
  .feature-icon-wrapper svg { width: 28px; height: 28px; stroke: #e60000; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; fill: none; }
  
  .feature-title { font-size: 18px; font-weight: 700; color: white; margin: 0 0 10px 0; text-transform: uppercase; letter-spacing: 0.5px; font-family: 'Oswald', sans-serif; font-style:italic;}
  .feature-text { font-size: 14.5px; color: white; line-height: 1.6; margin: 0; }

  @media (max-width: 992px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 576px) { .features-grid { grid-template-columns: 1fr; } }

.booking-section {
  background-color: black; /* Very subtle off-white to make the white cards pop */
  padding: 80px 4%;
}

.booking-header {
  text-align: center;
  margin-bottom: 50px;
}

.booking-title {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  color: white;
  margin: 0 0 15px 0;
  letter-spacing: -0.5px;
}

.booking-subtitle {
  font-size: 1.1rem;
  color: white;
  margin: 0 auto;
  max-width: 650px;
  line-height: 1.6;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Booking Cards */
.booking-card {
  background-color: black;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid #eaeaea;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.booking-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transform: translateY(-5px);
  border-color: #e0e0e0;
}

.booking-icon-wrapper {
  width: 64px;
  height: 64px;
  background-color: #1b1b1b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
}

.booking-icon-wrapper svg {
  width: 32px;
  height: 32px;
  stroke: #e60000; /* Signature red */
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.booking-card-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  color: white;
  margin: 0 0 15px 0;
  letter-spacing: 0.5px;
}

.booking-card-text {
  font-size: 14.5px;
  color: white;
  line-height: 1.6;
  margin: 0 0 30px 0;
  flex-grow: 1;
}

/* Action Buttons inside cards */
.booking-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  color: black;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 12px; /* Consistent 12px */
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  width: 100%; /* Full width of the card */
  box-sizing: border-box;
}

.booking-card-btn:hover {
  background-color: #e60000;
  box-shadow: 0 4px 15px rgba(230, 0, 0, 0.2);
}

/* Specific styling for the contact links in the 3rd card */
.booking-contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.booking-contact-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #ffffff;
  color: black;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid #eaeaea;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.booking-contact-links a svg {
  width: 18px;
  height: 18px;
  stroke: #e60000;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking-contact-links a:hover {
  border-color: white;
  background-color: #f9f9f9;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .booking-grid { grid-template-columns: repeat(2, 1fr); }
  /* Make the 3rd card span full width on tablet */
  .booking-card:nth-child(3) { grid-column: span 2; }
}
@media (max-width: 768px) {
  .booking-title { font-size: 2.2rem; }
  .booking-grid { grid-template-columns: 1fr; }
  .booking-card:nth-child(3) { grid-column: span 1; }
}