/* ========================================
   SHREE PEST CONTROL SERVICES
   Premium Design System — styles.css
   ======================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --cyan: #03DCE0;
  --cyan-dark: #02969A;
  --cyan-deeper: #02787A;
  --cyan-glow: rgba(3, 220, 224, 0.5);
  --cyan-light: #E0F7FA;
  --cyan-subtle: #b2ebf2;
  --dark: #0B0D17;
  --dark-soft: #161927;
  --dark-card: #1C1F33;
  --white: #ffffff;
  --cream: #FCFBF8;
  --sand: #F5F2EB;
  --off-white: #F5F2EB;
  --gray-50: #FAFBFC;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --green-500: #10b981;
  --green-600: #059669;
  --yellow-500: #f59e0b;
  --red-500: #ef4444;
  --gradient-hero: linear-gradient(135deg, rgba(3, 220, 224, 0.15) 0%, rgba(11, 13, 23, 0.95) 50%, rgba(11, 13, 23, 0.98) 100%);
  --gradient-cyan: var(--cyan);
  --gradient-card: var(--cyan);
  --gradient-section: linear-gradient(180deg, var(--cream) 0%, var(--sand) 100%);
  --font-primary: 'Outfit', 'Inter', Arial, Helvetica, sans-serif;
  --font-body: 'Inter', Arial, Helvetica, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 0.35s var(--ease-out);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.12);
  --shadow-cyan: 0 8px 30px rgba(3, 220, 224, 0.2);
  --shadow-card-hover: 0 20px 60px rgba(3, 220, 224, 0.15);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-2xl: 42px;
  --container: 1200px;
  --section-padding: clamp(40px, 5vw, 80px);
  --side-padding: clamp(16px, 5vw, 200px);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  background-color: var(--cream);
  font-family: var(--font-body);
  
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

/* ========================================
   SECTION WRAPPER
   ======================================== */
.section-container {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  transition: all var(--transition);
}

.navbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  padding: 0 var(--side-padding);
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.navbar.transparent {
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(3, 220, 224, 0.1);
}

.navbar__logo {
  width: 75px;
  height: 75px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.navbar__logo:hover {
  transform: scale(1.05);
}

.navbar__brand-text {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  white-space: nowrap;
}

.navbar.scrolled .navbar__brand-text {
  color: var(--dark);
}

.navbar__links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.navbar__link {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
  transition: all var(--transition);
  position: relative;
  padding: 4px 0;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: all var(--transition);
  transform: translateX(-50%);
  border-radius: 2px;
}

.navbar__link:hover::after {
  width: 100%;
}

.navbar__link:hover {
  color: var(--cyan);
}

.navbar.scrolled .navbar__link {
  color: var(--gray-700);
}

.navbar.scrolled .navbar__link:hover {
  color: var(--cyan-dark);
}

/* CTA Button */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--cyan);
  color: var(--dark);
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 700;
  border-radius: 5px;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 15px rgba(3, 220, 224, 0.3);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(3, 220, 224, 0.45);
}

.btn-cta:active {
  transform: translateY(0);
}

.btn-cta svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Mobile Menu Button */
.navbar__hamburger {
  display: none;
  background: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-size: 24px;
  color: var(--white);
  transition: all var(--transition);
  align-items: center;
  justify-content: center;
}

.navbar.scrolled .navbar__hamburger {
  color: var(--gray-800);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  z-index: 999;
  padding: 16px 24px 24px;
  transform: translateY(-20px);
  opacity: 0;
  transition: transform 0.4s var(--ease-out), opacity 0.4s var(--ease-out);
  pointer-events: none;
  border-bottom: 2px solid var(--cyan-light);
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__link {
  display: block;
  padding: 16px 12px;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-800);
  border-bottom: 1px solid var(--gray-100);
  transition: all var(--transition);
}

.mobile-menu__link:hover {
  color: var(--cyan);
  padding-left: 20px;
}

.mobile-menu__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 16px;
  margin-top: 16px;
  background: var(--cyan);
  color: var(--dark);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 10px;
  box-shadow: var(--shadow-cyan);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../assets/hero_section.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(2px);
  transform: scale(1.05);
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(11, 13, 23, 0.95) 0%, rgba(11, 13, 23, 0.85) 45%, rgba(11, 13, 23, 0.4) 100%);
  z-index: 1;
}

/* Decorative elements */
.hero__glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(3, 220, 224, 0.12) 0%, transparent 70%);
  top: 10%;
  left: -5%;
  z-index: 1;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px var(--side-padding) 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 30px;
}

.hero__left {
  max-width: 620px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 30px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(3, 220, 224, 0.1);
  border: 1px solid rgba(3, 220, 224, 0.25);
  border-radius: 5px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(3, 220, 224, 0.5);
  }

  50% {
    opacity: 0.8;
    box-shadow: 0 0 0 6px rgba(3, 220, 224, 0);
  }
}

.hero__badge-text {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero__title {
  font-family: var(--font-primary);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero__title-highlight {
  color: var(--cyan);
}

.hero__desc {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 28px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__cta-primary {
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 50px;
}

.hero__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
}

.hero__cta-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Stats Cards */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  text-align: center;
  min-width: 0;
  transition: all var(--transition);
}

.stat-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(3, 220, 224, 0.3);
  transform: translateY(-4px);
}

.stat-card__value {
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-card__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.35;
  max-width: 100%;
}

/* Hero Right Image */
.hero__right {
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.hero__illustration-wrapper {
  position: relative;
}

.hero__illustration {
  width: 440px;
  height: auto;
  max-height: 660px;
  object-fit: contain;
  filter: brightness(1.05) contrast(1.02);
}

.hero__illustration-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 40px;
  background: radial-gradient(ellipse, rgba(3, 220, 224, 0.3), transparent 70%);
  filter: blur(15px);
}

/* Experience Badge */
.experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--cyan-dark));
  color: #fff;
  padding: 14px 22px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(3, 220, 224, 0.35), 0 0 0 3px rgba(255,255,255,0.15);
  z-index: 3;
  animation: badgePulse 3s ease-in-out infinite;
}
.experience-badge__number {
  font-family: var(--font-primary);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
}
.experience-badge__text {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
  opacity: 0.9;
}
@keyframes badgePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 30px rgba(3, 220, 224, 0.35), 0 0 0 3px rgba(255,255,255,0.15); }
  50% { transform: scale(1.04); box-shadow: 0 12px 40px rgba(3, 220, 224, 0.5), 0 0 0 4px rgba(255,255,255,0.25); }
}

/* ========================================
   SECTION HEADERS (shared)
   ======================================== */
.section-label {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyan-dark);
  margin-bottom: 12px;
  position: relative;
  padding-left: 40px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 2px;
  background: var(--gradient-cyan);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-primary);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.section-label--center {
  display: block;
  text-align: center;
  padding-left: 0;
}

.section-label--center::before {
  display: none;
}

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

.section-subtitle {
  font-size: 16px;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.7;
  margin-top: 12px;
}

.section-subtitle--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
  width: 100%;
  padding: var(--section-padding) var(--side-padding);
  background: var(--white);
}

.about__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

.about__visual {
  flex-shrink: 0;
  position: relative;
}

.about__card {
  position: relative;
  width: 480px;
  height: 440px;
  border-radius: var(--radius-2xl);
  background: var(--gradient-card);
  box-shadow: 0 20px 60px rgba(3, 220, 224, 0.2);
  overflow: hidden;
}

.about__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-2xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
  z-index: 1;
}

.about__card-img {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 600px;
  height: 500px;
  object-fit: contain;
  z-index: 2;
  transition: transform 0.8s var(--ease-out);
}

.about__card:hover .about__card-img {
  transform: scale(1.04) translateY(-5px);
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 560px;
}

.about__heading {
  font-family: var(--font-primary);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--cyan);
}

.about__desc {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-top: 8px;
}

.about__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.about__highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
}

.about__highlight-icon {
  width: 36px;
  height: 36px;
  border-radius: 50px;
  background: var(--cyan-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
  position: relative;
  width: 100%;
  padding: var(--section-padding) var(--side-padding);
  background: var(--gradient-section);
}

.services__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services__header { text-align: center; margin-bottom: 30px; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Service Card */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  border: 1px solid var(--gray-200);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-cyan);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__img-wrapper {
  position: relative;
  overflow: hidden;
}

.service-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.service-card:hover .service-card__img {
  transform: scale(1.08);
}

.service-card__body {
  padding: 24px;
}

.service-card__title {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-card__desc {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6;
}

.service-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.service-card__price {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 800;
  color: var(--cyan-dark);
}

.service-card__price span {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-400);
}

.service-card__btn {
  padding: 10px 22px;
  background: var(--cyan);
  color: var(--dark);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 13px;
  border-radius: 10px;
  transition: all var(--transition);
  letter-spacing: 0.3px;
}

.service-card__btn:hover {
  box-shadow: var(--shadow-cyan);
  transform: translateY(-2px);
}

/* Service Detail (expandable) */
.service-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out), padding 0.4s var(--ease-out);
  padding: 0 24px;
  background: var(--gray-50);
  border-top: 1px solid transparent;
}

.service-detail.open {
  max-height: 700px;
  padding: 24px;
  border-top: 1px solid var(--gray-200);
}

.service-detail__treatment-title {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  color: var(--cyan-dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-detail__treatment-title::before {
  content: '🔬';
  font-size: 18px;
}

.service-detail__treatment-text {
  font-size: 14px;
  color: var(--gray-600);
  white-space: pre-line;
  line-height: 1.8;
}

.service-detail__full-desc {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.8;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features {
  width: 100%;
  padding: var(--section-padding) var(--side-padding);
  background: var(--white);
}

.features__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.features__header { text-align: center; margin-bottom: 30px; }

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--gradient-cyan);
  transition: width var(--transition);
  border-radius: 3px 3px 0 0;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-card:hover::after {
  width: 60%;
}

.feature-card__icon-wrapper {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

.feature-card:hover .feature-card__icon-wrapper {
  transform: scale(1.1) rotate(-3deg);
}

.feature-card__icon-wrapper--cyan {
  background: linear-gradient(135deg, #E0F7FA, #b2ebf2);
}

.feature-card__icon-wrapper--green {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}

.feature-card__icon-wrapper--yellow {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.feature-card__icon {
  width: 32px;
  height: 32px;
}

.feature-card__title {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.feature-card__desc {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 280px;
  margin: 0 auto;
}

/* ========================================
   BRANCHES / CONTACT SECTION
   ======================================== */
.branches {
  width: 100%;
  padding: var(--section-padding) var(--side-padding);
  background: var(--gradient-section);
}

.branches__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.branches__header { text-align: center; margin-bottom: 30px; }

.branches__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.branch-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all 0.4s var(--ease-out);
}

.branch-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.branch-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 24px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.branch-card__pin {
  color: var(--red-500);
  animation: bouncePin 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

.branch-card__name {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
}

.branch-card__address {
  padding: 0 24px 18px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--gray-600);
}

.branch-card__map {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

@keyframes bouncePin {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px var(--side-padding) 30px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-cyan);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__col-title {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.footer__text {
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 10px;
}

.footer__text a {
  transition: color var(--transition);
}

.footer__text a:hover {
  color: var(--cyan);
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition);
}

.footer__social a:hover {
  transform: translateY(-3px);
  border-color: var(--cyan);
}

.footer__social a.fb:hover {
  background: rgba(24, 119, 242, 0.15);
  color: #1877f2;
}

.footer__social a.tw:hover {
  background: rgba(29, 161, 242, 0.15);
  color: #1da1f2;
}

.footer__social a.ig:hover {
  background: rgba(228, 64, 95, 0.15);
  color: #e4405f;
}

.footer__social a.li:hover {
  background: rgba(10, 102, 194, 0.15);
  color: #0a66c2;
}

.footer__social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer__link::before {
  content: '→';
  font-size: 12px;
  opacity: 0;
  transform: translateX(-5px);
  transition: all var(--transition);
}

.footer__link:hover {
  color: var(--cyan);
  padding-left: 4px;
}

.footer__link:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 25px rgba(37, 211, 102, 0.4);
  z-index: 500;
  transition: all var(--transition);
  animation: pulseWA 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

@keyframes pulseWA {

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

  50% {
    box-shadow: 0 6px 40px rgba(37, 211, 102, 0.65);
  }
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.from-left {
  transform: translateX(-80px) translateY(0);
}

.reveal.from-right {
  transform: translateX(80px) translateY(0);
}

.reveal.from-scale {
  transform: scale(0.92);
}

.reveal.visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.reveal-delay-4 {
  transition-delay: 0.32s;
}

.reveal-delay-5 {
  transition-delay: 0.4s;
}

.reveal-delay-6 {
  transition-delay: 0.48s;
}

.reveal-delay-7 {
  transition-delay: 0.56s;
}

/* ========================================
   RESPONSIVE — LARGE (≤1200px)
   ======================================== */
@media (max-width: 1200px) {
  .hero__illustration {
    width: 360px;
    height: 540px;
  }

  .about__inner {
    gap: 50px;
  }

  .about__card {
    width: 400px;
    height: 380px;
  }

  .about__card-img {
    width: 500px;
    height: 420px;
  }

  .services__grid {
    gap: 24px;
  }
}

/* ========================================
   RESPONSIVE — TABLET (≤1024px)
   ======================================== */
@media (max-width: 1024px) {
  .navbar__links {
    display: none;
  }

  .navbar__cta-desktop {
    display: none !important;
  }

  .navbar__hamburger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-bottom: 80px;
    align-items: stretch;
  }

  .hero__content {
    flex-direction: column;
    padding-top: 100px;
    padding-bottom: 0;
    gap: 20px;
    align-items: stretch;
    height: 100%;
  }

  .hero__left {
    max-width: 100%;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-grow: 1;
  }

  .hero__right {
    display: none;
  }

  .about {
    padding-top: 30px;
    padding-bottom: 20px;
  }

  .about__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .about__visual {
    opacity: 1 !important;
    transform: none !important;
    margin-top: 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .about__card {
    width: 100%;
    max-width: 420px;
    height: auto;
    overflow: visible;
  }

  .about__card-img {
    position: relative;
    width: 100%;
    height: auto;
    top: 0;
    right: 0;
    object-fit: contain;
  }

  .about__text {
    align-items: center;
    max-width: 600px;
  }

  .about__highlights {
    justify-items: start;
  }

  .services {
    padding-top: 30px;
  }

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

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

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

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

/* ========================================
   RESPONSIVE — MOBILE (≤768px)
   ======================================== */
@media (max-width: 768px) {
  .navbar {
    height: 70px;
  }

  .mobile-menu {
    top: 70px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 30px;
  }

  .hero__content {
    padding-top: 120px;
  }

  .hero__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .stat-card {
    min-width: 0;
    padding: 18px 14px;
  }

  .stat-card__value {
    font-size: 28px;
  }

  .stat-card__label {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
  }

  .hero__cta-primary,
  .hero__cta-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero__illustration {
    width: auto;
    max-height: 35vh;
  }

  .experience-badge {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 18px;
    gap: 8px;
    border-radius: 12px;
  }
  .experience-badge__number {
    font-size: 26px;
  }
  .experience-badge__text {
    font-size: 10px;
  }

  .about__card {
    height: auto;
    aspect-ratio: auto;
  }

  .about__card-img {
    width: 100%;
    height: auto;
    position: relative;
    top: 0;
    right: 0;
  }

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

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

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

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

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

/* ========================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ======================================== */
@media (max-width: 480px) {
  .hero__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-card__value {
    font-size: 24px;
  }

  .navbar__brand {
    gap: 10px;
  }

  .navbar__brand-text {
    font-size: 12px;
    letter-spacing: 0.6px;
  }

  .about {
    padding-bottom: 20px;
    gap: 10px;
  }

  .about__visual {
    opacity: 1 !important;
    transform: none !important;
  }

  .about__card {
    height: auto;
    aspect-ratio: 1 / 1;
    margin-bottom: 20px;
  }

  .about__card-img {
    width: 320px;
    height: 280px;
  }

  .hero__illustration {
    max-height: 30vh;
  }

  .service-card__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .service-card__btn {
    width: 100%;
    text-align: center;
  }



  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 768px) {
  .about__visual {
    display: none !important;
  }
}

/* ========================================
   SERVICES PAGE (DETAILED)
   ======================================== */
.detailed-service {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.detailed-service__img-wrapper {
  width: 100%;
  height: 400px;
}

.detailed-service__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detailed-service__content {
  padding: 40px;
  flex: 1;
}

@media (max-width: 1024px) {
  .detailed-service__img-wrapper {
    height: 300px;
  }

  .detailed-service__content {
    padding: 24px;
  }

  .detailed-service__title {
    font-size: 24px;
  }
}

.detailed-service__title {
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 8px;
}

.detailed-service__price {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}

.detailed-service__price span {
  font-size: 14px;
  color: var(--text);
  font-weight: 400;
}

.detailed-service__desc {
  font-size: 16px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 24px;
}

.detailed-service__treatment {
  background: var(--off-white);
  padding: 24px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary);
}

.detailed-service__treatment-title {
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 12px;
}

.detailed-service__treatment-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  .section-title {
    font-size: 26px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .service-card__title {
    font-size: 18px;
  }

  .service-card__desc {
    font-size: 13px;
  }

  .service-card__price {
    font-size: 18px;
  }

  .service-card__btn {
    font-size: 13px;
    padding: 10px 18px;
  }

  .btn-cta {
    font-size: 14px;
    padding: 12px 24px;
  }

  .detailed-service__title {
    font-size: 22px;
  }

  .detailed-service__desc {
    font-size: 14px;
  }

  .detailed-service__treatment-title {
    font-size: 16px;
  }

  .detailed-service__treatment-text {
    font-size: 14px;
  }
}

/* ========================================
   MOBILE GLASSY NAVBAR
   ======================================== */
@media (max-width: 1024px) {
  .navbar {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px) saturate(1.8) !important;
    -webkit-backdrop-filter: blur(20px) saturate(1.8) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
  }

  .navbar__hamburger {
    color: var(--gray-800) !important;
  }

  .mobile-menu {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px) saturate(1.8) !important;
    -webkit-backdrop-filter: blur(20px) saturate(1.8) !important;
  }
}

@media (max-width: 768px) {
  .hero__right {
    display: none !important;
  }
}

/* ========================================
   STICKY MOBILE ACTION BAR
   ======================================== */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  z-index: 1000;
  border-top: 1px solid var(--gray-200);
}

.mobile-action-bar__inner {
  display: flex;
  width: 100%;
  height: 60px;
}

.mobile-action-bar__btn {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: all var(--transition);
}

.mobile-action-bar__btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.mobile-action-bar__btn--call {
  background: var(--cyan-deeper);
}

.mobile-action-bar__btn--whatsapp {
  background: #25D366; /* WhatsApp Green */
}

@media (max-width: 768px) {
  .mobile-action-bar {
    display: block;
  }
  .whatsapp-float {
    display: none !important;
  }
  body {
    padding-bottom: 60px; /* Space for the bottom bar */
  }
}


/* ========================================
   CLIENTS SECTION (MARQUEE)
   ======================================== */
.clients {
  padding: 60px 0;
  background: var(--sand);
  overflow: hidden;
  position: relative;
}

.clients__header {
  text-align: center;
  margin-bottom: 40px;
}

.clients__marquee {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
  display: flex;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.clients__marquee::-webkit-scrollbar {
  display: none;
}
.clients__marquee:active {
  cursor: grabbing;
}

/* Fading edges */
.clients__marquee::before,
.clients__marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.clients__marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--sand) 0%, transparent 100%);
}
.clients__marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--sand) 0%, transparent 100%);
}

.clients__track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scroll 60s linear infinite;
  padding: 0 15px;
}

.clients__track:hover {
  animation-play-state: paused;
}

.client-card {
  background: transparent;
  border-radius: 0;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-shadow: none;
  min-width: 180px;
  border: none;
  gap: 14px;
}

.client-card__icon {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  margin-right: 0;
  fill: var(--cyan-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  background: rgba(240, 240, 240, 0.6);
  border-radius: 14px;
  padding: 10px;
}
.client-card__icon svg {
  width: 100%;
  height: 100%;
}
.client-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.client-card__icon--dark {
  background: #1a1a2e;
}

.client-card__text {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--gray-700);
  font-size: 15px;
  text-align: center;
  text-transform: capitalize;
  line-height: 1.35;
  max-width: 180px;
}

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

@media (max-width: 768px) {
  .client-card {
    min-width: 150px;
    padding: 16px 18px;
  }
  .client-card__icon {
    width: 72px;
    height: 72px;
  }
  .client-card__text {
    font-size: 14px;
    max-width: 150px;
  }
  .clients__marquee::before,
  .clients__marquee::after {
    width: 40px;
  }
}

@media (max-width: 992px) {
  .navbar__brand-text {
    display: block;
    font-size: 11px;
    white-space: normal;
    line-height: 1.2;
    max-width: 130px;
    margin-left: 8px;
    color: var(--dark) !important;
  }
  .navbar__logo {
    width: 48px;
    height: 48px;
  }
}
