/* CSS Variables for Theme Colors */
:root {
  --primary-color: #3f48c7; /* Blue */
  --secondary-color: #b7e31f; /* Green */
  --accent-color: #ff9326; /* Orange for accents */
  --dark-color: #1f2937; /* Dark gray */
  --text-dark: #333;
  --text-light: #666;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --company-name: "Infinity Travels";
}

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

html {
  overflow-x: hidden;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  scroll-behavior: smooth;
  font-weight: 400;
  overflow-x: hidden;
  max-width: 100%;
}

/* Top Contact Bar */
.top-bar {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--dark-color);
  color: var(--white);
  z-index: 1001;
  font-size: 0.85rem;
}

.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  overflow: hidden;
}

.top-bar-inner a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.9;
  transition:
    opacity 0.3s ease,
    color 0.3s ease;
}

.top-bar-inner a:hover {
  opacity: 1;
  color: var(--secondary-color);
}

.top-bar-whatsapp {
  color: #6fe08a !important;
  font-weight: 600;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 34px;
  width: 100%;
  background: var(--white);
  padding: 1rem 0;
  box-shadow: var(--shadow);
  z-index: 1000;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
  /* Never give .navbar a transform/filter/backdrop-filter/will-change: any of those
     turn it into a containing block for position:fixed descendants (.nav-menu),
     which visually traps and blurs the slide-in mobile menu. */
  filter: none !important;
  backdrop-filter: none !important;
  transform: none !important;
  will-change: auto !important;
}

.nav-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
  overflow-x: hidden;
}

/* Logo Container with Image and Text */
.logo-container {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.logo-container:hover {
  transform: scale(1.05);
}

.logo-image {
  height: 50px;
  width: 50px;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.logo-infinity {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

.logo-travels {
  color: var(--accent-color);
  font-weight: 700;
}

.logo-icon {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-left: 0.5rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-3px);
  }
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.4rem;
  flex-shrink: 1;
}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: color 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-menu-mobile-cta {
  display: none;
}

.nav-cta {
  display: inline-block;
  flex-shrink: 0;
  white-space: nowrap;
  padding: 0.7rem 1.4rem;
  background: linear-gradient(135deg, var(--accent-color), #ff7a00);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 6px 18px rgba(255, 147, 38, 0.35);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 147, 38, 0.45);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.mobile-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1101;
}

.mobile-menu span {
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  margin: 3px 0;
  border-radius: 2px;
  transition:
    transform 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55),
    opacity 0.25s ease;
}

.mobile-menu.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 17, 35, 0.55);
  backdrop-filter: blur(4px);
  /* Must stay below .navbar's stacking level (1000): .nav-menu's z-index:1100 is
     scoped to the stacking context .navbar creates, so from the outside the
     whole navbar group still ranks at 1000. A higher backdrop here would paint
     its blur on top of the entire navbar group, menu included. */
  z-index: 999;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.mobile-menu-backdrop.active {
  display: block;
  opacity: 1;
}

body.menu-open {
  overflow: hidden;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Hero Background Image */
.hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.35;
  z-index: 1;
}

/* Darkening scrim so headline/CTAs stay legible over the busy illustration */
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgba(15, 17, 60, 0.55) 0%,
    rgba(15, 17, 60, 0.75) 100%
  );
  z-index: 1;
}

/* Fallback pattern overlay */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><circle fill="%23ffffff" opacity="0.1" cx="200" cy="150" r="50"/><circle fill="%23ffffff" opacity="0.1" cx="800" cy="300" r="80"/><circle fill="%23ffffff" opacity="0.1" cx="1000" cy="100" r="60"/><polygon fill="%23ffffff" opacity="0.05" points="0,600 400,200 800,400 1200,100 1200,600"/></svg>');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  opacity: 0.5;
  animation: blobFloat 12s ease-in-out infinite;
}

.hero-blob-1 {
  width: 400px;
  height: 400px;
  background: var(--accent-color);
  top: -100px;
  right: -100px;
}

.hero-blob-2 {
  width: 350px;
  height: 350px;
  background: var(--secondary-color);
  bottom: -120px;
  left: -100px;
  animation-delay: 4s;
}

@keyframes blobFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -30px) scale(1.15);
  }
}

.hero-content {
  max-width: 90vw;
  padding: 0 1rem;
  position: relative;
  z-index: 2;
  width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.hero-title-accent {
  background: linear-gradient(135deg, #ffe066, var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-eyebrow {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.2rem;
  animation: fadeInUp 1s ease;
  max-width: 90vw;
  word-break: break-word;
  overflow-wrap: break-word;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.15;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  animation: fadeInUp 1s ease 0.1s both;
  word-break: break-word;
  overflow-wrap: break-word;
}

.hero-content p {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 2.2rem;
  opacity: 0.95;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 1s ease 0.2s both;
  word-break: break-word;
  overflow-wrap: break-word;
}

.hero-cta-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease 0.4s both;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2rem;
  background: var(--white);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  flex-wrap: wrap;
  min-height: 44px;
  max-width: 90vw;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.cta-primary {
  background: var(--white);
  color: var(--primary-color);
}

.cta-whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
}

.cta-whatsapp:hover {
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.5);
}

.cta-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.cta-outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hero-trust-strip {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.95;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 1s ease 0.6s both;
}

.hero-trust-strip i {
  color: var(--accent-color);
  margin-right: 0.4rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 1.4rem;
  z-index: 2;
  animation: bounce 2s infinite;
  opacity: 0.85;
}

@keyframes bounce {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 10px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Stats Strip */
.stats-strip {
  background: var(--white);
  padding: 3.5rem 0;
  border-bottom: 1px solid #eee;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item .stat-number,
.stat-item .stat-suffix {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--primary-color);
}

.stat-item .stat-suffix {
  color: var(--accent-color);
}

.stat-item p {
  margin-top: 0.4rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Scroll Reveal */
.reveal-init {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Google Rating Badge */
.google-rating-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin: -1.5rem auto 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

.google-g-icon {
  color: #4285f4;
  font-size: 1.2rem;
}

.rating-stars {
  color: var(--accent-color);
  letter-spacing: 1px;
}

.rating-text {
  color: var(--text-light);
  font-weight: 500;
}

section {
  scroll-margin-top: 110px;
  width: 100%;
  overflow-x: hidden;
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  overflow-x: hidden;
}

.section-kicker {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 0.6rem;
}

.section-kicker-light {
  color: var(--primary-color);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

.section-title:has(+ .section-subtitle) {
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--text-light);
  font-size: 1.05rem;
}

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

.about-image {
  width: 100%;
  height: 100%;
  background-image: url("../images/about_us.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* background: linear-gradient(135deg, var(--secondary-color), var(--accent-color)); */
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--white);
}

.about-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  font-weight: 400;
}

/* Packages Section */
.packages-container {
  position: relative;
  margin-top: 3rem;
  padding: 20px 40px;
  overflow-x: hidden;
}

.packages-slider {
  overflow: hidden;
  border-radius: 15px;
  width: 100%;
}

.packages-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.package-card {
  flex: 0 0 calc(100% / 3 - 1.33rem);
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  margin: 10px;
  transition: transform 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-height: 450px;
  width: 100%;
}

.package-card:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 20px 45px rgba(63, 72, 199, 0.18);
}

.package-image {
  height: 220px;
  width: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.package-card:hover .package-image img {
  transform: scale(1.12);
}

.package-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(31, 41, 55, 0.85),
    rgba(31, 41, 55, 0)
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.2rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.package-card:hover .package-image-overlay {
  opacity: 1;
}

.enquire-btn-overlay {
  background: #25d366;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transform: translateY(10px);
  transition:
    transform 0.35s ease,
    background 0.3s ease;
}

.package-card:hover .enquire-btn-overlay {
  transform: translateY(0);
}

.enquire-btn-overlay:hover {
  background: #1ebd5a;
}

.package-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.package-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.package-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-weight: 400;
  flex-grow: 1;
  line-height: 1.6;
}

.enquire-btn {
  background: var(--primary-color);
  color: var(--white);
  padding: 0.7rem 1.2rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background 0.3s ease;
  margin-top: auto;
  align-self: center;
  min-width: 120px;
}

.enquire-btn:hover {
  background: var(--secondary-color);
  color: var(--dark-color);
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: 2px solid var(--primary-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: var(--shadow);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-nav:hover {
  background: var(--primary-color);
  color: var(--white);
}

.slider-nav.prev {
  left: 10px;
}

.slider-nav.next {
  right: 10px;
}

.slider-nav:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.slider-nav:disabled:hover {
  background: var(--white);
  color: var(--primary-color);
}

/* Mobile Package Indicators */
.mobile-package-indicators {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 0 2rem;
}

.mobile-package-dots {
  display: flex;
  gap: 0.5rem;
}

.mobile-package-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  transition: background 0.3s ease;
}

.mobile-package-dot.active {
  background: var(--primary-color);
}

/* Custom Packages Section */
.custom-packages {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  text-align: center;
}

.custom-packages .section-title {
  color: var(--white);
  font-weight: 700;
}

.custom-content {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  font-weight: 400;
}

/* Testimonials Section */
.testimonials {
  background: var(--bg-light);
}

.testimonials-container {
  position: relative;
  margin-top: 3rem;
  padding: 20px 40px;
  overflow-x: hidden;
}

.testimonials-slider {
  overflow: hidden;
  border-radius: 15px;
  width: 100%;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
  align-items: stretch;
  width: 100%;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 1.33rem);
  background: var(--white);
  padding: 2rem;
  margin: 10px;
  border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-height: 350px;
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 18px 40px rgba(63, 72, 199, 0.15);
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-weight: 400;
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.testimonial-footer {
  margin-top: auto;
  padding-top: 1rem;
}

.testimonial-name {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.testimonial-rating {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.testimonials-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.3s ease;
}

.indicator.active {
  background: var(--primary-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  border-radius: 16px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.feature-item:hover {
  transform: translateY(-6px);
  background: var(--white);
  box-shadow: 0 16px 35px rgba(63, 72, 199, 0.12);
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  transition: transform 0.35s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.15) rotate(-5deg);
}

.feature-item h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-weight: 600;
}

.feature-item p {
  font-weight: 400;
}

/* Clients Section */
.clients {
  background: var(--white);
  padding: 4rem 0;
}

.clients .section-title {
  margin-bottom: 4rem;
}

.clients-container {
  position: relative;
  overflow: hidden;
}

.clients-slider {
  overflow: hidden;
}

.clients-track {
  display: flex;
  animation: scroll 90s linear infinite;
  gap: 2rem;
  flex-wrap: nowrap;
  min-width: max-content;
  align-items: center;
}

.client-logo {
  flex: 0 0 auto;
  height: 120px;
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 12px;
  padding: 1rem;
  transition: all 0.3s ease;
  border: 2px solid var(--bg-light);
}

.client-logo:hover {
  /* transform: translateY(-5px); */
  border-color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(63, 72, 199, 0.05);
}

.client-logo img {
  max-height: 100px;
  max-width: 160px;
  object-fit: contain;

  transition: filter 0.3s ease;
}

.client-logo:hover img {
  filter: grayscale(0%);
}

.client-placeholder {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
  padding: 0.5rem;
  border: 2px dashed var(--primary-color);
  border-radius: 8px;
  background: rgba(63, 72, 199, 0.05);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
}

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

/* Pause animation on hover */
.clients-track:hover {
  animation-play-state: paused;
}

/* Contact Section */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  padding: 2rem;
}

.contact-help-content {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: var(--white);
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  text-align: center;
}

.contact-help-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-help-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 400;
}

.contact-details {
  space-y: 1rem;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: 400;
}

.contact-detail-item i {
  color: var(--primary-color);
  margin-right: 1rem;
  width: 20px;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.contact-section-title {
  color: var(--primary-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.contact-section-title:first-of-type {
  margin-top: 0;
}

.contact-form {
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.form-error {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 0.25rem;
  display: none;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: var(--secondary-color);
  color: var(--dark-color);
}

/* WhatsApp Widget */
.whatsapp-widget {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.whatsapp-float {
  background: #25d366;
  color: var(--white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  transition: transform 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-panel {
  position: absolute;
  bottom: 75px;
  left: 0;
  width: 280px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  padding: 1.2rem;
  opacity: 0;
  transform: translateY(15px) scale(0.95);
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.whatsapp-panel.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.whatsapp-panel-header {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}

.whatsapp-panel-header i {
  background: #25d366;
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.whatsapp-panel-header strong {
  display: block;
  font-size: 0.95rem;
}

.whatsapp-panel-header p {
  font-size: 0.78rem;
  color: var(--text-light);
}

.whatsapp-panel-close {
  margin-left: auto;
  background: none;
  border: none;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--text-light);
  cursor: pointer;
}

.whatsapp-panel-prompt {
  font-size: 0.88rem;
  background: var(--bg-light);
  border-radius: 10px;
  padding: 0.6rem 0.8rem;
  margin-bottom: 0.8rem;
}

.whatsapp-chip {
  display: block;
  width: 100%;
  text-align: left;
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 0.6rem 0.8rem;
  margin-bottom: 0.5rem;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.whatsapp-chip:hover {
  border-color: #25d366;
  background: rgba(37, 211, 102, 0.08);
  transform: translateX(3px);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

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

/* Scroll to Top Button */
.scroll-top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--primary-color);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(63, 72, 199, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.scroll-top-btn:hover {
  background: var(--secondary-color);
  color: var(--dark-color);
  transform: scale(1.1);
}

.scroll-top-btn.show {
  display: flex;
}

/* Sticky Mobile CTA Bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.mobile-cta-bar.visible {
  transform: translateY(0);
}

.mobile-cta-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.7rem 0;
  text-decoration: none;
  color: var(--primary-color);
  font-size: 0.75rem;
  font-weight: 600;
  border-right: 1px solid #eee;
}

.mobile-cta-item:last-child {
  border-right: none;
}

.mobile-cta-item i {
  font-size: 1.2rem;
}

.mobile-cta-whatsapp {
  background: #25d366;
  color: var(--white);
}

.mobile-cta-enquire {
  background: var(--accent-color);
  color: var(--white);
}

/* Footer */
.footer {
  background: var(--dark-color);
  color: var(--white);
  text-align: center;
  padding: 2rem 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .packages-container,
  .testimonials-container {
    padding: 20px 30px;
  }

  .package-card,
  .testimonial-card {
    flex: 0 0 calc(50% - 1rem);
  }

  .nav-cta {
    display: none;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .navbar {
    top: 0;
  }

  /* .navbar is position:fixed (out of flow): sections need top padding that
     clears its height, or headings render tucked behind/under it on scroll. */
  .section {
    padding-top: 6rem;
  }

  .nav-cta {
    display: none;
  }

  .mobile-cta-bar {
    display: flex;
  }

  .whatsapp-widget {
    display: none;
  }

  body {
    padding-bottom: 56px;
  }

  .nav-menu {
    position: fixed;
    right: -100%;
    top: 0;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(160deg, var(--white) 0%, #f3f4ff 100%);
    width: 78%;
    max-width: 340px;
    text-align: left;
    transition: right 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
    padding: 6rem 2.5rem 3rem;
    gap: 0.5rem;
    z-index: 1100;
    overflow-y: auto;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    width: 100%;
    opacity: 0;
    transform: translateX(20px);
    transition:
      opacity 0.4s ease,
      transform 0.4s ease;
    transition-delay: calc(var(--i) * 0.06s);
  }

  .nav-menu.active li {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-menu .nav-link {
    display: block;
    padding: 0.9rem 0;
    font-size: 1.15rem;
    border-bottom: 1px solid rgba(63, 72, 199, 0.1);
  }

  .nav-menu-mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.5rem;
    border-bottom: none !important;
  }

  .nav-menu-call-btn,
  .nav-menu-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
  }

  .nav-menu-call-btn {
    background: var(--primary-color);
    color: var(--white);
  }

  .nav-menu-whatsapp-btn {
    background: #25d366;
    color: var(--white);
  }

  .mobile-menu {
    display: flex;
  }

  .packages-container,
  .testimonials-container {
    padding: 20px 60px;
  }

  .package-card,
  .testimonial-card {
    flex: 0 0 calc(50% - 1rem);
  }

  .nav-menu {
    gap: 1.5rem;
  }

  .clients-track {
    gap: 2rem;
  }

  .client-logo {
    height: 60px;
    width: 120px;
  }
}

@media (max-width: 768px) {
  .logo-image {
    height: 40px;
    width: 40px;
  }

  .logo-text {
    font-size: 1.4rem;
  }

  .logo-icon {
    font-size: 1.2rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-trust-strip {
    gap: 0.8rem;
    font-size: 0.8rem;
    flex-direction: column;
  }

  @media (max-width: 380px) {
    .hero-trust-strip {
      gap: 0.6rem;
      font-size: 0.75rem;
    }
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-item .stat-number,
  .stat-item .stat-suffix {
    font-size: 1.5rem;
  }

  .stat-item p {
    font-size: 0.85rem;
  }

  @media (max-width: 380px) {
    .stats-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
  }

  .google-rating-badge {
    flex-wrap: wrap;
    margin-top: 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image {
    height: 250px;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  /* Mobile Slider Adjustments */
  .packages-container,
  .testimonials-container {
    padding: 20px 20px;
  }

  .package-card,
  .testimonial-card {
    flex: 0 0 100%;
    min-height: 400px;
    margin: 0;
  }

  .package-card {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
    margin: 0;
  }

  /* Show arrows on mobile for packages when needed */
  .slider-nav {
    display: flex;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .slider-nav.prev {
    left: 10px;
  }

  .slider-nav.next {
    right: 10px;
  }

  .mobile-package-indicators {
    display: flex;
  }

  /* Testimonial mobile adjustments */
  .testimonial-card {
    min-height: 300px;
  }

  .scroll-top-btn {
    width: 45px;
    height: 45px;
    font-size: 1rem;
    bottom: 90px;
    right: 15px;
  }

  /* Clients mobile adjustments */
  .clients-track {
    gap: 1.5rem;
  }

  .client-logo {
    height: 80px;
    width: 160px;
  }

  .client-placeholder {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 0.75rem;
  }

  .container {
    padding: 0 0.75rem;
  }

  .hero-content h1 {
    font-size: 1.8rem;
    padding: 0 0.5rem;
  }

  .hero-content p {
    font-size: 1rem;
    padding: 0 0.5rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 0 0.5rem;
  }

  .cta-button {
    width: 100%;
    max-width: calc(100vw - 2rem);
    justify-content: center;
    padding: 0.9rem 1.2rem;
    font-size: 0.95rem;
    white-space: normal;
  }

  .section {
    padding: 3rem 0 2rem;
  }

  .packages-container,
  .testimonials-container {
    padding: 20px 10px;
  }

  /* iPhone specific optimization (375-414px) */
  @media (max-width: 414px) {
    .hero-content h1 {
      font-size: 1.6rem;
      line-height: 1.2;
      margin-bottom: 0.8rem;
    }

    .hero-content p {
      font-size: 0.95rem;
      margin-bottom: 1.5rem;
    }

    .hero-eyebrow {
      font-size: 0.8rem;
      padding: 0.3rem 0.8rem;
      margin-bottom: 0.8rem;
    }

    .cta-button {
      padding: 0.8rem 1rem;
      font-size: 0.85rem;
      gap: 0.4rem;
    }

    .cta-button i {
      font-size: 0.9rem;
    }

    .hero-trust-strip {
      gap: 0.4rem;
      font-size: 0.7rem;
    }

    .hero-trust-strip i {
      margin-right: 0.2rem;
    }

    .section-title {
      font-size: 1.6rem;
    }

    .stats-grid {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .stat-item .stat-number,
    .stat-item .stat-suffix {
      font-size: 1.2rem;
    }

    .stat-item p {
      font-size: 0.75rem;
    }
  }

  @media (max-width: 375px) {
    .container,
    .nav-container {
      padding: 0 0.5rem;
    }

    .hero-content {
      padding: 0 0.5rem;
    }

    .hero-content h1 {
      font-size: 1.4rem;
      margin-bottom: 0.6rem;
    }

    .hero-content p {
      font-size: 0.9rem;
      margin-bottom: 1.2rem;
    }

    .cta-button {
      padding: 0.75rem 0.9rem;
      font-size: 0.8rem;
      gap: 0.3rem;
    }

    .packages-container,
    .testimonials-container {
      padding: 15px 8px;
    }

    .slider-nav {
      width: 35px;
      height: 35px;
      font-size: 0.8rem;
    }

    .slider-nav.prev {
      left: 3px;
    }

    .slider-nav.next {
      right: 3px;
    }
  }

  .contact-help-content,
  .contact-form {
    padding: 1.5rem;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    bottom: 15px;
    left: 15px;
  }

  .slider-nav {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .slider-nav.prev {
    left: 5px;
  }

  .slider-nav.next {
    right: 5px;
  }

  .logo-image {
    height: 35px;
    width: 35px;
  }

  .logo-text {
    font-size: 1.2rem;
  }

  .logo-icon {
    font-size: 1rem;
  }

  .section {
    padding: 3rem 0 2rem;
  }

  .clients-track {
    gap: 1rem;
  }

  .client-logo {
    height: 80px;
    width: 160px;
  }

  .client-placeholder {
    font-size: 0.9rem;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  .package-card:hover,
  .testimonial-card:hover,
  .client-logo:hover {
    transform: none;
  }

  .cta-button:hover {
    transform: none;
  }

  .slider-nav:hover {
    background: var(--white);
    color: var(--primary-color);
  }

  .clients-track {
    animation-play-state: running;
  }
}

/* Ultra-small devices (< 360px) */
@media (max-width: 360px) {
  .container,
  .nav-container {
    padding: 0 0.75rem;
  }

  .hero-content {
    padding: 0 0.75rem;
  }

  .hero-content h1 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
  }

  .hero-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .hero-cta-group {
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }

  .cta-button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .packages-container,
  .testimonials-container {
    padding: 15px 10px;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .stat-item .stat-number,
  .stat-item .stat-suffix {
    font-size: 1.2rem;
  }

  .stat-item p {
    font-size: 0.8rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-item {
    padding: 1.5rem 1rem;
  }

  .contact-help-content,
  .contact-form {
    padding: 1.2rem 1rem;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  .form-group label {
    font-size: 0.95rem;
  }

  .form-group input,
  .form-group textarea {
    font-size: 0.95rem;
    padding: 0.8rem;
  }

  .submit-btn {
    font-size: 1rem;
    padding: 0.8rem;
  }

  .section {
    padding: 4rem 0 2rem;
  }
}
