* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding-top: 60px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #d60000;
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.menu-toggle {
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  display: none;
}

.nav {
  margin-left: auto;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: #d60000;
    display: none;
    text-align: center;
  }

  .nav.active {
    display: block;
  }

  .nav-menu {
    flex-direction: column;
    padding: 20px 0;
  }

  .desktop-only {
    display: none;
  }
}


body {
    background-color: #f4f4f4;
    color: #333;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #D30000;
    color: white;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.logo span {
    color: #f9a826;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.btn {
    background-color: #f9a826;
    color: black;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}

/* Hero Section */
.hero {
    background: url('https://images.unsplash.com/photo-1523413651479-597eb2da0ad6') center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    padding: 50px;
    color: white;
}

.hero-content {
    max-width: 1200px;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

/* Services */
.services {
    padding: 60px 50px;
    background-color: white;
    text-align: center;
}

.service-box {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.service {
    background: #f4f4f4;
    padding: 25px;
    border-radius: 8px;
    flex: 1;
}

/* Why Us */
.why-us {
    padding: 50px;
    background-color: #D30000;
    color: white;
}

.why-us ul {
    list-style: none;
    margin-top: 20px;
}

.why-us li {
    margin: 10px 0;
    font-size: 18px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #111;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        flex-direction: column;
    }

    .service-box {
        flex-direction: column;
    }

    .hero {
        height: auto;
        padding: 40px;
    }
}

.gallery {
    padding: 70px 50px;
    background-color: #f9f9f9;
    text-align: center;
}

.gallery h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.gallery p {
    color: #666;
    margin-bottom: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.4s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}


.services-advanced {
    padding: 70px 50px;
    background-color: white;
    text-align: center;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.service-card {
    background: #f4f4f4;
    padding: 30px;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card span {
    font-size: 40px;
}

.service-card h3 {
    margin: 15px 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

.dos-donts {
    padding: 70px 50px;
    background-color: #D30000;
    color: white;
    text-align: center;
}

.tips-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.tips {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 12px;
    width: 300px;
}

.tips ul {
    list-style: none;
    margin-top: 15px;
    text-align: left;
}

.tips li {
    margin-bottom: 10px;
}


.btn-book-now {
  display: inline-block;
  background: linear-gradient(135deg, #f1f1f1, #f9a826);
  color: black;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 18px;
  box-shadow: 0 6px 12px rgba(31, 60, 136, 0.6);
  transition: background 0.3s ease, transform 0.2s ease;
  user-select: none;
}

.btn-book-now:hover {
  background: linear-gradient(135deg, #f9a826, #f1f1f1);
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(58, 103, 216, 0.8);
}


.slider-container {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.slider {
  position: relative;
  width: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
}

.caption {
  position: absolute;
  left: 50%;
  bottom: 20%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  padding: 15px 25px;
  border-radius: 8px;
  font-size: 22px;
}

/* Arrows */
.arrows span {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #fff;
  background: rgba(0,0,0,0.4);
  border-radius: 50%;
  padding: 10px;
  z-index: 10;
}

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

/* Dots */
.dots {
  text-align: center;
  position: absolute;
  bottom: 10px;
  width: 100%;
}
.dots .dot {
  height: 12px;
  width: 12px;
  background: #ddd;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  margin: 0 5px;
}
.dots .active-dot {
  background: #333;
}

/* HEADER */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: #D30000;
    color: #fff;
    position: relative;
}

.logo {
    font-size: 22px;
    font-weight: bold;
}

.logo span {
    color: #ffb703;
}

/* NAV */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-menu li a {
    color: #fff;
    text-decoration: none;
}

/* BOOK BUTTON */
.btn-book-now {
    background: #ffb703;
    color: #000;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
}

/* MOBILE */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

.mobile-book {
    display: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #D30000;
        flex-direction: column;
        align-items: center;
        display: none;
        padding: 20px 0;
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .desktop-only {
        display: none;
    }

    .mobile-book {
        display: block;
        margin-top: 10px;
    }
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between; /* KEY FIX */
    padding: 15px 20px;
    background: #D30000;
    position: relative;
}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    margin: 0;
}

.menu-toggle {
    font-size: 26px;
    cursor: pointer;
    color: #fff;
    margin-left: auto; /* SAFETY FIX */
}

@media (max-width: 768px) {
    .header {
        flex-direction: row; /* prevent stacking */
    }

    .menu-toggle {
        display: block;
    }
}

/* Hide mobile Book Now on desktop */
.mobile-book {
    display: none;
}

/* Hide desktop Book Now on mobile */
@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    .mobile-book {
        display: block;
    }
}


@media (max-width: 768px) {
    .nav-menu .mobile-book {
        background: #e63946;
        color: #fff;
        text-align: center;
        padding: 12px 16px;
        margin: 10px 0;
        border-radius: 4px;
        font-weight: 600;
        text-transform: uppercase;
    }

    .nav-menu .mobile-book:hover {
        background: #c92f3c;
    }
}

.insurance-section {
  width: 100%;
  background: #ED2939;
  padding: 0;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}


.insurance-wrapper {
  display: flex;
  min-height: 500px;
}

/* LEFT */
.insurance-media {
  width: 50%;
}

.insurance-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT */
.insurance-content {
  width: 50%;
  padding: 80px 60px;
  color: #fff;
}

.insurance-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.insurance-content p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 520px;
}

/* BUTTON */
.insurance-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
  padding: 15px 30px;
  background: #ffffff;
  color: #0b3c6f;
  text-decoration: none;
  border-radius: 40px;
  font-weight: 600;
  transition: 0.3s ease;
}

.insurance-btn span {
  margin-left: 12px;
  font-size: 18px;
}

.insurance-btn:hover {
  background: #e6eef6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .insurance-wrapper {
    flex-direction: column;
  }

  .insurance-media,
  .insurance-content {
    width: 100%;
  }

  .insurance-content {
    padding: 40px 20px;
  }
}

.icon {
  font-family: "Apple Color Emoji","Segoe UI Emoji","Noto Color Emoji", sans-serif;
}


.hero-content h1 {
    white-space: nowrap;
}

.caption {
    white-space: nowrap;
}

.caption {
    white-space: nowrap;
    font-size: clamp(18px, 5vw, 42px);
}

body {
  background: #f5f7fb;
}

/* MAIN SECTIONS */
section,
.section-padding {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  padding: 60px 40px;
  margin-bottom: 60px;
}

.section-boxed {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  padding: 60px 40px;
  margin-bottom: 60px;
}

.slider-container {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.slider {
  width: 100%;
  height: 80vh; /* adjust if needed */
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .caption {
    white-space: normal;
    text-align: center;
    padding: 0 15px;
  }
}

.hero-section {
  padding: 0 !important;
  margin: 0 !important;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

body {
  margin: 0;
  padding: 0;
  background: #f5f7fb;
}

.slider-container,
.slider {
  margin-bottom: 0;
}

.slider {
  height: 80vh;
}

@media (max-width: 768px) {
  .slider {
    height: auto;
    min-height: 55vh;
  }
}

.slide {
  position: absolute;
  inset: 0;
}

.slide.active {
  display: flex;
}

.slider-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

@media (max-width: 768px) {
  .slider-container,
  .slider {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
}

.slider {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.6s ease;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

section,
.section-padding {
  border-radius: 18px;
}


.dos-donts {
  background: #D30000;
  padding: 80px 20px;
}

.dos-donts h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 50px;
}

.tips-container {
  max-width: 1200px;   /* WIDER DESKTOP WIDTH */
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.tips {
  width: 100%;
  padding: 40px 50px;
  border-radius: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 768px) {
  .tips-container {
    grid-template-columns: 1fr;
    max-width: 100%;
    gap: 24px;
  }

  .tips {
    padding: 30px 24px;
  }
}

.tips ul {
  max-width: 520px;
}

.tips {
  text-align: center;
}


/* ABOUT HERO */
.about-hero {
  background: url('/path/to/your-banner.jpg') center/cover no-repeat;
  padding: 200px 20px;
  text-align: center;
  color: #fff;
  position: relative;
}
.about-hero-text h1 {
  font-size: 42px;
  margin-bottom: 10px;
}
.about-hero-text p {
  font-size: 22px;
  opacity: 0.85;
}

/* ABOUT CONTENT */
.about-content {
  background: #fff;
  padding: 80px 20px;
  margin-top: 40px;
}
.about-content h2 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 32px;
  color: #D30000;
}
.about-content p {
  max-width: 900px;
  margin: 0 auto 32px;
  line-height: 1.7;
  font-size: 17px;
}
.about-list {
  list-style: inside disc;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 17px;
}
.about-list li {
  margin-bottom: 10px;
}

/* VALUES */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 24px;
  margin: 40px 0;
}
.value-box {
  background: #f1f6fa;
  padding: 20px;
  border-radius: 14px;
  text-align: center;
}
.value-box h3 {
  color: #D30000;
  margin-bottom: 12px;
}

/* TEAM */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 40px;
  margin: 40px 0;
  text-align: center;
}
.team-member {
  padding: 20px;
}
.member-photo {
  width: 160px;
  height: 160px;
  margin: 0 auto 12px;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
}
.photo1 { background: url('/path/to/team1.jpg'); }
.photo2 { background: url('/path/to/team2.jpg'); }
.photo3 { background: url('/path/to/team3.jpg'); }
.team-member h4 {
  font-size: 20px;
  margin-bottom: 6px;
}
.team-member p {
  font-size: 15px;
  opacity: 0.85;
}

/* CTA */
.about-cta {
  text-align: center;
  margin-top: 60px;
}
.btn-primary {
  padding: 14px 32px;
  background: #ffb703;
  color: #000;
  text-decoration: none;
  font-size: 18px;
  border-radius: 28px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-hero { padding: 150px 15px; }
  .about-content h2 { font-size: 26px; }
}

:root {
  --blue: #D30000;
  --blue-dark: #D30000;
  --yellow: #ffb703;
  --bg-light: #f6f8fc;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: var(--bg-light);
  color: #222;
}

/* HEADER */
.site-header {
  background: var(--blue);
  padding: 18px 40px;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.logo span {
  color: var(--yellow);
}

/* HERO SECTION */
.about-hero {
  padding: 90px 40px;
  background: linear-gradient(120deg, #eef2ff, #ffffff);
}

.hero-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.hero-left .badge {
  display: inline-block;
  background: rgba(255, 183, 3, 0.18);
  color: #8a5b00;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 20px;
}

.hero-left h1 {
  font-size: 46px;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--blue-dark);
}

.hero-left h1 span {
  color: var(--blue);
}

.hero-left p {
  font-size: 17px;
  line-height: 1.7;
  max-width: 520px;
  color: #555;
}

/* CTA */
.cta-group {
  margin-top: 30px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--yellow);
  color: #000;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
}

.btn-secondary {
  border: 2px solid var(--blue);
  color: var(--blue);
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

/* TRUST ICONS */
.trust-icons {
  margin-top: 36px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.trust-icons div {
  background: #fff;
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  font-size: 14px;
  color: #444;
}

/* RIGHT CARD */
.image-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,.25);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(0,0,0,.9), transparent);
  color: #fff;
}

.card-overlay h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.card-overlay p {
  font-size: 14px;
  opacity: .9;
}

/* TAGS */
.feature-tags {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.feature-tags span {
  background: rgba(255,255,255,.15);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-container {
    grid-template-columns: 1fr;
  }

  .hero-left h1 {
    font-size: 34px;
  }
}

.stats-section {
  background: #ffffff;
  padding: 50px 30px;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
  margin-bottom: 60px;
}

.stats-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  align-items: center;
}

/* STATS */
.stat {
  text-align: center;
}

.stat h3 {
  font-size: 32px;
  font-weight: 800;
  color: #ffb703;
  margin-bottom: 6px;
}

.stat p {
  font-size: 15px;
  color: #333;
}

/* CTA */
.stat.cta {
  display: flex;
  justify-content: center;
}

.quote-btn {
  border: 2px solid #ffb703;
  padding: 14px 26px;
  border-radius: 30px;
  color: #D30000;
  text-decoration: none;
  font-weight: 700;
  transition: all .3s ease;
}

.quote-btn:hover {
  background: #ffb703;
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }

  .stat.cta {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .stats-container {
    grid-template-columns: 1fr;
  }

  .stat.cta {
    grid-column: auto;
  }
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f7fb;
  color: #1f2a44;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 30px;
  background: #D30000;
  color: #fff;
}

.logo {
  font-size: 22px;
  font-weight: bold;
}

.logo span {
  color: #ffb703;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
}

.nav-menu a.active {
  border-bottom: 2px solid #ffb703;
}

.btn-book-now {
  background: #ffb703;
  color: #000;
  padding: 10px 18px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
}

/* HERO */
.services-hero {
  background: linear-gradient(
    rgba(211, 60, 136, 0.9),
    rgba(224, 63, 63, 1)
  ),
  url("images/caravan-battery-installation-services-tarneit.jpg") center/cover;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}

.services-hero h1 {
  font-size: 42px;
}

.services-hero h1 span {
  color: #ffb703;
}

.badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

/* SERVICES */
.services-section {
  padding: 80px 40px;
  background: #fff;
}

.services-section h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
}

.service-card i {
  font-size: 38px;
  color: #D30000;
  margin-bottom: 15px;
}

.service-card h3 {
  margin-bottom: 12px;
}

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

.service-card.highlight {
  background: #D30000;
  color: #fff;
}

.service-card.highlight i {
  color: #ffb703;
}

/* CTA */
.services-cta {
  background: #D30000;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.services-cta h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.cta-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 35px;
  background: #ffb703;
  color: #000;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}

/* FOOTER */
footer {
  background: #D30000;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .services-hero h1 {
    font-size: 32px;
  }
}

/* ===== Desktop Menu Shadow (Whole Menu) ===== */
@media (min-width: 769px) {
  .nav-menu {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    padding: 10px 20px;
    border-radius: 4px;
    background: #d60000; /* same as header */
  }
}


/* ===== Gallery Section Images ===== */
.gallery-grid img {
  width: 100%;
  display: block;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

/* ===== Optional Hover Effect ===== */
.gallery-grid img:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  transform: scale(1.03);
}

/* ===== Slide-in Animation ===== */
@keyframes slideInLeft {
  from {
    transform: translateX(-40px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.gallery-grid img.animate {
  animation: slideInLeft 1.2s ease-out forwards;
}

/* Mobile/Tablet Carousel */
@media (max-width: 1024px) {
  .gallery-grid {
    display: none; /* hide desktop grid */
  }

  .gallery-carousel-wrapper {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
  }

  .gallery-carousel {
    display: flex;
    gap: 16px;
    transition: transform 0.5s ease;
  }

  .gallery-carousel .gallery-item {
    flex: 0 0 auto;
    width: 70%;
    max-width: 300px;
    aspect-ratio: 4/3;   /* same as desktop */
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  }

  .gallery-carousel .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(214, 0, 0, 0.8);
    color: #fff;
    border: none;
    font-size: 30px;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
  }

  .carousel-btn.left {
    left: 10px;
  }

  .carousel-btn.right {
    right: 10px;
  }
}


/* Desktop Gallery Grid */
@media (min-width: 1025px) {
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
  }

  .gallery-item {
    width: 100%;
    aspect-ratio: 4 / 3;  /* makes all items same aspect ratio */
    overflow: hidden;     /* crop overflowing parts */
    border-radius: 8px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.35);
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;    /* fill the container and crop as needed */
    transition: transform 0.6s ease, box-shadow 0.6s ease;
  }

  .gallery-item img:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 30px rgba(0,0,0,0.45);
  }
}

.gallery-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.gallery-item {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.35);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.gallery-item img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
}

/* ===== Mobile Carousel ===== */
@media (max-width: 1024px) {
  .gallery-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 16px;
    padding-bottom: 10px;
  }

  .gallery-carousel::-webkit-scrollbar {
    display: none;
  }

  .gallery-item {
    flex: 0 0 70%;
    max-width: 300px;
  }
}

/* Hide carousel buttons by default */
.carousel-btn {
  display: none;
}

/* Show buttons only on mobile/tablet */
@media (max-width: 1024px) {
  .carousel-btn {
    display: block;
  }
}

.vanovate-features {
  position: relative;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
  color: #111;
  overflow: hidden;
  z-index: 1;
  background: linear-gradient(to bottom, #ffffff 0%, #ffeaea 40%, #e31b0c 100%);
}

/* Content container stays normal */
.vf-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  color: #111; /* default text color */
}

/* Image container */
.vf-image {
  flex: 1 1 350px;
  max-width: 420px;
  border: 3px solid #e31b0c;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 15px rgba(227, 27, 12, 0.3);
  transition: box-shadow 0.3s ease;
}

.vf-image img {
  width: 100%;
  display: block;
}

.vf-image:hover {
  box-shadow: 0 0 30px rgba(227, 27, 12, 0.8);
}

/* Features list text */
.vf-features-list {
  flex: 2 1 600px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Feature items */
.vf-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.vf-icon {
  font-size: 36px;
  color: #e31b0c;
  transition: color 0.3s ease, transform 0.3s ease;
}

.vf-item:hover .vf-icon {
  color: #ffcc00;
  transform: scale(1.25);
}

.vf-item h3 {
  margin: 0 0 6px;
  font-size: 1.3rem;
  color: #111;
}

.vf-item p {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
}

/* Responsive */
@media (max-width: 900px) {
  .vf-container {
    flex-direction: column;
  }
  .vf-features-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .vf-image {
    max-width: 100%;
  }
}

/* Feature items */
.vf-item {
  display: flex;
  flex-direction: column; /* stack heading and paragraph vertically */
  gap: 4px; /* small gap between h3 and p */
  align-items: flex-start; /* align to left */
}

/* Icon next to the text */
.vf-icon {
  font-size: 36px;
  color: #e31b0c;
  flex-shrink: 0;
  margin-bottom: 8px; /* spacing below icon */
  transition: color 0.3s ease, transform 0.3s ease;
}

.vf-item:hover .vf-icon {
  color: #ffcc00;
  transform: scale(1.25);
}

/* Bold heading */
.vf-item h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700; /* ensure bold */
  color: #111;
  line-height: 1.2; /* tight line height for stable layout */
}

/* Lighter paragraph text */
.vf-item p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 400; /* ensure normal/light text */
  color: #555;
  line-height: 1.4; /* spacing for readability */
}

/* Desktop: keep headings same width */
.vf-features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.vf-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px; /* reduced gap between image and text */
  color: #111; 
}

/* Image container */
.vf-image {
  flex: 1 1 300px;  /* slightly smaller base width */
  max-width: 380px; /* reduced max width */
  border: 3px solid #e31b0c;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 15px rgba(227, 27, 12, 0.3);
  transition: box-shadow 0.3s ease;
}

/* Text container */
.vf-features-list {
  flex: 1 1 500px; /* take the rest of space */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); /* slightly narrower columns */
  gap: 20px; /* reduced gap between items */
}


/* ===== Global ===== */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #111;
}

/* ===== Header ===== */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: #d60000;
  color: #fff;
}
header a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
header nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}
header nav ul li a.active {
  text-decoration: underline;
}
.btn-book-now {
  background: #fff;
  color: #d60000;
  padding: 8px 15px;
  border-radius: 6px;
  font-weight: bold;
}

/* ===== Hero Section ===== */
.hero-section {
  position: relative;
  padding: 80px 20px;
  text-align: left;
  color: #111;
}
.hero-section::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to bottom, #ffffff 60%, #d60000 40%);
  z-index: -1;
}
.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.hero-content p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* ===== Contact Section ===== */
.contact-section {
  background: #fff;
  padding: 60px 20px;
}
.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

/* Contact Form */
.contact-form-wrapper {
  flex: 1 1 400px;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
.contact-form-wrapper h2 {
  margin-bottom: 20px;
  color: #d60000;
}
.form-group {
  position: relative;
  margin-bottom: 20px;
}
.form-group i {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  color: #d60000;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 12px 12px 40px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
  outline: none;
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.btn-submit {
  background: #d60000;
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.btn-submit:hover {
  background: #ff0000;
}

/* Contact Map */
.contact-map-wrapper {
  flex: 1 1 500px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Slide animation */
@keyframes slideMap {
  0% { transform: translateX(-40px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}
.animate-slide {
  animation: slideMap 1s ease-out forwards;
}

/* ===== Footer ===== */
footer {
  background: #d60000;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
  }
  .contact-map-wrapper {
    margin-top: 30px;
  }
}


/* Contact Section Header */
.contact-header {
  text-align: left; /* align left, or center if you prefer */
  max-width: 800px; /* limit width so it doesn’t stretch too far */
  margin-bottom: 30px;
}

/* Heading */
.contact-header h1 {
  font-size: 2.5rem;      /* large, bold */
  font-weight: 700;        /* strong bold */
  color: #d60000;          /* Vanovate red */
  line-height: 1.2;        /* tight line spacing */
  margin-bottom: 15px;
}

/* Paragraph */
.contact-header p {
  font-size: 1.1rem;       /* slightly smaller */
  font-weight: 400;        /* normal weight */
  color: #333;             /* slightly dark for readability */
  line-height: 1.6;        /* good spacing for reading */
  margin: 0;               /* remove default spacing */
}

/* Common Logo Styling */
.logo {
  max-height: 60px;      /* adjust for header */
  width: auto;           /* maintain aspect ratio */
  display: block;
}

/* Header adjustments */
.site-header .logo {
  max-height: 80px;       /* fits nicely in header */
  max-width: 130px;
}

/* Footer adjustments */
.site-footer .logo {
  max-height: 50px;       /* smaller in footer */
  margin: 0 auto;         /* center horizontally */
  display: block;
}

/* Optional: adjust header/footer height */
.site-header {
  height: 80px;           /* header height */
  display: flex;
  align-items: center;    /* vertically center logo */
  padding: 0 20px;
  background-color: #d60000; /* matches site color */
}

.site-footer {
  padding: 20px 0;
  background-color: #111; /* dark footer */
  text-align: center;
}

/* Header & Menu Styling */
header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  background-color: #d60000;
}

/* Logo placeholder (adjust your logo width) */
header .logo {
  height: 60px;
  width: 150px;    /* increase width */
}

/* Desktop menu */
.nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-menu li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 10px;
  transition: background 0.3s;
}

.nav-menu li a:hover {
  background-color: #ff0000;
  border-radius: 4px;
}

/* Desktop "Book Now" button */
.btn-book-now.desktop-only {
  background-color: #fff;
  color: #d60000;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s, color 0.3s;
}

.btn-book-now.desktop-only:hover {
  background-color: #ffcc00;
  color: #111;
}

/* ===== Mobile Menu ===== */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* Mobile styles */
@media (max-width: 1024px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 80px; /* below header */
    left: 0;
    width: 100%;
    background-color: #d60000;
    flex-direction: column;
    align-items: center;
    display: none; /* hidden by default */
    gap: 10px;
    padding: 20px 0;
    z-index: 999;
  }

  .nav-menu.show {
    display: flex; /* shown when toggled */
  }

  .nav-menu li a {
    font-size: 18px;
    padding: 10px 15px;
  }

  .mobile-book {
    display: block;
    background-color: #fff;
    color: #d60000;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
  }

  .btn-book-now.desktop-only {
    display: none; /* hide desktop book button on mobile */
  }
}

/* ===== Stats / Counter Section ===== */
.stats-section {
  background-color: #ffffff !important; /* Force fully white */
  padding: 60px 20px;
  text-align: center;
  color: #111;
  position: relative; /* so it sits above other elements if needed */
  z-index: 10; /* above hero gradient */
  margin-top: -2px; /* optional, to remove tiny gap from hero gradient */
  box-shadow: 0 -5px 15px rgba(0,0,0,0.05); /* subtle separation */
}

/* Stats container */
.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

/* Individual stat */
.stat {
  flex: 1 1 200px;
}

/* Number */
.stat h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #d60000; /* red numbers */
}

/* Description */
.stat p {
  margin: 0;
  font-size: 1rem;
  color: #555;
}

/* CTA Button */
.stat.cta a.quote-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #d60000;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 0 6px 15px rgba(214, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.stat.cta a.quote-btn:hover {
  background-color: #ff0000;
  box-shadow: 0 6px 20px rgba(214, 0, 0, 0.5);
}

/* Responsive */
@media (max-width: 900px) {
  .stats-container {
    flex-direction: column;
    gap: 25px;
  }
  .stat h3 {
    font-size: 1.8rem;
  }
}

.hero-content h1 {
  flex-wrap: wrap;
}


/* =========================
   HERO CONTENT CLEAN FIX
   ========================= */
.services-hero {
  width: 100%;
}

.hero-content {
  max-width: 100%;
  padding: 0 16px;
  display: block !important; /* override flex/grid */
}

.hero-content h1 {
  display: block !important;  /* ensure block for wrapping */
  font-size: clamp(28px, 6vw, 44px);
  line-height: 1.2 !important;
  margin: 0;
  padding: 0;
  white-space: normal !important; 
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

.hero-content h1 span {
  display: inline !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: inherit !important;
  white-space: normal !important;
}

/* Google Map Wrapper Fix */
.contact-map-wrapper {
  width: 100%;
  max-width: 100%;      /* ensure it does not shrink */
  margin: 0 auto;       /* center horizontally */
  display: block;       /* override flex/grid if applied */
  text-align: center;   /* optional: center iframe inside */
}

.contact-map-wrapper iframe {
  width: 100%;
  max-width: 100%;
  display: block;
  margin: 0 auto;       /* ensure iframe is centered */
}

@media (max-width: 768px) {

  /* Contact Container */
  .contact-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 16px;          /* small horizontal padding */
    box-sizing: border-box;   /* ensure padding doesn’t overflow */
  }

  /* Contact Form Wrapper */
  .contact-form-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;           /* center horizontally */
    box-shadow: 0 4px 20px rgba(0,0,0,0.15); /* keep shadows */
    border-radius: 10px;      /* optional: rounded corners */
    padding: 20px;
    display: block;
  }

  /* Headings */
  .contact-form-wrapper h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
  }

  /* Form Inputs */
  .contact-form-wrapper .form-group {
    width: 100%;
    display: flex;
    flex-direction: column;  /* stack icon + input vertically on mobile */
    margin-bottom: 15px;
  }

  .contact-form-wrapper input,
  .contact-form-wrapper textarea {
    width: 100%;
    padding: 10px 12px;
    box-sizing: border-box;
  }

  /* Button */
  .contact-form-wrapper .btn-submit {
    width: 100%;
    padding: 12px;
    font-size: 16px;
  }
}
