@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600&display=swap');

:root {
  --surface: #f9f9ff;
  --on-surface: #111c2d;
  --on-surface-variant: #3e484d;
  --primary: #00647c;
  --primary-hover: #007f9d;
  /* derived */
  --on-primary: #ffffff;
  --outline-variant: #bdc8ce;
  --border-subtle: #e2e8f0;
  --mint-glow: #99f6e4;
  --hero-glow: #e0faff;
  /* custom background soft glow */

  --accent: #FF5E3A;
  /* Vibrant Coral/Orange for excitement */
  --accent-hover: #E44926;

  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--surface);
  color: var(--on-surface-variant);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* Dynamic Interactive Gradient Background */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  background: radial-gradient(600px circle at var(--cursor-x, 50vw) var(--cursor-y, 50vh),
      rgba(153, 246, 228, 0.4) 0%,
      /* Mint Glow stronger */
      rgba(0, 100, 124, 0.2) 30%,
      /* Deep Cyan stronger */
      transparent 70%);
  z-index: 0;
  transition: opacity 0.3s ease;
}

h1,
h2,
h3,
.logo {
  font-family: var(--font-heading);
  color: var(--on-surface);
}

a {
  text-decoration: none;
  color: inherit;
}

/* Navbar */
.navbar-wrapper {
  position: fixed;
  top: 1.5rem;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 1000;
  pointer-events: none;
}

.navbar {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 3.5rem;
  padding: 0.75rem 2.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 9999px;
  box-shadow: 0 12px 36px rgba(153, 246, 228, 0.4), 0 4px 12px rgba(8, 145, 178, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 48px;
  mix-blend-mode: multiply;
  object-fit: contain;
  transform: scale(4.5) translate(4px, -1px);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--on-surface-variant);
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--on-surface);
}

.nav-links a.active {
  color: var(--primary);
  position: relative;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  border-radius: 2px;
  animation: slideIn 0.3s ease forwards;
}

@keyframes slideIn {
  from {
    width: 0;
    opacity: 0;
  }

  to {
    width: 100%;
    opacity: 1;
  }
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--on-surface);
}

.mobile-menu {
  display: none;
}

.lang-selector {
  display: flex;
  align-items: center;
  margin-left: -1rem;
  /* Adjust gap to look balanced */
}

.langSwitch {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--border-subtle);
  border-radius: 99px;
  padding: 0.4rem 0.8rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  color: var(--on-surface);
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
}

.langSwitch:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: 9999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--on-primary);
  border: none;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  box-shadow: 0 8px 24px rgba(255, 94, 58, 0.4);
  transform: scale(1.02);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-secondary:hover {
  background-color: rgba(255, 94, 58, 0.05);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 8px 24px rgba(255, 94, 58, 0.2);
  transform: scale(1.02);
}

.nav-btn {
  padding: 0.6rem 1.5rem;
  font-size: 14px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 5% 10rem;
  overflow: hidden;
}

#map-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  /* behind content */
  opacity: 0.8;
  /* clear visibility */
  pointer-events: none;
  /* allow clicking through to buttons */
}

.map-country {
  fill: #e2e8f0;
  /* very light gray */
  stroke: #ffffff;
  stroke-width: 0.5px;
}

.map-dot {
  fill: #0d9488;
  opacity: 0.5;
}

.map-arc {
  fill: none;
  stroke: #0d9488;
  stroke-width: 2px;
  stroke-linecap: round;
  opacity: 0.6;
}

/* Soft glowing background effect */
.hero-bg-glow {
  position: absolute;
  top: -10%;
  left: -20%;
  width: 80%;
  height: 120%;
  background: radial-gradient(circle, var(--hero-glow) 0%, rgba(249, 249, 255, 0) 60%);
  z-index: 0;
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 100%;
}

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

.display-lg {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  color: var(--on-surface);
}

.body-lg {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--on-surface-variant);
  max-width: 90%;
}

.brand-slogan {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-top: 1.5rem;
  margin-bottom: 4.5rem;
  letter-spacing: 0.05em;
  text-align: center;
  max-width: 100%;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

/* Image Blob Mask */
.hero-image-wrapper {
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.image-mask {
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  /* Organic blob shape similar to screenshot */
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  box-shadow: 0 20px 40px rgba(8, 145, 178, 0.08);
  animation: floatBlob 10s ease-in-out infinite alternate;
}

@keyframes floatBlob {
  0% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    transform: translateY(0px);
  }

  33% {
    border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
    transform: translateY(-15px);
  }

  66% {
    border-radius: 30% 70% 60% 40% / 60% 40% 50% 60%;
    transform: translateY(10px);
  }

  100% {
    border-radius: 50% 50% 40% 60% / 40% 60% 50% 50%;
    transform: translateY(-5px);
  }
}

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

.hero-bottom-wrapper {
  position: absolute;
  bottom: 80px;
  left: 5%;
  right: 5%;
  max-width: 1280px;
  margin: 0 auto;
  z-index: 20;
  pointer-events: none;
}

.trusted-label {
  display: inline-block;
  font-family: 'Caveat', cursive;
  font-size: 2.8rem;
  color: #ef4444;
  transform: rotate(-6deg);
  letter-spacing: 0.05em;
  animation: signatureReveal 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.6s backwards;
}

@keyframes signatureReveal {
  from {
    opacity: 0;
    transform: translate(-30px, 30px) rotate(-15deg);
  }

  to {
    opacity: 1;
    transform: translate(0, 0) rotate(-6deg);
  }
}

/* Hero Marquee Slider */
.hero-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  padding: 0.75rem 0;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  overflow: hidden;
  z-index: 10;
  display: flex;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 60s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
  /* Same as gap so it stitches perfectly */
}

.marquee-item {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

/* Footer */
.footer {
  position: relative;
  z-index: 1;
  padding: 3rem 5%;
  background-color: var(--surface);
  border-top: 1px solid var(--border-subtle);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer .logo {
  font-size: 20px;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--on-surface-variant);
}

.footer-links a:hover {
  color: var(--on-surface);
}

.footer-copy {
  font-size: 13px;
  color: var(--on-surface-variant);
}

/* Responsive */
@media (max-width: 1024px) {
  .display-lg {
    font-size: 48px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-content {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .body-lg {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-image-wrapper {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .display-lg {
    font-size: 36px;
  }

  .brand-slogan {
    font-size: 20px;
    margin-bottom: 2.5rem;
  }

  .navbar-wrapper {
    top: 0;
  }

  .navbar {
    width: 100%;
    border-radius: 0;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    gap: 0.5rem;
  }

  .nav-links,
  .nav-btn {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--border-subtle);
  }

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

  .mobile-menu a {
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: var(--on-surface-variant);
    border-bottom: 1px solid var(--border-subtle);
  }

  .mobile-menu a:last-child {
    border-bottom: none;
  }

  .lang-selector {
    margin-left: 0;
  }

  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
  }
}

/* Services Page Layout */
.services-page {
  padding: 10rem 5% 5rem;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.services-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  grid-auto-rows: minmax(300px, auto);
}

.bento-card {
  background: white;
  border-radius: 2.5rem;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border-subtle);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 100, 124, 0.08);
}

.col-span-2 {
  grid-column: span 2;
}

.col-span-1 {
  grid-column: span 1;
}

.row-span-2 {
  grid-row: span 2;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.icon-circle {
  width: 50px;
  height: 50px;
  background: rgba(153, 246, 228, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
}

.colored-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.dot-1 {
  background-color: #FF5A5F;
  box-shadow: 0 4px 12px rgba(255, 90, 95, 0.4);
}

.dot-2 {
  background-color: #087E8B;
  box-shadow: 0 4px 12px rgba(8, 126, 139, 0.4);
}

.dot-3 {
  background-color: #3C4F76;
  box-shadow: 0 4px 12px rgba(60, 79, 118, 0.4);
}

.dot-4 {
  background-color: #FF9B42;
  box-shadow: 0 4px 12px rgba(255, 155, 66, 0.4);
}

.dot-5 {
  background-color: #D81159;
  box-shadow: 0 4px 12px rgba(216, 17, 89, 0.4);
}

.dot-6 {
  background-color: #218380;
  box-shadow: 0 4px 12px rgba(33, 131, 128, 0.4);
}

.dot-7 {
  background-color: #73D2DE;
  box-shadow: 0 4px 12px rgba(115, 210, 222, 0.4);
}

.dot-8 {
  background-color: #8F2D56;
  box-shadow: 0 4px 12px rgba(143, 45, 86, 0.4);
}

.dot-9 {
  background-color: #F8C630;
  box-shadow: 0 4px 12px rgba(248, 198, 48, 0.4);
}

.dot-10 {
  background-color: #8A4FFF;
  box-shadow: 0 4px 12px rgba(138, 79, 255, 0.4);
}

.dark-icon {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.badge-mint {
  background: #cbfbf1;
  color: #0d9488;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
}

.card-body h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--on-surface);
  line-height: 1.2;
}

.card-body p {
  color: var(--on-surface-variant);
  font-size: 1rem;
  line-height: 1.6;
}

.card-dark {
  background: var(--primary);
  color: white;
  border: none;
}

.card-dark .card-body h2 {
  color: white;
  font-size: 2.2rem;
}

.card-dark .card-body p {
  color: rgba(255, 255, 255, 0.8);
}

.badge-text {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mint-glow);
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}

.card-footer {
  margin-top: auto;
  padding-top: 2rem;
}

.btn-white {
  background: white;
  color: var(--primary);
  display: inline-flex;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.btn-white:hover {
  transform: scale(1.05);
}

/* Layout Row specific for Box 5 */
.layout-row {
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}

.layout-row .card-content {
  flex: 1;
}

.layout-row .card-graphic {
  flex: 1;
  display: flex;
  justify-content: center;
}

.mockup-window {
  width: 100%;
  max-width: 200px;
  height: 140px;
  background: rgba(153, 246, 228, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mockup-bar {
  width: 100%;
  height: 20px;
  background: white;
  border-radius: 0.5rem;
}

.mockup-bar.short {
  width: 60%;
  background: #cbfbf1;
}

@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .col-span-2 {
    grid-column: span 2;
  }

  .col-span-1 {
    grid-column: span 1;
  }

  .row-span-2 {
    grid-row: span 1;
  }

  .layout-row {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .bento-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 1.5rem;
    padding-left: 5%;
    padding-right: 5%;
    -webkit-overflow-scrolling: touch;
  }

  .bento-card {
    min-width: 80%;
    scroll-snap-align: start;
    padding: 1.5rem;
  }

  .bento-card .card-body h2 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
  }

  .bento-card .card-body p {
    font-size: 0.9rem;
  }

  .col-span-2,
  .col-span-1 {
    grid-column: auto;
  }

  .services-page {
    padding-top: 6rem;
  }
}

/* --- Packages Section --- */
.packages-section {
  margin-top: 6rem;
}

.packages-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 3rem;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
}

.package-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 100, 124, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 100, 124, 0.1);
}

.package-card.popular {
  border-color: var(--primary);
  box-shadow: 0 0 30px rgba(0, 100, 124, 0.15);
  transform: scale(1.05);
  background: linear-gradient(to bottom, #ffffff, #f0fdfa);
  z-index: 1;
}

.package-card.popular:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 100, 124, 0.2);
}

@media (max-width: 1024px) {
  .package-card.popular {
    transform: none;
  }

  .package-card.popular:hover {
    transform: translateY(-5px);
  }
}

.package-badge {
  position: absolute;
  top: -12px;
  right: 2rem;
  background: var(--accent);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 94, 58, 0.3);
}

.package-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 1.5rem;
}

.package-header h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--on-surface);
  margin: 0;
}

.package-indicator {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid rgba(0, 100, 124, 0.1);
  border-top-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
}

.package-card.popular .package-indicator {
  border-color: rgba(0, 100, 124, 0.2);
  border-top-color: var(--primary);
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.package-features li {
  color: var(--on-surface-variant);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.4;
}

.package-features li svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.package-card.popular .package-features li svg {
  color: var(--primary);
}

.whatsapp-btn-pkg {
  margin-top: 2rem;
  background: #000;
  color: #fff;
  border: 1px solid rgba(13, 148, 136, 0.3);
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  display: inline-block;
  align-self: flex-start;
}

.whatsapp-btn-pkg:hover {
  background: #111;
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
  transform: scale(1.02);
}

@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .packages-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-top: 2rem;
    padding-bottom: 1.5rem;
    padding-left: 5%;
    padding-right: 5%;
    -webkit-overflow-scrolling: touch;
  }

  .package-card {
    min-width: 80%;
    scroll-snap-align: start;
    padding: 1.5rem;
  }

  .package-card.popular {
    transform: scale(1);
  }

  .package-header {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
  }

  .package-header h3 {
    font-size: 1.25rem;
  }

  .package-features li {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
  }

  .whatsapp-btn-pkg {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
}

/* Process Page Layout */
.process-page {
  padding: 10rem 5% 5rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.process-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.process-timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.process-step {
  width: 100%;
  display: flex;
  margin: 0;
}

.step-left {
  justify-content: flex-start;
  padding-right: 15%;
}

.step-right {
  justify-content: flex-end;
  padding-left: 15%;
}

.step-card {
  background: white;
  border-radius: 2rem;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border-subtle);
  width: 100%;
  max-width: 700px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 100, 124, 0.08);
}

.step-card.card-dark {
  background: var(--primary);
  color: white;
  border: none;
}

.step-number {
  width: 80px;
  height: 80px;
  min-width: 80px;
  background: #e0e7ff;
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.dark-number {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.step-content h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.step-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--on-surface-variant);
  margin: 0;
}

.card-dark .step-content h2,
.card-dark .step-content p {
  color: white;
}

.card-dark .step-content p {
  color: rgba(255, 255, 255, 0.85);
}

.step-arrow {
  height: 80px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.arrow-right svg {
  transform: translateX(10%);
}

.arrow-left svg {
  transform: translateX(-10%);
}

@media (max-width: 768px) {

  .step-left,
  .step-right {
    justify-content: center;
    padding: 0;
  }

  .step-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .step-arrow {
    display: none;
  }

  .process-step {
    margin: 1rem 0;
  }
}

/* References Page Layout */
.references-page {
  padding: 10rem 5% 5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.references-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.references-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 100%;
}

.ref-item {
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ref-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 100, 124, 0.08);
}

.ref-image {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1rem;
}

.ref-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.ref-play-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.ref-link-btn {
  background: white;
  color: var(--on-surface);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.ref-details {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ref-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--on-surface);
  margin-bottom: 1rem;
  font-weight: 800;
}

.ref-quote {
  font-size: 1.05rem;
  color: var(--on-surface-variant);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.ref-author {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}

.ref-author strong {
  color: var(--on-surface);
  font-weight: 700;
}

.ref-author span {
  color: var(--on-surface-variant);
  font-size: 0.9rem;
}

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

.stat-box {
  background: #e6f9ed;
  /* light green matching the image */
  padding: 1rem 0.5rem;
  border-radius: 0.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 105px;
}

.stat-num-container {
  color: #047857;
  /* dark green */
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  margin-bottom: 0.25rem;
}

.stat-label {
  color: var(--on-surface-variant);
  font-size: 0.8rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .references-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 1.5rem;
    padding-left: 5%;
    padding-right: 5%;
    -webkit-overflow-scrolling: touch;
  }

  .ref-item {
    min-width: 80%;
    scroll-snap-align: start;
  }

  .ref-details {
    padding: 1.5rem;
  }

  .ref-stats {
    gap: 0.5rem;
  }

  .stat-box {
    padding: 0.75rem 0.25rem;
    min-height: 90px;
  }

  .stat-num-container {
    font-size: 1.25rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }
}

/* About Page Layout */
.about-page {
  padding: 15rem 5% 10rem;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 80vh;
  position: relative;
  z-index: 1;
}

.about-statement {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  line-height: 1.1;
  font-weight: 500;
  color: var(--on-surface);
  letter-spacing: -0.04em;
  margin: 0;
}

.about-bold {
  font-weight: 800;
  color: var(--primary);
}

.about-italic {
  font-weight: 300;
  font-style: italic;
  color: var(--primary);
  font-family: 'Inter', sans-serif;
}

.about-circled {
  color: var(--primary);
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.about-circled::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 105%;
  height: 140%;
  border: 3px solid var(--primary);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-1deg);
  pointer-events: none;
  opacity: 0.6;
}

.about-caption {
  margin-top: 4rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--primary);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-family: var(--font-heading);
}

.about-caption::before {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background-color: var(--outline-variant);
}

@media (max-width: 1024px) {
  .about-statement {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .about-page {
    padding: 10rem 5% 5rem;
  }

  .about-statement {
    font-size: 2.2rem;
  }

  .about-circled::after {
    border-width: 2px;
  }

  .about-caption {
    margin-top: 3rem;
  }
}

/* Scroll Animations */
.reveal-on-scroll {
  opacity: 0;
  transition: all 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

.reveal-bottom {
  transform: translateY(150px);
}

.reveal-left {
  transform: translate(-100px, 150px) rotate(-4deg);
}

.reveal-right {
  transform: translate(100px, 150px) rotate(4deg);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate(0, 0) rotate(0deg);
}

@media (max-width: 768px) {

  .packages-grid .reveal-on-scroll,
  .bento-grid .reveal-on-scroll,
  .references-grid .reveal-on-scroll,
  .cb-services-list .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Delay staggered animations based on inline delay or specific children */
.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

.delay-400 {
  transition-delay: 400ms;
}

.delay-500 {
  transition-delay: 500ms;
}

/* Fixed Call To Actions */
.floating-cta-top {
  position: fixed;
  top: 1.5rem;
  right: 5%;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: rgba(206, 255, 26, 0.25);
  /* Neon green background with low opacity */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem 0.8rem;
  border-radius: 40px;
  border: 1px solid rgba(206, 255, 26, 0.5);
  transform: translateY(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse-cta 2s infinite;
}

@keyframes pulse-cta {
  0% {
    box-shadow: 0 0 0 0 rgba(206, 255, 26, 0.8);
  }

  70% {
    box-shadow: 0 0 0 35px rgba(206, 255, 26, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(206, 255, 26, 0);
  }
}

.floating-cta-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15), 0 6px 15px rgba(0, 0, 0, 0.1);
}

.cta-btn-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #000;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(13, 148, 136, 0.3);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cta-btn-pill.highlight {
  border-color: rgba(0, 229, 255, 0.5);
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.1);
}

.cta-btn-pill:hover {
  background: #111;
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.2);
  transform: scale(1.02);
}

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

.floating-cta-bottom {
  position: fixed;
  bottom: 2rem;
  right: 5%;
  z-index: 1000;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  font-size: 2rem;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  background-color: #1ebe5d;
  animation: none;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  .floating-cta-top {
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%;
    transform: none;
    flex-direction: row;
    justify-content: space-around;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.9);
    padding: 0.5rem;
    box-shadow: none;
    animation: none;
    border: none;
  }

  .floating-cta-top:hover {
    transform: none;
    box-shadow: none;
  }

  .cta-btn-pill {
    padding: 0.6rem 0.5rem;
    font-size: 0.75rem;
  }

  .floating-cta-bottom {
    bottom: 4rem;
    /* above the new bottom bar */
    right: 1rem;
  }

  .whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
  }
}

/* Fix for ref-card scroll reveal overwriting flex transition */
.ref-card.reveal-on-scroll {
  transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

@media (max-width: 768px) {
  .ref-card.reveal-on-scroll {
    transition: flex 0.4s ease, opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  }
}

/* --- FAQ Section --- */
.faq-section {
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 3rem;
}

.faq-item {
  border: 1px solid #7dd3fc;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  background-color: var(--surface);
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--on-surface);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: var(--hero-glow);
}

.faq-icon {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-family: var(--font-body);
  color: var(--on-surface-variant);
  line-height: 1.6;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

/* --- FOOTER --- */
.site-footer {
  padding: 4rem 2rem;
  margin-top: 4rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: center;
  background-color: transparent;
  position: relative;
  z-index: 10;
}

.site-footer .logo img {
  height: 160px;
  width: auto;
}

.footer-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-section h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--on-surface);
}

.footer-link {
  color: var(--on-surface-variant);
  text-decoration: none;
  font-family: var(--font-body);
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary);
}

.social-icons {
  display: flex;
  gap: 1.25rem;
}

.social-icon {
  color: var(--on-surface-variant);
  transition: color 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon:hover {
  color: var(--primary);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-section {
    align-items: center;
  }

  .social-icons {
    justify-content: center;
  }
}

/* ==========================================================================
   Custom Package Builder Section
   ========================================================================== */
.custom-builder-section {
  padding: 4rem 5%;
}

.cb-header {
  text-align: center;
  margin-bottom: 3rem;
}

.cb-header h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.cb-header p {
  color: var(--on-surface-variant);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.custom-builder-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.cb-services-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cb-service-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(0, 100, 124, 0.1);
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  cursor: pointer;
}

.cb-service-item:hover {
  transform: translateX(5px);
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(0, 100, 124, 0.1);
}

.cb-service-item.selected {
  border-color: var(--primary);
  background: #f0fdfa;
  /* light mint/teal */
}

.cb-service-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cb-service-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 100, 124, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.cb-service-item.selected .cb-service-icon {
  background: var(--primary);
  color: white;
}

.cb-service-name {
  font-weight: 600;
  color: var(--on-surface);
  font-size: 1.1rem;
}

/* Custom Toggle Switch */
.cb-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  flex-shrink: 0;
}

.cb-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cb-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cbd5e1;
  transition: .4s;
  border-radius: 34px;
}

.cb-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

.cb-toggle input:checked+.cb-slider {
  background-color: var(--accent);
}

.cb-toggle input:checked+.cb-slider:before {
  transform: translateX(24px);
}

/* Summary Card */
.cb-summary-wrapper {
  position: sticky;
  top: 120px;
  /* Offset for fixed nav */
  align-self: start;
}

.cb-summary-card {
  background: var(--primary);
  color: white;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 15px 40px rgba(0, 100, 124, 0.2);
  display: flex;
  flex-direction: column;
}

.cb-summary-card h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 1rem;
}

.cb-summary-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex-grow: 1;
  min-height: 150px;
}

.cb-summary-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.4;
  animation: fadeIn 0.3s ease-in-out;
}

.cb-summary-list li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: #a7f3d0;
}

.cb-empty-text {
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  font-size: 0.95rem;
  text-align: center;
  margin-top: 2rem;
}

.cb-whatsapp-btn {
  background: #ffffff;
  color: var(--primary);
  text-decoration: none;
  padding: 1rem;
  border-radius: 0.5rem;
  font-weight: 700;
  text-align: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: auto;
}

.cb-whatsapp-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  background: #f8fafc;
}

.cb-whatsapp-btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .custom-builder-grid {
    grid-template-columns: 1fr;
  }

  .cb-summary-wrapper {
    position: static;
  }
}

@media (max-width: 768px) {
  .cb-services-list {
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 1.5rem;
    padding-left: 5%;
    padding-right: 5%;
    -webkit-overflow-scrolling: touch;
  }

  .cb-service-item {
    min-width: 80%;
    scroll-snap-align: start;
    padding: 1.25rem;
  }
}

/* =========================================
   Modals & Calendar (Interactive UI)
   ========================================= */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background: white;
  width: 90%;
  max-width: 450px;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.schedule-modal-container {
  max-width: 550px;
}

.modal-overlay.active .modal-container {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--on-surface-variant);
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--on-surface);
}

.modal-icon {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
}

.modal-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--on-surface);
  margin-bottom: 0.5rem;
}

.modal-desc {
  text-align: center;
  color: var(--on-surface-variant);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.modal-input-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.modal-input {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.modal-input:focus {
  outline: none;
  border-color: var(--primary);
}

.modal-btn {
  width: 100%;
  justify-content: center;
  font-size: 1.1rem;
  padding: 1rem;
}

/* Calendar Styles */
.calendar-wrapper {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--primary);
  color: white;
  padding: 1rem;
}

.calendar-header h4 {
  margin: 0;
  font-weight: 700;
}

.calendar-header button {
  background: transparent;
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0 0.5rem;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
  background: rgba(0, 0, 0, 0.05);
}

.cal-day-name {
  background: white;
  text-align: center;
  padding: 0.5rem 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--on-surface-variant);
  text-transform: uppercase;
}

.cal-day {
  background: white;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.cal-day:not(.disabled):hover {
  background: rgba(0, 100, 124, 0.1);
  color: var(--primary);
}

.cal-day.disabled {
  color: rgba(0, 0, 0, 0.2);
  background: #fafafa;
  pointer-events: none;
}

.cal-day.selected {
  background: var(--primary);
  color: white;
}

/* Time Slots */
.time-slots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.time-slot {
  padding: 1rem;
  border: 1.5px solid var(--primary);
  background: transparent;
  color: var(--primary);
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.time-slot:hover {
  background: var(--primary);
  color: white;
}

.modal-back {
  background: transparent;
  border: none;
  color: var(--on-surface-variant);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  padding: 0;
  font-size: 0.9rem;
}

.modal-back:hover {
  color: var(--on-surface);
}

@media (max-width: 480px) {
  .modal-container {
    padding: 1.5rem;
  }
}

/* Comparison Section */
.comparison-section {
  padding: 6rem 2rem;
  background-color: transparent;
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.comparison-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}
.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--hero-glow); 
  top: -100px;
  left: -100px;
}
.shape-2 {
  width: 500px;
  height: 500px;
  background: #a3ff00; /* Green accent */
  bottom: -150px;
  right: -100px;
}

.comparison-header {
  text-align: center;
  max-width: 700px;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}

.comparison-header h2 {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.comparison-header h2 span {
  background-color: #a3ff00;
  color: #0f172a;
  padding: 0.1rem 0.6rem;
  border-radius: 0.5rem;
  display: inline-block;
  margin-left: 0.2rem;
}

.comparison-header p {
  font-size: 1.15rem;
  color: #475569;
  line-height: 1.7;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1050px;
  width: 100%;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .comparison-grid {
      grid-template-columns: 1fr 1fr;
      align-items: stretch;
  }
}

.comp-card {
  border-radius: 20px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comp-card:hover {
  transform: translateY(-5px);
}

.card-traditional {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.card-traditional h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed #cbd5e1;
}

.card-mil {
  background: #0f172a;
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(163, 255, 0, 0.15); /* Green shadow */
  border: 1px solid rgba(163, 255, 0, 0.2);
  overflow: hidden;
}

.card-mil::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #a3ff00, var(--primary));
}

.card-mil h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  gap: 12px;
}

.mil-badge {
  background: rgba(163, 255, 0, 0.15);
  color: #a3ff00;
  font-size: 0.8rem;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.comp-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.comp-list li {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.5;
}

.card-traditional .comp-list li {
  color: #64748b;
}

.card-mil .comp-list li {
  color: #f1f5f9;
}

.icon-box {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.card-traditional .icon-box {
  background-color: #fef2f2;
  color: #ef4444;
}

.card-mil .icon-box {
  background-color: rgba(163, 255, 0, 0.15);
  color: #a3ff00;
}