/* GOOGLE FONTS IMPORT */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Poppins:wght@300;400;500;600&display=swap');

:root {
  --primary-color: #1e5631;
  /* Deep Forest Green */
  --secondary-color: #d4af37;
  /* Gold for luxury accents */
  --accent-color: #a8cf45;
  /* Fresh Green */
  --dark-bg: #0f1c15;
  /* Very dark green-black */
  --light-bg: #f8f9fa;
  --text-color: #333;
  --white: #ffffff;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-color);
}

a {
  text-decoration: none;
  transition: var(--transition);
}

/* ===========================
   HEADER & NAVBAR
   =========================== */
.navbar {
  transition: var(--transition);
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.95);
  /* Slight transparency */
  backdrop-filter: blur(10px);
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  color: var(--primary-color) !important;
  font-weight: 700;
  font-size: 1.5rem;
}

.nav-link {
  font-weight: 500;
  color: var(--primary-color) !important;
  margin: 0 10px;
  position: relative;
}

.nav-link_contact {
  font-weight: 500;
  color: #ffffff;
  margin: 0 10px;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  bottom: 0;
  left: 0;
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Custom Dropdown Caret Styling */
.navbar .dropdown-toggle::after {
  border: 0 !important;
  margin: 0 !important;
}

.dropdown-icon {
  font-size: 0.75rem;
  margin-left: 5px;
  transition: transform 0.2s ease-in-out;
  display: inline-block;
  vertical-align: middle;
}

.dropdown-toggle.show .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-top: 3px solid var(--secondary-color);
}

.dropdown-item:hover {
  background-color: var(--primary-color);
  color: var(--white);
}



.dropdown-menu {
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===========================
   HERO SECTION (HOME)
   =========================== */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 20px;
  animation: fadeInUp 1.2s ease-out;
}

.hero-content h1 {
  font-size: clamp(1.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  letter-spacing: 3px;
}

.hero-content p {
  font-size: 1.8rem;
  margin-bottom: 30px;
  font-weight: 300;
}

/* ===========================
   PAGE HERO (INNER PAGES)
   =========================== */
.page-hero {
  position: relative;
  height: 60vh;
  background-position: center 30%;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 0;
  /* Removing bottom margin to connect seamlessly */
}

/* Default generic background incase inline style is missing */
.page-hero.default-bg {
  background-image: url('../images/hill_country.jpg');
}

.page-hero .hero-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.25) 100%);
  /* Brighter overlay with gradient for vibrant background images */
}

.page-hero h1 {
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 0, 0, 0.4);
}

.page-hero p {
  position: relative;
  z-index: 2;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 10px auto 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.4);
  font-weight: 500;
}


/* BUTTONS */
.btn-primary {
  background-color: #198754;
  border: none;
  padding: 12px 30px;
  border-radius: 10px;
  font-weight: 600;
  color: #fff;
  transition: var(--transition);
}

.btn-primary:hover {
  background-color: #198754;
  /* Darker Gold */
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline-light {
  border: 2px solid var(--white);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
}

.btn-outline-light:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

/* ===========================
   WHY CHOOSE US & SECTIONS
   =========================== */
.features-section {
  padding: 100px 0;
  background-color: var(--light-bg);
}

.feature-box {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  height: 100%;
}

.feature-box:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.feature-icon i {
  font-size: 50px;
  color: #198754;

}

.feature-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* ===========================
   FEATURED TOURS / GRIDS
   =========================== */
.featured-tours {
  padding: 100px 0;
  background-color: var(--white);
}

.card-custom {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  background: #fff;
}

.card-custom:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-img-top {
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.card-custom:hover .card-img-top {
  transform: scale(1.05);
}

.card-body {
  padding: 25px;
}

.card-title {
  font-family: 'Playfair Display', serif;
  color: var(--primary-color);
  font-weight: 600;
}

.day-tour-card {
  /* Specific styling matching custom cards */
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.day-tour-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.day-tour-card img {
  height: 250px;
  object-fit: cover;
}


/* ===========================
   CTA SECTION (PREMIUM GREEN)
   =========================== */
.cta-section {
  position: relative;
  padding: 120px 0;
  background: url('../images/hill_country.jpg') center/cover fixed no-repeat;
  text-align: center;
  overflow: hidden;
}

.cta-overlay-premium {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(15, 28, 21, 0.7), rgba(25, 135, 84, 0.4));
  z-index: 1;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 28, 21, 0.75);
  /* Dark forest green overlay for high readability */
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  color: var(--accent-color) !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.cta-box {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 60px 40px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.cta-icon {
  font-size: 4rem;
  color: #a8cf45;
  /* Lime accent for visibility */
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.cta-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  font-weight: 300;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta-premium {
  background: #198754;
  color: #fff;
  padding: 18px 50px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(25, 135, 84, 0.4);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.btn-cta-premium:hover {
  background: #146c43;
  color: #fff;
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 40px rgba(25, 135, 84, 0.6);
}

@media (max-width: 768px) {
  .hero {
    height: 75vh !important;
    min-height: 480px;
  }

  .cta-title {
    font-size: 2.2rem;
  }

  .cta-box {
    padding: 40px 20px;
  }

  .cta-icon {
    font-size: 3rem;
  }

  /* Hero buttons — stack vertically on mobile */
  .hero-content .d-flex {
    flex-direction: column;
    align-items: center;
    gap: 12px !important;
  }

  .hero-content .btn-lg {
    font-size: 0.95rem;
    padding: 12px 32px;
    width: 100%;
    max-width: 260px;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 24px;
  }
}

/* ===========================
   FOOTER
   =========================== */
footer {
  background-color: var(--dark-bg) !important;
  color: #ccc;
}

footer h5 {
  color: var(--white);
  margin-bottom: 20px;
}

.social-icon {
  font-size: 1.5rem;
  color: #fff;
  margin-right: 15px;
  transition: var(--transition);
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
  transform: translateY(-3px);
  color: #fff;
}

.social-icon.facebook:hover {
  background: #3b5998;
}

.social-icon.instagram:hover {
  background: #e4405f;
}

.social-icon.tiktok:hover {
  background: #010101;
}

.social-icon.youtube:hover {
  background: #cd201f;
}

.social-icon.tripadvisor:hover {
  background: #34e0a1;
}

/* Optional: if you want them colored by default but faint */
.social-icon.facebook {
  color: #3b5998;
  background: rgba(59, 89, 152, 0.1);
}

.social-icon.instagram {
  color: #e4405f;
  background: rgba(228, 64, 95, 0.1);
}

.social-icon.tiktok {
  color: #fff;
  background: rgba(1, 1, 1, 0.1);
}

.social-icon.youtube {
  color: #cd201f;
  background: rgba(205, 32, 31, 0.1);
}

.social-icon.tripadvisor {
  color: #34e0a1;
  background: rgba(52, 224, 161, 0.1);
}

/* Ensure icons turn white on hover */
.social-icon:hover {
  color: #fff !important;
}

.contact-link {
  transition: var(--transition);
  display: inline-block;
}

.contact-link:hover {
  color: var(--secondary-color) !important;
  transform: translateX(5px);
}

.contact-info-icon {
  font-size: 1.1rem;
  width: 25px;
  text-align: center;
  color: var(--secondary-color);
  transition: var(--transition);
}

.contact-link:hover .contact-info-icon {
  color: var(--white) !important;
}

/* ===========================
   TAILOR MADE / FORMS
   =========================== */
.form-control,
.form-select {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.plan-box {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.plan-box h4 {
  background: var(--primary-color);
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 25px;
}

/* Icons for Tailor Made steps */
.icon-step i {
  font-size: 2.5rem;
  color: var(--success-color);
  margin-bottom: 15px;
}

/* ITINERARY CARDS (SPECIFIC) */
.itinerary-card-custom {
  transition: var(--transition);
  border-radius: 15px !important;
  overflow: hidden;
}

.itinerary-card-custom:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.itinerary-card-custom img {
  height: 250px;
  object-fit: cover;
}

.itinerary-card-custom .card-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

/* NAVIGATION ANCHORS STYLING */
.sticky-top .btn-outline-success {
  border-color: var(--secondary-color);
  color: var(--primary-color);
}

.sticky-top .btn-outline-success:hover {
  background-color: var(--secondary-color);
  color: #fff;
  border-color: var(--secondary-color);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===========================
   TESTIMONIALS SECTION
   =========================== */
.testimonial-section {
  position: relative;
  padding: 100px 0;
  background: var(--dark-bg);
  /* Solid dark forest green */
  overflow: hidden;
  color: #fff;
}

.testimonial-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(25, 135, 84, 0.1), transparent),
    radial-gradient(circle at bottom left, rgba(25, 135, 84, 0.05), transparent);
  z-index: 1;
}

.title-line {
  width: 80px;
  height: 3px;
  background: #198754;
  margin-top: 15px;
  border-radius: 2px;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 50px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  margin: 20px 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  border-color: #198754;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.quote-icon {
  font-size: 3rem;
  color: #198754;
  opacity: 0.8;
  margin-bottom: 25px;
  display: block;
}

.testimonial-text {
  font-size: 1.25rem;
  line-height: 1.8;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  font-weight: 300;
}

.stars {
  color: #198754;
  font-size: 1rem;
  letter-spacing: 5px;
}

.testimonial-footer {
  margin-top: 20px;
}

.testimonial-author {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #198754;
  margin-bottom: 5px;
  font-weight: 600;
}

.testimonial-location {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Custom Carousel Controls */
.custom-ctrl {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.custom-ctrl:hover {
  background: #198754;
  border-color: #198754;
  color: #fff;
}

.custom-ctrl i {
  font-size: 1.2rem;
}

.carousel-control-prev.custom-ctrl {
  left: -70px;
}

.carousel-control-next.custom-ctrl {
  right: -70px;
}

@media (max-width: 1200px) {
  .carousel-control-prev.custom-ctrl {
    left: 0;
  }

  .carousel-control-next.custom-ctrl {
    right: 0;
  }
}

.custom-indicators {
  margin-bottom: -50px;
}

.custom-indicators button {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3) !important;
  border: none !important;
  margin: 0 5px !important;
  transition: var(--transition) !important;
}

.custom-indicators button.active {
  background-color: #198754 !important;
  width: 30px !important;
  border-radius: 10px !important;
}

/* ===========================
   TRIPADVISOR CUSTOM STYLES
   =========================== */
:root {
  --tripadvisor-color: #00af87;
  /* TripAdvisor signature green */
  --tripadvisor-dark: #008768;
}

.ta-badge-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background: rgba(0, 175, 135, 0.1);
  border: 1px solid rgba(0, 175, 135, 0.2);
  padding: 12px 24px;
  border-radius: 50px;
  max-width: fit-content;
  margin: 0 auto 30px auto;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
}

.ta-badge-icon {
  font-size: 1.5rem;
  color: var(--tripadvisor-color);
}

.ta-badge-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.5px;
  margin: 0;
}

.ta-badge-text span {
  color: var(--tripadvisor-color);
  font-weight: 700;
}

/* TripAdvisor Rating Bubbles */
.ta-bubbles {
  display: inline-flex;
  gap: 4px;
  margin-bottom: 12px;
}

.ta-bubble {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--tripadvisor-color);
  display: inline-block;
}

.ta-bubble.empty {
  background-color: transparent;
  border: 2px solid var(--tripadvisor-color);
}

/* TripAdvisor Card Adjustments */
.testimonial-card.ta-card {
  padding: 40px;
  text-align: left;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card.ta-card:hover {
  border-color: var(--tripadvisor-color);
  background: rgba(255, 255, 255, 0.06);
}

.ta-card-body {
  display: flex;
  flex-direction: column;
}

.ta-review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 15px;
}

.ta-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--tripadvisor-color);
  font-weight: 600;
  border: 2.5px solid var(--tripadvisor-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.ta-reviewer-info {
  display: flex;
  flex-direction: column;
}

.ta-reviewer-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.ta-reviewer-meta {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

.ta-review-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.ta-review-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 15px;
  font-style: normal;
  font-weight: 300;
}

/* Action Buttons */
.ta-buttons-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 80px;
}

.btn-ta {
  background: var(--tripadvisor-color);
  color: #fff;
  border: none;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 8px 20px rgba(0, 175, 135, 0.25);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.btn-ta:hover {
  background: var(--tripadvisor-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0, 175, 135, 0.4);
}

.btn-ta-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.btn-ta-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: #fff;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

/* Override carousel controls & indicators hover for TripAdvisor style */
.testimonial-section .custom-ctrl:hover {
  background: var(--tripadvisor-color);
  border-color: var(--tripadvisor-color);
}

.testimonial-section .custom-indicators button.active {
  background-color: var(--tripadvisor-color) !important;
}

/* RESPONSIVE */
@media (max-width: 1400px) {
  .nav-link {
    margin: 0 3px !important;
    padding-left: 5px !important;
    padding-right: 5px !important;
    font-size: 0.85rem !important;
  }

  .nav-link_contact {
    margin: 0 3px !important;
    font-size: 0.85rem !important;
  }

  .navbar-brand img {
    height: 45px !important;
  }

  .navbar-brand span {
    font-size: 1.1rem !important;
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 30px 20px;
  }

  .testimonial-card.ta-card {
    padding: 25px 15px;
  }

  .ta-review-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .ta-avatar {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }

  .ta-reviewer-name {
    font-size: 1rem;
  }

  .ta-reviewer-meta {
    font-size: 0.75rem;
  }

  .ta-review-title {
    font-size: 1rem;
  }

  .ta-review-text {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .ta-badge-container {
    padding: 10px 16px;
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .ta-badge-text {
    font-size: 0.8rem;
  }

  .ta-badge-icon {
    font-size: 1.3rem;
  }

  /* Hide carousel arrows on mobile — use swipe */
  .testimonial-section .carousel-control-prev.custom-ctrl,
  .testimonial-section .carousel-control-next.custom-ctrl {
    display: none;
  }

  /* Give carousel inner proper padding since arrows are hidden */
  .testimonial-section .carousel-inner {
    padding: 0;
  }

  /* TripAdvisor buttons stack on mobile */
  .ta-buttons-container {
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
    gap: 10px;
  }

  .btn-ta,
  .btn-ta-outline {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.8rem;
  }

  .testimonial-text {
    font-size: 1.1rem;
  }

  .hero-content h1 {
    letter-spacing: 2px;
  }

  .page-hero h1 {
    font-size: 2.2rem;
  }

  /* Footer responsive & centering on mobile */
  footer {
    text-align: center;
  }

  footer .social-icon {
    margin: 0 6px 12px 6px !important;
  }

  footer .contact-link {
    font-size: 0.85rem;
    word-break: break-all;
    overflow-wrap: break-word;
    display: inline-flex;
    align-items: center;
  }

  footer .contact-link:hover {
    transform: none !important;
  }

  footer .contact-info-icon {
    font-size: 1rem;
    min-width: 20px;
    flex-shrink: 0;
  }

  footer .col-md-5 .mt-4 p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
  }

  footer .col-md-5 .mt-4 p a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  footer .col-md-5 .mt-4 p a i {
    margin-top: 0;
    margin-right: 0 !important;
  }

  footer h5 {
    font-size: 1.1rem;
    margin-top: 15px;
  }

  footer p {
    font-size: 0.9rem;
  }

  footer ul {
    padding: 0;
  }

  footer ul li {
    margin-bottom: 12px;
  }

  footer ul li a {
    display: inline-block;
    padding: 4px 8px;
    transition: transform 0.3s ease;
  }

  footer ul li a:hover {
    transform: translateY(-2px);
  }

  /* Testimonial section padding */
  .testimonial-section {
    padding: 60px 0;
  }

  .custom-indicators {
    margin-bottom: -30px;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .hero {
    height: 65vh !important;
    min-height: 400px;
  }

  .hero-content h1 {
    letter-spacing: 1px;
  }

  .hero-content p {
    font-size: 0.95rem !important;
  }

  .testimonial-card.ta-card {
    padding: 20px 12px;
  }

  .ta-review-title {
    font-size: 0.95rem;
  }

  .ta-review-text {
    font-size: 0.85rem;
  }

  .ta-bubbles {
    margin-bottom: 8px;
  }

  .ta-bubble {
    width: 11px;
    height: 11px;
  }

  footer .contact-link {
    font-size: 0.8rem;
  }

  .ta-buttons-container {
    margin-top: 40px;
  }

  .btn-ta,
  .btn-ta-outline {
    font-size: 0.75rem;
    padding: 10px 16px;
  }
}

/* ===========================
   MULTI-STEP FORM
   =========================== */
/* ===========================
   MULTI-STEP FORM & LUXURY FORMS
   =========================== */
.step-form-container {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(15, 28, 21, 0.08);
  border: 1px solid rgba(30, 86, 49, 0.08);
  transition: var(--transition);
}

.step-form-container:hover {
  box-shadow: 0 25px 60px rgba(15, 28, 21, 0.12);
}

.step-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, #123d21 100%);
  padding: 25px 20px;
  text-align: center;
  color: #fff;
  border-bottom: 3px solid var(--secondary-color);
}

.step-header h4 {
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 5px;
}

.step-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
  padding: 0 10px;
}

.step-indicator::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  height: 2px;
  background: #e0e8e3;
  z-index: 1;
}

.step-indicator-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  flex: 1;
  text-align: center;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #dcdfdc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #8fa095;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.step-indicator-item.active .step-num {
  border-color: var(--secondary-color);
  background: var(--secondary-color);
  color: #fff;
  transform: scale(1.15);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.step-indicator-item.completed .step-num {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.step-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #8fa095;
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.step-indicator-item.active .step-label {
  color: var(--primary-color);
  font-weight: 700;
}

.step-indicator-item.completed .step-label {
  color: var(--primary-color);
}

.form-step {
  display: none;
  animation: fadeInStep 0.4s ease-out forwards;
}

.form-step.active {
  display: block;
}

@keyframes fadeInStep {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-title {
  font-size: 1.15rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  font-weight: 700;
  border-bottom: 2px solid var(--secondary-color);
  display: inline-block;
  padding-bottom: 5px;
}

.form-control,
.form-select {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #cedcd3;
  background-color: #fafbfa;
  font-size: 0.9rem;
  color: #2b3a30;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  background-color: #fff;
  box-shadow: 0 0 0 0.25rem rgba(30, 86, 49, 0.12);
  outline: 0;
}

.btn-step {
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-next {
  background: var(--primary-color);
  color: #fff;
  border: none;
}

.btn-next:hover {
  background: #123d21;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(30, 86, 49, 0.2);
}

.btn-prev {
  background: #f0f4f1;
  color: #526659;
  border: none;
}

.btn-prev:hover {
  background: #e1e8e3;
  transform: translateY(-2px);
}

.interest-tag {
  cursor: pointer;
  display: inline-block;
}

.interest-tag input {
  display: none;
}

.interest-tag span {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 50px;
  background: #f1f5f2;
  color: #43574b;
  font-size: 0.8rem;
  font-weight: 500;
  margin: 4px;
  transition: all 0.25s ease;
  border: 1px solid #e1e8e4;
}

.interest-tag:hover span {
  background: #e4ece7;
  color: var(--primary-color);
  transform: scale(1.03);
}

.interest-tag input:checked+span {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
  box-shadow: 0 4px 10px rgba(30, 86, 49, 0.2);
}

.is-invalid {
  border-color: #dc3545 !important;
  background-image: none !important;
}

.is-invalid:focus {
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.2) !important;
}

/* Luxury Step Card Styles for tailor-made page */
.luxury-step-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.luxury-step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(30, 86, 49, 0.08);
  border-color: rgba(212, 175, 55, 0.3);
}

.luxury-step-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(212, 175, 55, 0.08);
  font-family: 'Poppins', sans-serif;
  line-height: 1;
  transition: var(--transition);
}

.luxury-step-card:hover .luxury-step-number {
  color: rgba(212, 175, 55, 0.16);
  transform: scale(1.1);
}

.luxury-step-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(30, 86, 49, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--secondary-color);
  transition: var(--transition);
  border: 1px solid rgba(212, 175, 55, 0.15);
}

.luxury-step-card:hover .luxury-step-icon {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #b89527 100%);
  color: #fff;
  transform: rotate(10deg);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Custom premium guarantee cards for Green Valley Distinction */
.luxury-feature-card {
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border-radius: 20px;
  padding: 40px 30px;
  border: 1px solid rgba(30, 86, 49, 0.05);
  box-shadow: 0 10px 35px rgba(15, 28, 21, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
}

.luxury-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(15, 28, 21, 0.1);
  border-color: rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, #ffffff 0%, #faf9f3 100%);
}

.luxury-feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(30, 86, 49, 0.08) 0%, rgba(212, 175, 55, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.2rem;
  color: var(--secondary-color);
  transition: all 0.4s ease;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.luxury-feature-card:hover .luxury-feature-icon {
  background: linear-gradient(135deg, var(--primary-color) 0%, #123d21 100%);
  color: var(--secondary-color);
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(30, 86, 49, 0.15);
}

.gold-accent-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-color) 0%, #b89527 100%);
  border-radius: 2px;
  transition: width 0.3s ease;
}

section:hover .gold-accent-line {
  width: 100px;
}

/* ===========================
   CONTACT & SOCIAL BUTTONS
   =========================== */
.btn-whatsapp {
  background-color: #25D366 !important;
  color: white !important;
  border: none !important;
}

.btn-whatsapp:hover {
  background-color: #128C7E !important;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.btn-messenger {
  background-color: #0084FF !important;
  color: white !important;
  border: none !important;
}

.btn-messenger:hover {
  background-color: #006ACC !important;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 132, 255, 0.4);
}

.contact-info-card {
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

.contact-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.contact-link:hover .contact-icon-circle {
  transform: scale(1.1);
}

/* About Us Stats Counter Numbers Font */
.about-stat-number {
  font-family: 'Poppins', sans-serif !important;
  font-weight: 800;
  font-size: 3.5rem;
  color: var(--secondary-color) !important;
  /* Premium Gold color */
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 10px;
}

/* ===========================
   ABOUT US PAGE REDESIGN
   =========================== */
.about-intro-box {
  background-color: var(--light-bg);
  border-radius: 20px;
  padding: 40px;
  border-left: 5px solid var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.bio-card {
  background: #ffffff;
  border: 1px solid rgba(30, 86, 49, 0.08);
  border-radius: 20px;
  padding: 35px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.bio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(30, 86, 49, 0.06);
  border-color: var(--secondary-color);
}

.bio-icon {
  font-size: 2.2rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.philosophy-banner {
  background: linear-gradient(135deg, var(--primary-color) 0%, #123d21 100%);
  border-radius: 20px;
  color: var(--white);
  padding: 40px;
  box-shadow: 0 15px 40px rgba(30, 86, 49, 0.2);
  position: relative;
  overflow: hidden;
}

.philosophy-banner::before {
  content: '"';
  position: absolute;
  font-size: 12rem;
  font-family: 'Playfair Display', serif;
  color: rgba(255, 255, 255, 0.05);
  top: -50px;
  right: 20px;
  line-height: 1;
}

.experience-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.01);
}

.experience-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
  border-color: var(--accent-color);
}

.experience-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(168, 207, 69, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.experience-card:hover .experience-icon-wrap {
  background: var(--primary-color);
  color: var(--white);
}

.assurance-banner {
  background: linear-gradient(135deg, #fbfcfb 0%, #f4f7f4 100%);
  border-radius: 20px;
  padding: 35px;
  border: 1px solid rgba(30, 86, 49, 0.1);
  box-shadow: 0 10px 30px rgba(30, 86, 49, 0.02);
}

.assurance-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.assurance-icon {
  color: var(--secondary-color);
  font-size: 1.3rem;
  margin-right: 15px;
  margin-top: 3px;
}

.choose-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  text-align: center;
}

.choose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
  border-color: var(--secondary-color);
}

.choose-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.choose-card:hover .choose-icon {
  transform: scale(1.1) rotate(5deg);
  color: var(--secondary-color);
}

/* Mission, Vision, and Values styling */
.mvv-card {
  background: #ffffff;
  border-top: 5px solid var(--secondary-color);
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  height: 100%;
}

.mvv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-top-color: var(--primary-color);
}

.mvv-icon {
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.mvv-card:hover .mvv-icon {
  color: var(--secondary-color);
}

/* ===========================
   FLOATING WHATSAPP CHAT WIDGET
   =========================== */
.whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.whatsapp-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45),
    0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  flex-shrink: 0;
}

.whatsapp-button::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.3);
  animation: whatsappPulse 2s ease-in-out infinite;
  z-index: -1;
}

.whatsapp-button:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.55),
    0 4px 12px rgba(0, 0, 0, 0.2);
  color: #fff;
  background: linear-gradient(135deg, #2be871 0%, #25d366 100%);
}

.whatsapp-button:active {
  transform: scale(1.05);
}

.whatsapp-button i {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}

/* Pulse animation */
@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.4);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* Tooltip bubble */
.whatsapp-tooltip {
  background: #fff;
  color: #333;
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12),
    0 1px 4px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateX(20px);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  margin-bottom: 12px;
}

/* Arrow pointing to the button */
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #fff;
  box-shadow: 3px -3px 6px rgba(0, 0, 0, 0.05);
}

.whatsapp-tooltip.show {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.whatsapp-tooltip span {
  color: #128c7e;
  font-family: 'Poppins', sans-serif;
}

.whatsapp-tooltip-close {
  background: none;
  border: none;
  color: #999;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.2s ease;
}

.whatsapp-tooltip-close:hover {
  color: #333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .whatsapp-widget {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-button {
    width: 55px;
    height: 55px;
    font-size: 1.6rem;
  }

  .whatsapp-tooltip {
    display: none;
  }
}

/* ===========================
   ABOUT INTRO + STATS SECTION
   =========================== */
.about-intro-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #eef5e8 50%, #f0f7eb 100%);
  position: relative;
  overflow: hidden;
}

.about-intro-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30, 86, 49, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about-intro-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Left Side Content */
.about-intro-content {
  position: relative;
  z-index: 2;
}

.about-intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(30, 86, 49, 0.1), rgba(168, 207, 69, 0.1));
  color: var(--primary-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  border: 1px solid rgba(30, 86, 49, 0.15);
}

.about-intro-badge i {
  color: var(--accent-color);
}

.about-intro-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-intro-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
  font-weight: 300;
}

.btn-about-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 50px;
  background: transparent;
  border: 2px solid var(--primary-color);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-about-more:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateX(5px);
  box-shadow: 0 10px 25px rgba(30, 86, 49, 0.3);
}

.btn-about-more i {
  transition: transform 0.3s ease;
}

.btn-about-more:hover i {
  transform: translateX(5px);
}

/* Right Side Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(30, 86, 49, 0.08);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.stat-card-visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(30, 86, 49, 0.12);
  border-color: rgba(30, 86, 49, 0.15);
}

.stat-icon-wrap {
  width: 55px;
  height: 55px;
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(30, 86, 49, 0.1), rgba(168, 207, 69, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: all 0.4s ease;
}

.stat-icon-wrap i {
  font-size: 1.4rem;
  color: var(--primary-color);
  transition: all 0.4s ease;
}

.stat-card:hover .stat-icon-wrap {
  background: linear-gradient(135deg, var(--primary-color), #198754);
  transform: scale(1.1) rotate(5deg);
}

.stat-card:hover .stat-icon-wrap i {
  color: #fff;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: #777;
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 991px) {
  .about-intro-title {
    font-size: 2.2rem;
  }

  .about-intro-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .about-intro-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .btn-about-more {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .about-intro-section {
    padding: 60px 0;
  }

  .about-intro-title {
    font-size: 1.8rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stat-card {
    padding: 20px 12px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-icon-wrap {
    width: 45px;
    height: 45px;
  }

  .stat-icon-wrap i {
    font-size: 1.1rem;
  }
}

/* ==========================================================================
   ITINERARIES SUB-NAVIGATION (RESPONSIVE SECTIONS BAR)
   ========================================================================== */
.itinerary-sub-nav {
  position: sticky !important;
  top: 92px !important;
  z-index: 999;
  background-color: var(--white);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
  padding: 0.75rem 0;
  transition: top 0.3s ease;
}

@media (max-width: 1199.98px) {
  .itinerary-sub-nav {
    top: 75px !important; /* Matches collapsed responsive mobile header height */
  }
}

/* Hide scrollbar for Chrome, Safari and Opera */
.custom-scroll-hide::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.custom-scroll-hide {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

/* Make sure the container has nice touch scrolling on mobile */
.custom-scroll-hide {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  gap: 0.50rem;
  padding-bottom: 0.25rem;
}

/* Let's style the sub-nav buttons to look very premium */
.itinerary-sub-nav .btn-outline-success {
  color: var(--primary-color);
  border-color: var(--secondary-color);
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}

.itinerary-sub-nav .btn-outline-success:hover,
.itinerary-sub-nav .btn-outline-success:active,
.itinerary-sub-nav .btn-outline-success.active {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(30, 86, 49, 0.25);
}

/* Footer Contact Info Styling */
.contact-link {
  transition: var(--transition);
}

.contact-link:hover {
  color: var(--secondary-color) !important;
}

.contact-info-icon {
  width: 20px;
  text-align: center;
  flex-shrink: 0;
  color: var(--secondary-color); /* Gold color for footer contact icons */
}