@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary-pink: #ad1457;
  --primary-pink-hover: #880e4f;
  --secondary-pink: #f8bbd0;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --border-color: #ecf0f1;
  --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 15px 30px rgba(173, 20, 87, 0.15);
  --transition: all 0.3s ease;
  --border-radius: 12px;
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

.bg-light {
  background-color: var(--bg-light);
}

.bg-pink-light {
  background-color: var(--secondary-pink);
}

.text-center {
  text-align: center;
}

/* Typography */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  font-weight: 700;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--primary-pink);
  border-radius: 2px;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 15px auto 0;
}

.pink-text {
  color: var(--primary-pink);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-pink);
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  border: 2px solid var(--primary-pink);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  box-shadow: 0 4px 10px rgba(233, 30, 99, 0.3);
}

.btn:hover {
  background-color: transparent;
  color: var(--primary-pink);
  box-shadow: none;
}

.btn-outline {
  display: inline-block;
  padding: 12px 30px;
  background-color: transparent;
  color: var(--primary-pink);
  font-weight: 600;
  border-radius: 30px;
  border: 2px solid var(--primary-pink);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-outline:hover {
  background-color: var(--primary-pink);
  color: #fff;
  box-shadow: 0 4px 10px rgba(233, 30, 99, 0.3);
}

/* 1. Header */
.main-header {
  background-color: var(--bg-white);
  padding: 20px 0;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

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

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-menu li {
  position: relative;
}

.nav-menu li a {
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-dark);
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-menu li a:hover {
  color: var(--primary-pink);
}

/* Dropdown Menu */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-white);
  min-width: 250px;
  box-shadow: var(--shadow-md);
  border-radius: 8px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
  border-top: 3px solid var(--primary-pink);
}

.nav-menu li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li {
  width: 100%;
}

.dropdown li a {
  padding: 10px 20px;
  color: var(--text-dark);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border-color);
  display: block;
}

.dropdown li:last-child a {
  border-bottom: none;
}

.dropdown li a:hover {
  background-color: var(--bg-light);
  color: var(--primary-pink);
  padding-left: 25px;
}

/* 2. Hero Section */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0;
}

.btn-outline-white {
  display: inline-block;
  padding: 12px 30px;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  font-size: 0.95rem;
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.btn-outline-white:hover {
  background: var(--primary-pink);
  border-color: var(--primary-pink);
  color: #fff;
  transform: translateY(-2px);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); /* Soft premium cinematic dark mask */
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-left-content {
  color: #fff;
}

.hero-left-content h1 {
  font-size: 4.2rem;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 800;
  text-shadow: 0 3px 6px rgba(0,0,0,0.3);
}

.hero-left-content h1 .pink-text {
  color: var(--secondary-pink); /* Soft light rose pink to glow beautifully on dark overlay */
  text-shadow: 0 0 10px rgba(248, 187, 208, 0.4);
}

.hero-left-content p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0;
  font-weight: 500;
  line-height: 1.6;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.booking-form {
  background: var(--bg-white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  border-top: 5px solid var(--primary-pink);
}

.booking-form h3 {
  margin-bottom: 20px;
  color: var(--primary-pink);
}

.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.form-group {
  flex: 1;
}

.form-group input, .form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-light);
  outline: none;
  transition: var(--transition);
}

.form-group input:focus, .form-group select:focus {
  border-color: var(--primary-pink);
  background-color: var(--bg-white);
}

/* 3. About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img {
  position: relative;
}

.about-img img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.about-img::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 5px solid var(--primary-pink);
  border-radius: var(--border-radius);
  z-index: -1;
}

.about-content h3 {
  color: var(--primary-pink);
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 2px;
}

.about-content h2 {
  font-size: 2.8rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

/* 4. Fleet Section */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.fleet-card {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.fleet-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary-pink);
}

.fleet-img {
  height: 200px;
  background-color: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.fleet-img img {
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.fleet-card:hover .fleet-img img {
  transform: scale(1.1);
}

.fleet-info {
  padding: 25px;
  text-align: center;
}

.fleet-info h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.fleet-features {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* 5. Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--bg-white);
  padding: 40px 20px;
  text-align: center;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-bottom: 4px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--primary-pink);
}

.service-icon {
  width: 80px;
  height: 80px;
  background-color: var(--secondary-pink);
  color: var(--primary-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background-color: var(--primary-pink);
  color: var(--bg-white);
}

.service-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* 6. Popular Tour Packages (New Grid Style) */
.tour-grid-8 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.tour-card-new {
  background: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.tour-card-new:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.tour-img-new {
  height: 200px;
  width: 100%;
}

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

.tour-info-new {
  padding: 25px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.tour-subtitle-new {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  text-transform: capitalize;
}

.tour-info-new h3 {
  font-size: 1.1rem;
  color: var(--primary-pink);
  text-transform: uppercase;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.tour-info-new p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.tour-info-new .btn {
  width: 100%;
  border-radius: 30px;
  padding: 10px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* 7. Why Choose Us */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-item {
  text-align: center;
}

.feature-icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border: 2px dashed var(--primary-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-pink);
  font-size: 2.5rem;
  background: var(--bg-white);
}

.feature-item h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/* 8. Testimonials */
.testimonial-card {
  background: var(--secondary-pink);
  padding: 40px;
  border-radius: var(--border-radius);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-text {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-pink);
}

.stars {
  color: #f1c40f;
  margin-bottom: 15px;
}

/* 9. Footer */
.footer {
  background-color: var(--primary-pink);
  color: var(--bg-white);
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-about h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.footer-about p {
  opacity: 0.9;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons a:hover {
  background: var(--bg-white);
  color: var(--primary-pink);
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--bg-white);
}

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

.footer-col ul li a {
  opacity: 0.9;
}

.footer-col ul li a:hover {
  opacity: 1;
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  opacity: 0.9;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-left-content h1 {
    font-size: 3.2rem;
    text-align: center;
  }
  .hero-left-content p {
    font-size: 1.2rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
  }
  .hero-buttons {
    justify-content: center;
    margin-top: 25px;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .fleet-grid, .tour-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid, .features-grid, .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .main-header {
    padding: 12px 0; /* Sleek, compact header on mobile */
  }
  .logo img {
    height: 48px; /* Perfectly sized logo for mobile */
  }
  .hero {
    padding: 50px 0;
    min-height: auto;
  }
  .hero-left-content h1 {
    font-size: 2.3rem;
    line-height: 1.2;
    text-align: center;
  }
  .hero-left-content p {
    font-size: 1.05rem;
    text-align: center;
    margin-bottom: 20px;
  }
  .hero-buttons {
    margin-top: 20px;
    gap: 10px;
  }
  .hero-buttons .btn-outline-white,
  .hero-buttons .btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
  .hero::before {
    background: rgba(0, 0, 0, 0.6); /* Perfectly dark mask on mobile for high readability */
  }
  .form-row {
    flex-direction: column;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 72px; /* Matches the new compact mobile header height */
    left: -100%;
    width: 100%;
    height: calc(100vh - 72px);
    background-color: var(--bg-white);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 30px;
    transition: var(--transition);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    overflow-y: auto;
  }
  
  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
  }

  .nav-menu li a {
    justify-content: center;
    padding: 15px 0;
    font-size: 1.2rem;
  }
  
  .dropdown {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    border-top: none;
    display: none;
    background-color: var(--bg-light);
  }
  
  .nav-menu li.active .dropdown {
    display: block;
  }
  
  .dropdown li a {
    font-size: 1rem;
    padding: 10px 0;
  }

  .nav-actions {
    display: none; /* Hide 'Book Now' button on mobile header to save space */
  }
  
  .fleet-grid, .tour-grid, .tour-grid-8, .services-grid, .features-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   SUB-PAGE LAYOUTS
========================================= */

/* Inner Page Banner */
.inner-banner {
  position: relative;
  background: url('https://images.unsplash.com/photo-1599661559684-6592f1706c4b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
  padding: 40px 0;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.inner-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.85), rgba(233, 30, 99, 0.65));
  z-index: 1;
}

.inner-banner .container {
  position: relative;
  z-index: 2;
}

.inner-banner h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.inner-banner p {
  font-size: 0.95rem;
  opacity: 0.95;
  font-weight: 500;
}

.inner-banner span.pink-text {
  color: #fff;
  border-bottom: 2px solid #fff;
  padding-bottom: 2px;
}

/* 1. About Us Layout */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.story-content h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.story-content p {
  color: var(--text-light);
  margin-bottom: 15px;
  font-size: 1.05rem;
}

.story-image img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.mission-card {
  background: var(--secondary-pink);
  padding: 40px;
  border-radius: var(--border-radius);
  text-align: center;
}

.mission-card i {
  font-size: 2.5rem;
  color: var(--primary-pink);
  margin-bottom: 20px;
}

/* 2. Contact Us Layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
}

.contact-info-card {
  background: var(--bg-white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-info-card i {
  width: 50px;
  height: 50px;
  background: var(--secondary-pink);
  color: var(--primary-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.contact-form-wrapper {
  background: var(--bg-white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  border-top: 5px solid var(--primary-pink);
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-top: 50px;
}

/* 3. Gallery Masonry Layout */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 20px;
}

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
}

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

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* 4. Tour Details Layout */
.tour-detail-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
  align-items: start;
}

.tour-main-content h2 {
  font-size: 2rem;
  color: var(--text-dark);
  margin: 30px 0 20px;
  border-bottom: 2px solid var(--secondary-pink);
  padding-bottom: 10px;
}

.tour-main-content p {
  color: var(--text-light);
  margin-bottom: 15px;
}

/* Itinerary Timeline */
.timeline {
  position: relative;
  padding-left: 30px;
  margin-top: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: var(--secondary-pink);
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 5px;
  left: -36px;
  width: 14px;
  height: 14px;
  background: var(--primary-pink);
  border-radius: 50%;
  border: 3px solid var(--bg-white);
}

.timeline-item h4 {
  color: var(--primary-pink);
  margin-bottom: 5px;
  font-size: 1.2rem;
}

/* Inclusions List */
.inclusion-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 20px;
}

.inclusion-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dark);
}

.inclusion-list li i.fa-check-circle {
  color: #2ecc71;
}
.inclusion-list li i.fa-times-circle {
  color: #e74c3c;
}

/* Sticky Booking Sidebar */
.tour-sidebar {
  background: var(--bg-white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
  border-top: 5px solid var(--primary-pink);
}

.tour-price-box {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.tour-price-box h3 {
  font-size: 2.5rem;
  color: var(--primary-pink);
}

.tour-price-box span {
  color: var(--text-light);
  font-size: 0.9rem;
}

.quick-facts {
  margin-bottom: 25px;
}

.quick-facts li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.quick-facts i {
  color: var(--primary-pink);
  width: 20px;
  text-align: center;
}

/* Responsive Overrides for Sub Pages */
@media (max-width: 992px) {
  .tour-detail-layout, .contact-layout, .story-grid {
    grid-template-columns: 1fr;
  }
  .tour-sidebar {
    position: static;
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item.wide { grid-column: span 1; }
  .mission-grid, .inclusion-list {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .gallery-masonry {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   SERVICES SECTION (DARK PINK) & WHY CHOOSE US
========================================= */
.services-section-dark {
  background-color: var(--primary-pink);
  color: #fff;
}

.services-section-dark .section-title h2 {
  color: #fff;
}

.services-section-dark .section-title .section-subtitle {
  color: #f8bbd0;
}

.services-section-dark .service-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}

.services-section-dark .service-card h4 {
  color: #fff;
}

.services-section-dark .service-card p {
  color: #f8bbd0;
}

.services-section-dark .service-icon {
  background-color: #fff;
  color: var(--primary-pink);
}

.why-choose-section {
  position: relative;
  background-image: linear-gradient(rgba(173, 20, 87, 0.85), rgba(44, 62, 80, 0.95)), url('images/why-choose-bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
}

.why-choose-section .section-title h2 {
  color: #fff;
}

.why-choose-section .feature-item {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  transition: var(--transition);
}

.why-choose-section .feature-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--secondary-pink);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.why-choose-section .feature-item h4 {
  color: #fff;
  margin-top: 15px;
  font-size: 1.25rem;
}

.why-choose-section .feature-item p.text-light {
  color: #f8bbd0 !important;
}

.why-choose-section .feature-icon-wrapper {
  background-color: var(--secondary-pink);
  color: var(--primary-pink);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto;
}

/* =========================================
   TESTIMONIALS SLIDER SECTION
========================================= */
.testimonial-badge {
  background-color: var(--secondary-pink);
  color: var(--primary-pink);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  display: inline-block;
}

.testimonial-slider-container {
  overflow: hidden;
  position: relative;
  padding: 10px 0;
  margin-top: 30px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  gap: 20px;
}

.testimonial-slide {
  flex: 0 0 calc(33.333% - 14px); /* 3 cards per view */
  min-width: 300px;
}

@media (max-width: 992px) {
  .testimonial-slide {
    flex: 0 0 calc(50% - 10px); /* 2 cards per view */
  }
}

@media (max-width: 768px) {
  .testimonial-slide {
    flex: 0 0 100%; /* 1 card per view */
  }
}

.review-card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-pink);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

.avatar-blue { background: linear-gradient(135deg, #00c6ff, #0072ff); }
.avatar-green { background: linear-gradient(135deg, #11998e, #38ef7d); }
.avatar-orange { background: linear-gradient(135deg, #f12711, #f5af19); }
.avatar-purple { background: linear-gradient(135deg, #7F00FF, #E100FF); }

.user-info h4 {
  color: var(--text-dark);
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.user-info span {
  color: var(--text-light);
  font-size: 0.85rem;
  display: block;
}

.review-stars {
  color: #f1c40f;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.review-text {
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Slider Controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.control-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--bg-white);
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1rem;
}

.control-btn:hover {
  background: var(--primary-pink);
  color: #fff;
  border-color: var(--primary-pink);
}

.slider-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--primary-pink);
}

/* =========================================
   FLOATING ACTION BUTTONS
========================================= */
.floating-actions {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
}

.float-btn:hover {
  transform: scale(1.1) translateY(-3px);
}

.float-btn.whatsapp-float {
  background-color: #25d366;
}

.float-btn.call-float {
  background-color: var(--primary-pink);
}

/* Pulsing effect */
.float-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  animation: pulse-whatsapp 2s infinite;
  z-index: -1;
}

.float-btn.call-float::after {
  box-shadow: 0 0 0 0 rgba(173, 20, 87, 0.4);
  animation: pulse-call 2s infinite;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes pulse-call {
  0% {
    box-shadow: 0 0 0 0 rgba(173, 20, 87, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(173, 20, 87, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(173, 20, 87, 0);
  }
}

/* Tooltip labels on hover */
.float-btn .tooltip {
  position: absolute;
  right: 70px;
  background-color: #333;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.float-btn:hover .tooltip {
  opacity: 1;
  visibility: visible;
  right: 65px;
}
