/* === GLOBAL FONT & BASE STYLES === */
html, body {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
}
/* Headings */
h1, .h1 {
  font-weight: 700;
  letter-spacing: 1px;
}

h2, .h2 {
  font-weight: 700;
}

h3, .h3 {
  font-weight: 600;
}

/* Section Titles */
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Section Text */
.section-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}

/* === HEADER === */
.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgb(21, 74, 74);
  display: flex;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-inner {
  width: 100%;
  max-width: 1200px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.logo-inquiry {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo img {
  width: 60px;
}

.inquiry-text a {
  color: white;
  font-size: 14px;
}

.nav-links a {
  color: white;
  margin: 0 10px;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 4px;
  transition: background 0.3s;
}

.nav-links a:hover {
  background: white;
  color: rgb(21, 74, 74);
}
/* Sticky Header Base */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgb(21, 74, 74);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 20px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Shrink effect */
.main-header.shrink {
  padding: 10px 0;
  background-color: rgb(15, 55, 55); /* slightly darker if you like */
}

.logo img {
  transition: all 0.3s ease;
  width: 60px;
}

.main-header.shrink .logo img {
  width: 45px;
}


/* === HERO VIDEO === */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.video-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent; /* no dark overlay */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 800px;
}

.hero-title {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero-tagline,
.hero-text {
  font-size: 18px;
  margin-bottom: 15px;
}

.btn-book {
  background: white;
  color: rgb(21, 74, 74);
  padding: 12px 28px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-book:hover {
  background: rgb(21, 74, 74);
  color: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* === SECTION BASE === */
section {
  padding: 80px 20px;
}

.section-title {
  text-align: center;
  font-size: 36px;
  color: #333;
  margin-bottom: 20px;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #777;
}

.section-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #555;
}

/* === SERVICES SPLIT === */
.services-split {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

.service-card {
  background: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  width: 300px;
  transition: transform 0.3s;
  text-decoration: none;
  color: inherit;
}

.service-card img {
  width: 100%;
  height: 160px; /* shorter height for rectangular look */
  object-fit: cover;
  border-radius: 10px 10px 0 0; /* optional: rounded top corners */
}

.card-content {
  padding: 20px;
}

.service-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Force service card images to be rectangular */
.services-section .service-card img {
  height: 160px !important; /* shorter height for rectangle shape */
  object-fit: cover;
  border-radius: 10px 10px 0 0; /* optional rounded top corners */
}

/* Make service cards wider */
.services-section .service-card {
  width: 400px !important; /* was ~300–350px */
  flex: 0 0 400px !important; /* for horizontal scroll layout */
}

/* Make service titles stand out */
.services-section .card-content h3 {
  font-size: 1.5rem !important; /* bigger text */
  font-weight: 700 !important;  /* bold */
  color: rgb(21, 74, 74);       /* deep green for brand consistency */
}

.services-section .card-content h3 {
  letter-spacing: 0.5px;
}

/* === TRAVEL CATEGORIES === */
.rowitems {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 5px;
}

.container-box {
  background: white;
  border: 1px solid #ddd;
  padding: 10px;
  width: 350px;
  border-radius: 2px;
  text-align: center;
  transition: 0.3s;
}

.container-image img {
  width: 100px;
  height: 150px;
  object-fit: cover;
  margin-bottom: 5px;
}

.container-box:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transform: scale(1.03);
}
/* Disable hover effects in Our Travel Categories */
.categories img {
  transform: none !important;
  transition: none !important;
}
.categories .container-box:hover .container-image img {
  transform: none !important;
}


/* === PACKAGES === */
.package-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 10px;
}

.package-card {
  background: #fff;
  border: none; /* ✅ fixed border format */
  border-radius: 50px;
  overflow: hidden;
  width: 410px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.card-banner img {
  width: 350px;
  height: 200px;
  object-fit: cover;
}

/* Make package images reach card edges */
.package-card .card-banner img {
  display: block;
  width: 100%;
  height: 280px; /* enlarged */
  margin: 0;
  padding: 0;
  border-radius: 0;
  object-fit: cover;
}

.card-content {
  padding: 15px;
}

.pac-details {
  padding-left: 20px;
  margin: 15px 0;
  color: #555;
}

/* Reduce space between Categories and Packages */
.categories {
  padding-bottom: 40px !important;
}

.package {
  padding-top: 40px !important;
}



/* === TESTIMONIALS === */
.testimonials {
  background: #f7f7f7;
  padding: 60px 20px;
}

.testimonial-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial {
  background: white;
  padding: 20px;
  border-radius: 10px;
  max-width: 300px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.testimonial-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

/* === GALLERY === */
.gallery-list {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

.gallery-list img {
  width: 350px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}


/* Reduce space between Gallery and About Us */
.gallery {
  padding-bottom: 40px !important; /* reduce gap at bottom of gallery */
}

.about {
  padding-top: 40px !important; /* reduce gap at top of about section */
}

/* Make all text in gallery section blue */
.gallery {
  color: #005fa3;
}

.gallery .section-title,
.gallery .section-subtitle,
.gallery .section-text {
  color: #005fa3 !important;
}


/* === NEWSLETTER === */
.footer-newsletter {
  background: #eee;
  padding: 60px 20px;
  text-align: center;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.newsletter-form input {
  padding: 12px 20px;
  font-size: 16px;
  border: none;
  border-radius: 25px;
  width: 250px;
}

.newsletter-form button {
  padding: 12px 20px;
  font-size: 16px;
  background: rgb(21, 74, 74);
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter-form button:hover {
  background: black;
}
/* === STICKY HEADER BASE === */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 12px 5%;
  background: rgba(21, 74, 74, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

/* === SHRINK EFFECT === */
.main-header.shrink {
  padding: 6px 5%;
  background: rgba(15, 55, 55, 0.95);
}

.logo img {
  width: 60px;
  transition: 0.3s ease;
}

.main-header.shrink .logo img {
  width: 45px;
}

/* === NAV LINKS === */
.nav-links {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  color: white;
  padding: 10px 14px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s;
}

.nav-links a:hover {
  background-color: white;
  color: rgb(21, 74, 74);
}

/* === LOGO + INQUIRY STACK === */
.logo-inquiry {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.inquiry-text p {
  color: white;
  font-size: 14px;
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
    padding-top: 10px;
  }

  .main-header {
    padding: 15px 20px;
  }

  .main-header.shrink {
    padding: 8px 20px;
  }

  .nav-links a {
    padding: 8px 10px;
    width: 100%;
  }

  .logo img {
    width: 50px;
  }

  .main-header.shrink .logo img {
    width: 40px;
  }
}
/* HAMBURGER ICON */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* MOBILE MENU HIDDEN INITIALLY */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(21, 74, 74, 0.95);
    width: 100%;
    margin-top: 15px;
    padding: 10px 0;
    border-radius: 8px;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    padding: 12px 20px;
    width: 100%;
    color: white;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }
}
.whatsapp-float {
  background: #25d366;
  color: white;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.whatsapp-float:hover {
  background: #1ebe5d;
}
/* === FAQ SECTION === */
.faq-section {
  background-color: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

.faq-section .section-title {
  font-size: 36px;
  margin-bottom: 40px;
  color: #333;
}

.faq-item {
  max-width: 700px;
  margin: 0 auto 30px auto;
  text-align: left;
  background-color: white;
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
  font-size: 20px;
  color: rgb(21, 74, 74);
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 16px;
  color: #555;
}


/* Reduce space between Blog and FAQ */
.blog-preview {
  padding-bottom: 40px !important; /* was 40px default from section padding */
}

.faq-section {
  padding-top: 40px !important; /* was 80px default */
}

/* === CTA STRIP === */
.cta-strip {
  background-color: rgb(21, 74, 74);
  padding: 60px 20px;
  text-align: center;
  color: white;
}

.cta-strip .section-text {
  font-size: 24px;
  margin-bottom: 20px;
}

.cta-strip .btn-book {
  background-color: white;
  color: rgb(21, 74, 74);
  font-size: 16px;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.cta-strip .btn-book:hover {
  background-color: black;
  color: white;
}
/* === FOOTER === */
.footer {
  background-color: rgb(21, 74, 74);
  color: white;
  padding-top: 60px;
  font-family: 'Poppins', sans-serif;
}

.footer-top {
  padding: 40px 20px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-brand,
.footer-contact,
.footer-newsletter {
  flex: 1 1 300px;
}

.footer-logo {
  width: 60px;
  margin-bottom: 15px;
}

.footer-text {
  font-size: 16px;
  line-height: 1.6;
}

.contact-title {
  font-size: 20px;
  margin-bottom: 15px;
}

.contact-info li {
  margin-bottom: 10px;
  font-size: 16px;
}

.contact-info a {
  color: white;
  text-decoration: none;
}

.contact-info ion-icon {
  margin-right: 8px;
  vertical-align: middle;
}

.newsletter-form {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.newsletter-form input {
  padding: 12px;
  font-size: 15px;
  border-radius: 20px;
  border: none;
  flex: 1 1 250px;
}

.newsletter-form button {
  padding: 12px 25px;
  background-color: white;
  color: rgb(21, 74, 74);
  font-weight: 600;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter-form button:hover {
  background-color: black;
  color: white;
}

/* Bottom Footer */
.site-footer {
  background-color: rgb(15, 55, 55);
  padding: 20px;
  text-align: center;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  color: white;
  margin: 0 5px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ccc;
}
/* === INQUIRE FORM SECTION === */
.contact-form-section {
  padding: 80px 20px;
  background-color: #f4f4f4;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 14px 18px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #ccc;
  background: white;
  resize: vertical;
  font-family: 'Poppins', sans-serif;
  width: 100%;
}

.contact-form textarea {
  min-height: 120px;
}

.contact-form button.btn-book {
  background-color: rgb(21, 74, 74);
  color: white;
  font-size: 16px;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
}

.contact-form button.btn-book:hover {
  background-color: black;
}

/* Responsive */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
}
/* === SERVICE IMAGES AS ROUNDED RECTANGLES === */
.container-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 20px; /* <- Rounded rectangle */
  transition: transform 0.4s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(21, 74, 74, 0.3);
}

/* Hover effect: rotate + zoom */
.container-box:hover .container-image img {
  transform: rotate(5deg) scale(1.05);
}

/* === SERVICES SECTION CONTAINER === */
.services-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.services-section .section-title {
  font-size: 36px;
  margin-bottom: 50px;
  color: #333;
}

/* === CENTER & EXPAND CARDS === */
.services-split {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.services-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

/* === SERVICE CARD STYLING === */
.service-card {
  width: 350px;
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

/* === SERVICE IMAGES === */
.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 0 0 20px 20px;
  transition: transform 0.4s ease;
}

.service-card:hover img {
  transform: scale(1.08) rotate(3deg);
}

/* === TEXT CONTENT === */
.card-content {
  padding: 25px 20px;
}

.card-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: rgb(21, 74, 74);
}

.card-content p {
  font-size: 16px;
  color: #555;
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 768px) {
  .service-card {
    width: 90%;
  }

  .services-split {
    flex-direction: column;
    align-items: center;
  }
}
.travel-categories img {
  transform: none !important;
  transition: none !important;
}
.services-split {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px; /* Increase this from 30px or 40px */
}
/* === MISSION SECTION === */
.mission-section {
  padding: 60px 20px;
  background-color: rgb(21, 74, 74); /* matches your header */
  color: white;
  text-align: center;
  width: 100%;
}

.mission-section .section-title,
.mission-section .section-text {
  color: white !important; /* force white text */
}

.mission-section h2 {
  margin-bottom: 15px;
  font-size: 32px;
}

.mission-section p {
  margin: 0 auto;
  max-width: 700px;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
}




.blog-preview {
  padding: 40px 20px;
  background: #f8f8f8;
}
.blog-card {
  background: #fff;
  padding: 20px;
  border-left: 4px solid #0077cc;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

/* Make all section backgrounds span full width */
section {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/* Make containers inside sections use full width */
section .container {
  max-width: 100% !important;
  padding-left: 20px;
  padding-right: 20px;
}
.mission-section,
.cta-strip,
.gallery,
.services-section,
.package,
.testimonials,
.faq-section,
.footer {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.mission-section .container,
.cta-strip .container,
.gallery .container,
.services-section .container,
.package .container,
.testimonials .container,
.faq-section .container,
.footer .container {
  max-width: 100% !important;
  padding-left: 20px;
  padding-right: 20px;
}


/* === BACKGROUNDS === */

/* === MISSION SECTION === */
.mission-section {
  padding: 60px 20px;
  background-color: rgb(21, 74, 74) !important; /* brand green */
  color: white;
  text-align: center;
  width: 100%;
}

.mission-section .section-title,
.mission-section .section-text {
  color: white !important;
}

/* === SERVICES SECTION === */
.services-section {
  background-color: #f5f9ff !important; /* light blue tint */
  width: 100%;
}

/* === CATEGORIES SECTION === */
.categories {
  background-color: #fafafa !important; /* light gray */
  width: 100%;
}

/* === PACKAGES SECTION === */
.package {
  background-color: #f5f9ff !important; /* white for clean look */
  width: 100%;
}

/* === TESTIMONIALS SECTION === */
.testimonials {
  background-color: #e4cbcbce !important;
  width: 100%;
}

/* === GALLERY SECTION === */
.gallery {
  background-color: #005fa3 !important; /* blue fallback */
  background-image: url('../images/gallery.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
}

/* === FAQ SECTION === */
.faq-section {
  background-color: #d4999996 !important;
  width: 100%;
}

/* === CTA STRIP === */
.cta-strip {
  background-color: rgb(21, 74, 74) !important;
  color: white;
  width: 100%;
}

/* === ABOUT US === */
.about{
  background-color: rgba(190, 227, 236, 0.473) !important;
  color: white;
  width: 100%;
}

/* === FOOTER === */
.footer {
  background-color: rgb(15, 55, 55) !important;
  color: white;
  width: 100%;

}

/* === INQUIRY === */
.contact-form-section{
  background-color: rgba(188, 247, 247, 0.377) !important;
  color: white;
  width: 100%;
}



.gallery {
  background: url('../images/gallery.webp') no-repeat center center;
  background-size: cover;
  background-attachment: fixed; /* parallax effect */
}
.gallery .section-title,
.gallery .section-subtitle,
.gallery .section-text {
  color: white; /* stands out against background */
}





.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  padding: 12px 16px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2)
}


/* === GLOBAL STYLES === */
html, body {
  font-family: 'Montserrat', sans-serif;
  color: #555;
  line-height: 1.6;
  margin: 0; padding: 0;
  background: #fff;
}

/* Headings */
h1, h2, h3 { color: #222; margin-bottom: 15px; }
.section-title { font-size: 32px; font-weight: 700; text-align: center; }
.section-text { max-width: 800px; margin: 0 auto 25px; text-align: center; }

/* === HEADER === */
.main-header {
  position: fixed; top: 0; left: 0; width: 100%;
  background: rgba(30,111,92,0.9);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: 0.3s ease;
  z-index: 1000;
}
.main-header.shrink { background: rgba(20,85,70,0.95); padding: 8px 0; }
.nav-links a {
  color: white; padding: 10px 14px;
  font-weight: 500; text-decoration: none;
  border-radius: 4px; transition: 0.3s;
}
.nav-links a:hover { background: white; color: #1e6f5c; }

/* === HERO === */
.hero { height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; }
.video-overlay { background: rgba(0, 0, 0, 0); }
.hero-title { font-size: 48px; color: white; }
.hero-text { color: #f4f4f4; }

/* Buttons */
.btn-book {
  background: #0077cc; color: white;
  padding: 12px 28px; font-weight: 600;
  border-radius: 25px; text-decoration: none;
  transition: 0.3s;
}
.btn-book:hover { background: #1e6f5c; }

/* === SECTION BACKGROUNDS === */
.mission-section { background: #1e6f5c; color: white; }
.services-section { background: #f4f9f9; }
.categories { background: #fff; }
.package { background: #f4f9f9; }
.testimonials { background: #fafafa; }
.gallery {
  background: url('../images/gallery.webp') no-repeat center center fixed;
  background-size: cover; color: white;
}
.faq-section { background: #f4f9f9; }
.cta-strip { background: #1e6f5c; color: white; }
.about { background: #eef7f9; color: #333; }
.contact-form-section { background: #f4f9f9; }
.footer { background: #143d34; color: white; }

/* === CARDS === */
.service-card, .package-card, .testimonial, .container-box {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}
.service-card:hover, .package-card:hover, .testimonial:hover, .container-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.card-content h3 { color: #1e6f5c; }

/* Testimonials */
.testimonial-img {
  width: 90px; height: 90px;
  border-radius: 50%; margin-bottom: 3px;
}

/* Gallery */
.gallery-list { display: flex; flex-wrap: wrap; gap: 25px; justify-content: center; }
.gallery-list img {
  width: 370px; height: 250px;
  border-radius: 8px; object-fit: cover;
}

/* Footer */
.site-footer {
  background: #0e2a24;
  padding: 20px; text-align: center;
  font-size: 14px;
}
.footer-links a { color: #ddd; text-decoration: none; margin: 0 6px; }
.footer-links a:hover { color: #0077cc; }

/* Responsive */
@media (max-width: 768px) {
  .nav-links { flex-direction: column; width: 100%; }
  .service-card, .package-card, .testimonial, .container-box { width: 90%; }
  .gallery-list img { width: 100%; height: auto; }
}



/* ==== MOBILE SCROLL/SPACE FIX ==== */

/* Prevent horizontal overflow across the site */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Safety: media should never exceed viewport */
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Consistent sizing math */
* { box-sizing: border-box; }

/* Fix parallax issues that create gaps on phones */
@media (max-width: 768px) {
  .gallery { background-attachment: scroll !important; }
}

/* Remove hard widths that break mobile and cause side space */
@media (max-width: 768px) {
  .services-section .service-card {
    width: 100% !important;
    max-width: 520px;
    flex: 1 1 auto !important;
  }

  .package-card,
  .container-box,
  .testimonial {
    width: 100%;
    max-width: 520px;
  }

  /* Make common wrappers safe */
  .header-inner,
  .nav-links,
  .services-split,
  .package-list,
  .gallery-list,
  .rowitems {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Hide the vertical scrollbar track on mobile (scroll still works) */
  body {
    -ms-overflow-style: none;   /* IE/Edge */
    scrollbar-width: none;      /* Firefox */
  }
  body::-webkit-scrollbar { display: none; }  /* Chrome/Safari */
}


.van-showcase {
  background: #eef7f9;
  text-align: center;
  padding: 80px 20px;
}

.van-showcase .van-image {
  max-width: 600px;
  width: 100%;
  margin-top: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}
