/* ================================================
   CARPET & SOFA RESCUE CALGARY - Main Styles
   ================================================ */

/* --- DESIGN TOKENS --- */
:root {
  --blue-dark:    #1d2c47;
  --blue-main:    #4b6a90;
  --blue-light:   #aef2e6;
  --blue-pale:    #f0f8ff;
  --green-dark:   #1d2c47;
  --green-main:   #48c4b7;
  --green-light:  #71ad29;
  --green-pale:   #eaf1f4;
  --white:        #ffffff;
  --off-white:    #f4f9fb;
  --gray-50:      #fcfdfe;
  --gray-100:     #eaf1f4;
  --gray-300:     #b0bec5;
  --gray-500:     #4a5c7c;
  --gray-700:     #2c3e50;
  --gray-900:     #1d2c47;
  --gradient-blue:  linear-gradient(135deg, #aef2e6 0%, #b2e6f5 100%);
  --gradient-green: linear-gradient(135deg, #96e8d9 0%, #9dddf0 100%);
  --gradient-hero:  linear-gradient(135deg, #f0f8ff 0%, #eaf1f4 100%);
  --shadow-sm:    0 4px 15px rgba(174, 242, 230, 0.4);
  --shadow-md:    0 8px 25px rgba(174, 242, 230, 0.5);
  --shadow-lg:    0 12px 35px rgba(174, 242, 230, 0.6);
  --shadow-xl:    0 16px 45px rgba(174, 242, 230, 0.7);
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    32px;
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--gray-700);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- HEADER --- */
.header {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1200px;
  z-index: 1000;
  /* changed to semi-transparent light blue/green gradient */
  background: linear-gradient(135deg, rgba(43, 138, 212, 0.85), rgba(46, 204, 113, 0.85));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}
.header.scrolled {
  box-shadow: var(--shadow-md);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 95px;
  gap: 1.5rem;
  position: relative;
}
.nav-logo { display: flex; align-items: center; gap: 0.85rem; }
.logo-img { 
  height: 80px; 
  width: auto; 
  transition: transform var(--transition);
  filter: brightness(0) invert(1); /* Turns the golden logo into a solid white logo */
}
.logo-img:hover {
  transform: scale(1.05); /* Interactive pop effect */
}

.logo-text {
  display: none;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}
.logo-icon { font-size: 2.4rem; }
.logo-title {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}
.logo-subtitle {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #aae09a;
  letter-spacing: 0.05em;
}
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  color: #eeeeee;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover { background: rgba(255,255,255,0.1); color: #ffffff; }
.nav-cta {
  background: var(--gradient-blue);
  color: var(--white);
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(26,111,170,0.3);
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(26,111,170,0.4); }
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 6px;
  border-radius: 6px;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: var(--transition);
}

/* --- NEW PREMIUM HERO --- */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--white);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 2rem; /* Adjusted for tighter feel */
}
.hero-bg-glass-shape {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, rgba(43,138,212,0.06) 0%, rgba(37,168,104,0.02) 50%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 600px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--blue-pale);
  color: var(--blue-main);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  animation: fadeSlideUp 0.6s ease both;
}
.badge-icon { font-size: 1.1rem; }
.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  animation: fadeSlideUp 0.7s ease 0.1s both;
}
.text-gradient {
  background: var(--gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.15rem;
  color: var(--gray-500);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 90%;
  animation: fadeSlideUp 0.7s ease 0.2s both;
}
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  animation: fadeSlideUp 0.7s ease 0.3s both;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--gray-700);
  font-size: 0.95rem;
}
.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--gradient-green);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 900;
}
.hero-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeSlideUp 0.7s ease 0.4s both;
}
.btn-primary {
  background: var(--gradient-blue);
  color: var(--blue-dark);
  padding: 1rem 2.25rem;
  border-radius: 100px;
  font-size: 1.05rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(26,111,170,0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26,111,170,0.4);
}
.pulse-hover {
  position: relative;
  overflow: hidden;
}
.pulse-hover::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 150%; height: 150%;
  background: rgba(255,255,255,0.2);
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  transition: transform 0.6s ease;
}
.pulse-hover:hover::after {
  transform: translate(-50%, -50%) scale(1);
}
.arrow { transition: transform 0.3s ease; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-outline {
  background: var(--white);
  color: var(--gray-700);
  padding: 1rem 2.25rem;
  border-radius: 100px;
  font-size: 1.05rem;
  font-weight: 700;
  border: 2px solid var(--gray-100);
  transition: var(--transition);
  cursor: pointer;
}
.btn-outline:hover {
  border-color: var(--blue-light);
  color: var(--blue-main);
  background: var(--gray-50);
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: fadeSlideUp 0.7s ease 0.5s both;
}
.avatars {
  display: flex;
  align-items: center;
}
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 3px solid var(--white);
  margin-left: -12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}
.avatar:first-child { margin-left: 0; }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar-more {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 3px solid var(--white);
  margin-left: -12px;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-700);
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  z-index: 10;
}
.trust-text {
  display: flex;
  flex-direction: column;
}
.stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 2px; }
.trust-text span { font-size: 0.85rem; color: var(--gray-500); font-weight: 500; }

/* Right Visual */
.hero-visual {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 0.8s ease 0.2s both;
}
.visual-wrapper {
  position: relative;
  width: 100%;
  max-width: 550px;
  aspect-ratio: 4/5;
  border-radius: 2rem;
  z-index: 2;
}
.main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2rem;
  box-shadow: 0 20px 60px rgba(13,79,122,0.15);
  position: relative;
  z-index: 2;
}
.visual-backdrop-shape {
  position: absolute;
  top: -5%;
  bottom: -5%;
  left: 10%;
  right: -10%;
  background: var(--gradient-blue);
  border-radius: 2.5rem;
  transform: rotate(4deg);
  z-index: 1;
  opacity: 0.1;
  transition: transform 0.5s ease;
}
.hero-visual:hover .visual-backdrop-shape {
  transform: rotate(6deg) scale(1.02);
}
.floating-card {
  position: absolute;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem 1.25rem;
  border-radius: 1rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10;
  border: 1px solid rgba(255,255,255,0.7);
  animation: float 6s ease-in-out infinite;
}
.card-top-right {
  top: 10%;
  right: -15%;
  animation-delay: 0s;
}
.card-bottom-left {
  bottom: 15%;
  left: -10%;
  animation-delay: 2s;
}
.floating-icon-wrap {
  width: 40px; height: 40px;
  background: var(--blue-pale);
  color: var(--blue-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.floating-text {
  display: flex;
  flex-direction: column;
}
.floating-text strong { font-size: 0.95rem; color: var(--gray-900); }
.floating-text span { font-size: 0.8rem; color: var(--gray-500); }
.paw-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--green-dark);
  font-size: 1rem;
}
.paw-icon { font-size: 1.2rem; }

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}
@keyframes fadeSlideUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  0% { opacity: 0; transform: translateX(30px); }
  100% { opacity: 1; transform: translateX(0); }
}

@media (max-width: 992px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
    padding-top: 2rem;
  }
  .hero-content {
    margin: 0 auto;
    align-items: center;
  }
  .hero-features { justify-content: center; }
  .hero-actions { justify-content: center; }
  .floating-card { display: none; } /* Simplify on mobile */
  .hero-trust { justify-content: center; }
}

/* --- PET & CHILD SAFE BANNER --- */
.safe-banner {
  background: var(--gradient-hero);
  padding: 3rem 0;
  color: var(--gray-900);
}
.safe-banner-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.safe-icon-wrap {
  display: flex;
  gap: 0.5rem;
  font-size: 3rem;
  flex-shrink: 0;
}
.safe-text-wrap { flex: 1; min-width: 200px; }
.safe-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.safe-desc { opacity: 0.85; line-height: 1.6; }
.safe-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.cert-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 500;
  border: 1px solid rgba(29,44,71,0.1);
}
.cert-check {
  color: var(--green-light);
  font-weight: 700;
}

/* --- SERVICES --- */
.services {
  padding: 3rem 0;
  background: var(--off-white);
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-tag {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--blue-main);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.section-desc {
  color: var(--gray-500);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}
/* Services Section High-Tech Upgrade */
.services {
  position: relative;
  padding: 60px 0;
  background: var(--white);
  overflow: hidden;
}

.services-bg-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(72, 196, 183, 0.12) 0%, rgba(255,255,255,0) 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: blobFloat 25s infinite alternate ease-in-out;
}

.blob-1 {
  top: -100px;
  right: -100px;
}

.blob-2 {
  bottom: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(29, 44, 71, 0.06) 0%, rgba(255,255,255,0) 70%);
  animation-delay: -12s;
}

@keyframes blobFloat {
  0% { transform: translate(0, 0) scale(1) rotate(0deg); }
  33% { transform: translate(30px, -50px) scale(1.1) rotate(10deg); }
  66% { transform: translate(-20px, 40px) scale(0.9) rotate(-10deg); }
  100% { transform: translate(0, 0) scale(1) rotate(0deg); }
}

.horizontal-services-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
  margin-bottom: 4rem;
}

.horizontal-service-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(72, 196, 183, 0.2);
  padding: 30px 40px;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgba(29, 44, 71, 0.04);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  align-items: center;
  gap: 35px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.horizontal-service-card:hover {
  transform: translateX(10px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(220, 252, 245, 0.9) 100%);
  border-color: var(--green-main);
  box-shadow: 0 20px 50px rgba(72, 196, 183, 0.15);
}

/* Accent line on the left */
.horizontal-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(to bottom, var(--green-main), var(--blue-main));
  opacity: 0.6;
  transition: width 0.3s ease;
}

.horizontal-service-card:hover::before {
  width: 10px;
  opacity: 1;
}

.hs-icon {
  font-size: 3rem;
  width: 80px;
  height: 80px;
  background: rgba(72, 196, 183, 0.1);
  color: var(--green-main);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.horizontal-service-card:hover .hs-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--green-main);
  color: white;
  box-shadow: 0 10px 20px rgba(72, 196, 183, 0.3);
}

.hs-content {
  flex: 1;
}

.hs-content h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.hs-content p {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.hs-action {
  font-weight: 700;
  color: var(--blue-main);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
}

.horizontal-service-card:hover .hs-action {
  color: var(--green-dark);
  transform: translateX(5px);
}

@media (max-width: 1024px) {
  .horizontal-service-card {
    flex-direction: column;
    text-align: center;
    padding: 40px 25px;
    gap: 20px;
  }
  .horizontal-service-card:hover {
    transform: translateY(-10px);
  }
}

/* SPECIAL PACKAGE CARD - NEON LIGHT STYLE */
.hs-special-package {
  background: linear-gradient(145deg, #ffffff 0%, #f0fdfa 100%);
  border: 2px solid #48c4b7;
  box-shadow: 0 15px 45px rgba(72, 196, 183, 0.25), 0 0 20px rgba(72, 196, 183, 0.15);
}

.hs-special-package:hover {
  transform: translateX(10px) scale(1.01);
  background: linear-gradient(145deg, #f0fdfa 0%, #e0fcf6 100%);
  box-shadow: 0 20px 60px rgba(72, 196, 183, 0.35), 0 0 30px rgba(72, 196, 183, 0.2);
}

.hs-special-package .hs-icon {
  background: #48c4b7;
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(72, 196, 183, 0.3);
}

.hs-special-package:hover .hs-icon {
  transform: scale(1.1) rotate(5deg);
  background: #36b3a5;
}

.hs-special-package h4 {
  color: var(--gray-900) !important;
}

.hs-special-package p {
  color: var(--gray-600) !important;
}

.hs-special-package .hs-action {
  color: #36b3a5;
}

.hs-special-package:hover .hs-action {
  color: var(--green-dark);
}

.hs-special-package::before {
  background: linear-gradient(to bottom, #48c4b7, #00d2ff);
  opacity: 1;
  width: 8px;
}

.hs-special-package:hover::before {
  width: 12px;
}

/* --- PROMO BANNER --- */
.promo-section {
  position: relative;
  padding: 3rem 0;
  background: var(--gray-50);
  overflow: hidden;
}
.promo-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.promo-card {
  position: relative;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-xl);
  padding: 3rem;
  backdrop-filter: blur(8px);
  overflow: hidden;
}
.promo-ribbon {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: var(--gradient-green);
  color: var(--blue-dark);
  padding: 0.4rem 1.2rem;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 700;
}
.promo-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.promo-left {
  text-align: center;
  flex-shrink: 0;
}
.promo-discount {
  font-family: 'Outfit', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
  text-shadow: 0 0 40px rgba(0,0,0,0.05);
}
.promo-discount span {
  font-size: 3rem;
  color: var(--green-light);
}
.promo-label {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--green-light);
  letter-spacing: 0.2em;
}
.promo-divider {
  width: 1px;
  height: 160px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
.promo-right { flex: 1; min-width: 260px; }
.promo-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}
.promo-subtitle {
  color: var(--green-light);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.promo-text {
  color: var(--gray-700);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.promo-sessions {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.session-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}
.session-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  color: var(--gray-500);
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}
.session-item.active .session-num {
  background: var(--green-light);
  color: var(--gray-900);
  border-color: var(--green-light);
  box-shadow: 0 0 20px rgba(46,204,113,0.4);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(46,204,113,0.4); }
  50% { box-shadow: 0 0 35px rgba(46,204,113,0.7); }
}
.session-tag {
  background: var(--green-pale);
  color: var(--green-dark);
  padding: 0.15rem 0.5rem;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
}
.btn-promo {
  background: var(--gradient-green);
  color: var(--blue-dark);
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37,168,104,0.4);
}
.btn-promo:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,168,104,0.5); }

/* Floating particles */
.particle {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(29,44,71,0.05);
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* --- BEFORE/AFTER SLIDER --- */
.before-after-section {
  padding: 3rem 0;
  background: var(--gray-50);
}
.slider-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  user-select: none;
  cursor: col-resize;
}
.slider-pair {
  position: absolute;
  inset: 0;
}
.slider-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider-before-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  width: 50%;
}
.slider-before-wrap .slider-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; /* will be updated by JS */
  max-width: none;
  height: 100%;
  object-fit: cover;
}
.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  z-index: 10;
  transform: translateX(-50%);
}
.handle-line {
  flex: 1;
  width: 3px;
  background: var(--white);
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
}
.handle-circle {
  width: 48px; height: 48px;
  background: var(--gradient-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(26,111,170,0.5);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.handle-circle:hover { transform: scale(1.15); }
.slider-label-before,
.slider-label-after {
  position: absolute;
  top: 1rem;
  background: rgba(0,0,0,0.5);
  color: var(--white);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  backdrop-filter: blur(8px);
}
.slider-label-before { left: 1rem; }
.slider-label-after { right: 1rem; }
.slider-no-images {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--gray-300);
}
.slider-no-images.show {
  display: flex;
}
.no-img-icon { font-size: 3rem; }
.no-img-hint { font-size: 0.9rem; }
.no-img-hint a { color: var(--blue-main); text-decoration: underline; }
.slider-pair.hidden { display: none; }
.slider-thumbs {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.thumb-item {
  width: 64px; height: 40px;
  border-radius: 8px;
  overflow: hidden;
  border: 3px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  background: var(--gray-100);
}
.thumb-item img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.thumb-item.active { border-color: var(--blue-main); }
.thumb-item:hover { border-color: var(--blue-light); transform: scale(1.05); }
.slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}
.slider-nav-btn {
  width: 40px; height: 40px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 50%;
  font-size: 1.4rem;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.slider-nav-btn:hover { background: var(--blue-pale); color: var(--blue-main); box-shadow: var(--shadow-md); }
.slider-count {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-500);
  min-width: 50px;
  text-align: center;
}

/* --- WHY US --- */
.why-us {
  padding: 3rem 0;
  background: var(--white);
}
.compact-why-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.compact-why-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--off-white);
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.compact-why-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border-color: var(--blue-light);
  transform: translateY(-2px);
}
.cw-icon { font-size: 1.25rem; }
.compact-why-item strong {
  font-size: 0.95rem;
  color: var(--gray-900);
  font-weight: 600;
}

/* --- CONTACT --- */
.contact-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--blue-pale) 0%, var(--green-pale) 100%);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info .section-tag { margin-bottom: 0.75rem; }
.contact-info .section-title { text-align: left; margin-bottom: 1rem; }
.contact-desc { color: var(--gray-500); margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.contact-item div {
  display: flex;
  flex-direction: column;
}
.contact-item strong {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-main);
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.contact-item span, .contact-item a {
  color: var(--gray-700);
  font-size: 0.95rem;
}

/* FORM */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
}
.form-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--gray-900);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-light);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(43,138,212,0.12);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-submit { width: 100%; font-size: 1rem; margin-top: 0.5rem; }
.form-success {
  display: none;
  margin-top: 1rem;
  padding: 0.875rem;
  background: var(--green-pale);
  color: var(--green-dark);
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 600;
}
.form-success.show { display: block; }

/* --- FOOTER --- */
.footer { background: var(--gray-100); color: var(--gray-700); padding: 2rem 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer-logo-icon { font-size: 2rem; }
.footer-logo-title {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
}
.footer-logo-sub {
  display: block;
  font-size: 0.75rem;
  color: var(--green-light);
  font-weight: 500;
}
.footer-tagline { font-size: 0.9rem; margin-bottom: 1rem; line-height: 1.6; }
.footer-safe-badge {
  display: inline-block;
  background: rgba(46,204,113,0.15);
  border: 1px solid rgba(46,204,113,0.3);
  color: var(--green-light);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
}
.footer-links h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--blue-light); }
.footer-contact h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}
.footer-contact a { transition: var(--transition); }
.footer-contact a:hover { color: var(--blue-light); }
.footer-bottom {
  border-top: 1px solid rgba(29,44,71,0.08);
  padding: 1.25rem 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.85rem; }
.footer-safe { color: var(--gray-500); margin-top: 0.35rem; font-size: 0.8rem; }

/* --- ANIMATIONS --- */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
  .contact-info .section-title { text-align: center; }
  .contact-info { text-align: center; }
  .contact-details { align-items: center; }
  .contact-item { 
    justify-content: flex-start; /* Align icons and text to their own start */
    width: fit-content;
    text-align: left;
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .hero-inner { flex-direction: column; gap: 2.5rem; padding-top: 1rem; }
  .hero-image-wrap { width: 85%; max-width: 420px; }
  .hero-content { text-align: center; }
  .hero-badges-row { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-badge { justify-content: center; }
}

@media (max-width: 1024px) {
  .nav-links { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 1.5rem; box-shadow: var(--shadow-md); border-top: 1px solid var(--gray-100); z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-burger { display: flex; }
  .nav-cta { display: none; }
  .promo-content { flex-direction: column; gap: 1.5rem; }
  .promo-divider { width: 80px; height: 1px; }
  .promo-left { text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .safe-banner-inner { flex-direction: column; text-align: center; }
  .safe-certs { justify-content: center; }
  .compact-package-banner { flex-direction: column; text-align: center; gap: 1rem; }
  .cp-left { flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-badges-row { flex-direction: column; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; }
  .package-includes { grid-template-columns: 1fr; }
}


/* ================= HERO V1 ================= */
.hero-v1 { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; padding-top: 100px; overflow: hidden; }
.hero-v1-bg { position: absolute; inset: 0; background: url('hero-bg-wide.png') center/cover no-repeat; z-index: 1; }
.hero-v1-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(232, 244, 253, 0.85) 0%, rgba(232, 249, 241, 0.9) 100%); backdrop-filter: blur(4px); }
.hero-v1-inner { position: relative; z-index: 2; text-align: center; }
.hero-v1-content { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
.pill-badge { background: white; color: var(--blue-main); padding: 0.5rem 1.25rem; border-radius: 50px; font-weight: 700; font-size: 0.9rem; box-shadow: 0 4px 15px rgba(0,0,0,0.05); margin-bottom: 2rem; border: 1px solid var(--blue-pale); }
.title-v1 { font-family: 'Outfit', sans-serif; font-size: clamp(3rem, 6vw, 5rem); font-weight: 800; color: var(--blue-dark); line-height: 1.1; margin-bottom: 1.5rem; text-shadow: 0 2px 10px rgba(255,255,255,0.5); }
.desc-v1 { font-size: 1.25rem; color: var(--gray-700); margin-bottom: 3rem; max-width: 600px; }
.action-v1 { display: flex; background: white; padding: 0.5rem; border-radius: 50px; box-shadow: 0 10px 30px rgba(26,111,170,0.15); width: 100%; max-width: 500px; margin-bottom: 3rem; }
.input-v1 { flex: 1; border: none; outline: none; padding: 0 1.5rem; font-size: 1rem; border-radius: 50px; background: transparent;}
.btn-v1 { background: var(--gradient-green); color: white; border: none; padding: 1rem 2rem; border-radius: 50px; font-weight: 700; font-size: 1rem; cursor: pointer; transition: 0.3s; }
.btn-v1:hover { box-shadow: 0 5px 15px rgba(37,168,104,0.4); transform: translateY(-2px); }
.trust-v1 { font-weight: 600; color: var(--blue-main); letter-spacing: 1px; font-size: 0.95rem; }

/* ================= HERO V2 ================= */
.hero-v2 { display: flex; min-height: 100vh; padding-top: 0; background: var(--off-white); }
.hero-v2-left { flex: 1; display: flex; align-items: center; justify-content: flex-end; background: linear-gradient(135deg, #e8f4fd 0%, #ffffff 100%); padding: 6rem 4rem 4rem 2rem; }
.v2-content { max-width: 500px; margin-left: auto; }
.hero-v2-right { flex: 1; position: relative; overflow: hidden; }
.hero-v2-right img { width: 100%; height: 100%; object-fit: cover; }
.v2-tag { color: var(--green-main); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1rem; }
.v2-title { font-family: 'Outfit', sans-serif; font-size: 4rem; font-weight: 800; color: var(--gray-900); line-height: 1.1; margin-bottom: 1.5rem; }
.v2-title span { color: var(--blue-main); }
.v2-desc { font-size: 1.2rem; color: var(--gray-500); margin-bottom: 2.5rem; }
.v2-btns { display: flex; gap: 1rem; }
.v2-btn-prim { background: var(--blue-main); color: white; padding: 1rem 2rem; border-radius: 8px; font-weight: 700; font-size: 1rem; border: none; cursor:pointer;}
.v2-btn-sec { background: transparent; color: var(--blue-main); border: 2px solid var(--blue-main); padding: 1rem 2rem; border-radius: 8px; font-weight: 700; font-size: 1rem; cursor:pointer;}
@media(max-width: 900px){ .hero-v2 { flex-direction: column; } .hero-v2-left{ padding: 8rem 2rem 4rem; justify-content: center;} .v2-content{margin: 0;} .hero-v2-right {min-height: 50vh;} }

/* ================= HERO V3 ================= */
.hero-v3 { min-height: 100vh; display: flex; align-items: center; background: #ffffff; padding-top: 100px; overflow: hidden; position: relative;}
.hero-v3-inner { display: flex; align-items: center; gap: 4rem; width: 100%; }
.v3-text { flex: 1; z-index: 2; padding: 2rem 0; }
.v3-visual { flex: 1; position: relative; display: flex; justify-content: center; align-items: center; z-index: 1; padding: 2rem;}
.v3-badge { display: inline-block; background: var(--green-pale); color: var(--green-dark); padding: 0.5rem 1rem; border-radius: 30px; font-weight: 700; margin-bottom: 1.5rem; }
.v3-title { font-family: 'Outfit', sans-serif; font-size: 3.5rem; font-weight: 800; color: #1a2536; line-height: 1.2; margin-bottom: 1.5rem; }
.v3-desc { font-size: 1.15rem; color: #6b7c93; margin-bottom: 2.5rem; max-width: 480px; }
.v3-btn { background: var(--gradient-blue); color: white; padding: 1rem 2.5rem; border-radius: 30px; font-weight: 700; font-size: 1.1rem; border: none; cursor:pointer; box-shadow: 0 10px 20px rgba(26,111,170,0.2); }
.blob-bg { position: absolute; width: 110%; height: 110%; background: var(--blue-pale); border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; animation: morph 8s ease-in-out infinite; z-index: -1; }
.blob-img { width: 100%; height: auto; border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; object-fit: cover; aspect-ratio: 1; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
@keyframes morph { 0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; } 50% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; } }
@media(max-width: 900px){ .hero-v3-inner{ flex-direction: column; text-align: center; } .v3-text{ align-items: center; display: flex; flex-direction: column; } .blob-img{ width: 100%;} }

/* ================= HERO V4 ================= */
.hero-v4 { position: relative; min-height: 100vh; display: flex; align-items: flex-end; padding-bottom: 4rem; overflow: hidden; }
.v4-bg { position: absolute; inset: 0; z-index: 1; }
.v4-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.v4-inner { position: relative; z-index: 2; width: 100%; }
.v4-card { background: rgba(255,255,255,0.85); backdrop-filter: blur(15px); border-radius: 20px; padding: 3rem; display: flex; justify-content: space-between; align-items: center; box-shadow: 0 20px 50px rgba(0,0,0,0.1); border: 1px solid rgba(255,255,255,0.6); }
.v4-card-content { max-width: 50%; }
.v4-title { font-family: 'Outfit', sans-serif; font-size: 3.5rem; font-weight: 800; color: var(--blue-dark); margin-bottom: 1rem; line-height: 1.1; }
.v4-desc { font-size: 1.1rem; color: var(--gray-700); margin-bottom: 2rem; }
.v4-btn { background: var(--green-main); color: white; padding: 1rem 2rem; border-radius: 50px; font-weight: 700; border: none; cursor:pointer;}
.v4-stats { display: flex; gap: 3rem; }
.stat { text-align: center; }
.stat .num { font-family: 'Outfit', sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--blue-main); }
.stat .lab { font-size: 0.9rem; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: 1px; }
@media(max-width: 900px){ .v4-card{ flex-direction: column; text-align: center; gap: 2rem; padding: 2rem; } .v4-card-content{ max-width: 100%; } .v4-stats{ justify-content: center; gap: 2rem; flex-wrap: wrap;} }

/* ================= HERO V5 ================= */
.hero-v5 { min-height: 100vh; background: radial-gradient(circle at center, #f7fbff 0%, #e8edf3 100%); display: flex; align-items: center; padding-top: 100px; overflow: hidden;}
.hero-v5-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center; width: 100%; height: 100%;}
.v5-main-text { padding-right: 2rem; z-index: 2; }
.v5-subtitle { color: var(--green-main); font-weight: 800; font-size: 1.1rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1rem; }
.v5-title { font-family: 'Outfit', sans-serif; font-size: 4.5rem; font-weight: 800; color: var(--gray-900); line-height: 1.05; margin-bottom: 2rem; }
.v5-btn { background: var(--gray-900); color: white; padding: 1.25rem 2.5rem; border-radius: 100px; font-size: 1.1rem; font-weight: 700; border: none; cursor:pointer; transition: 0.3s; }
.v5-btn:hover { background: var(--blue-main); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.2) }
.v5-gallery { position: relative; height: 600px; width: 100%; }
.v5-img { position: absolute; border-radius: 24px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); border: 8px solid white; transition: 0.3s; }
.v5-img:hover { z-index: 10; transform: scale(1.05); }
.v5-img img { width: 100%; height: 100%; object-fit: cover; }
.v5-img-1 { width: 60%; height: 50%; top: 0; left: 0; z-index: 2; }
.v5-img-2 { width: 55%; height: 55%; bottom: 0; left: 10%; z-index: 3; }
.v5-img-3 { width: 50%; height: 45%; top: 20%; right: 0; z-index: 1; }
@media(max-width: 900px){ .hero-v5-inner{ grid-template-columns: 1fr; text-align: center; } .v5-main-text{ padding-right:0; margin-bottom: 3rem; } .v5-gallery{ height: 400px; } }

