/* ============================================
   NAPHYSIO & BABY CARE - MAIN STYLESHEET
   Modern, Clean & Professional Design
   ============================================ */

/* ============================================
   CSS VARIABLES & ROOT SETTINGS
   ============================================ */
:root {
  /* Primary Colors */
  --primary: #1a5f4a;
  --primary-light: #2d8a6e;
  --primary-dark: #134536;
  --primary-gradient: linear-gradient(135deg, #1a5f4a 0%, #2d8a6e 100%);

  /* Secondary Colors */
  --secondary: #3ecf8e;
  --secondary-light: #5ee0a5;
  --secondary-dark: #2db876;

  /* Accent Colors */
  --accent: #f8b500;
  --accent-light: #ffc933;
  --accent-dark: #d69e00;

  /* Baby Care Colors */
  --baby-pink: #ffd1dc;
  --baby-blue: #87ceeb;
  --baby-yellow: #fff4c4;
  --baby-green: #98fb98;

  /* Neutral Colors */
  --white: #ffffff;
  --off-white: #f8fafb;
  --light-gray: #e9ecef;
  --gray: #6c757d;
  --dark-gray: #495057;
  --dark: #212529;
  --black: #000000;

  /* Background Colors */
  --bg-light: #f0f7f4;
  --bg-section: #f8faf9;

  /* Text Colors */
  --text-primary: #2c3e50;
  --text-secondary: #5a6c7d;
  --text-muted: #8899a8;
  --text-light: #ffffff;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(26, 95, 74, 0.08);
  --shadow-md: 0 4px 20px rgba(26, 95, 74, 0.12);
  --shadow-lg: 0 8px 40px rgba(26, 95, 74, 0.16);
  --shadow-xl: 0 20px 60px rgba(26, 95, 74, 0.2);
  --shadow-card: 0 10px 40px rgba(26, 95, 74, 0.1);

  /* Typography */
  --font-primary: "Poppins", sans-serif;
  --font-display: "Playfair Display", serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-padding: 0 20px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 50%;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Z-index */
  --z-dropdown: 100;
  --z-navbar: 1000;
  --z-modal: 1050;
  --z-tooltip: 1100;
}

/* ============================================
   RESET & BASE STYLES
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--white);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-normal);
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.loader-inner {
  width: 60px;
  height: 60px;
  border: 4px solid var(--light-gray);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.loader span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============================================
   CONTAINER & UTILITIES
   ============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
  transition: var(--transition-normal);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--primary-gradient);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(26, 95, 74, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(26, 95, 74, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

.btn-block {
  width: 100%;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.section-subtitle.light {
  color: var(--secondary-light);
}

.section-subtitle .line {
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.section-subtitle.light .line {
  background: var(--secondary-light);
}

.section-title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 20px;
}

.section-title.light {
  color: var(--white);
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-navbar);
  padding: 20px 0;
  transition: var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 45px;
  height: 45px;
  object-fit: cover;
  object-position: 50% 80%;
  border-radius: 50%;
  border: 1.5px solid var(--primary);
  padding: 0;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(26, 95, 74, 0.15);
  transition: all 0.3s ease;
}

.logo-img:hover {
  box-shadow: 0 4px 12px rgba(26, 95, 74, 0.25);
  transform: translateY(-2px);
}

.logo-icon {
  width: 35px;
  height: 35px;
  background: var(--primary-gradient);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  box-shadow: var(--shadow-sm);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}

.logo-text span {
  color: var(--secondary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-gradient);
  transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-btn {
  padding: 12px 24px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition-normal);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f7f4 0%, #e8f5f0 50%, #f5faf8 100%);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.hero-shape.shape-1 {
  width: 600px;
  height: 600px;
  background: var(--primary);
  top: -200px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.hero-shape.shape-2 {
  width: 400px;
  height: 400px;
  background: var(--secondary);
  bottom: -100px;
  left: -100px;
  animation: float 10s ease-in-out infinite reverse;
}

.hero-shape.shape-3 {
  width: 200px;
  height: 200px;
  background: var(--accent);
  top: 50%;
  left: 30%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(5deg);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-xl);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  margin-bottom: 25px;
}

.hero-badge i {
  color: var(--accent);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
}

.hero-title .title-line {
  display: block;
}

.hero-title .highlight {
  color: var(--primary);
  position: relative;
}

.hero-title .highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 12px;
  background: var(--secondary);
  opacity: 0.3;
  z-index: -1;
}

.hero-subtitle {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 25px;
}

.hero-therapist {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
  border-left: 4px solid var(--primary);
}

.therapist-avatar {
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
}

.therapist-info {
  display: flex;
  flex-direction: column;
}

.therapist-name {
  font-weight: 600;
  color: var(--text-primary);
}

.therapist-title {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 5px;
}

/* Hero Image */
.hero-image {
  position: relative;
}

.image-wrapper {
  position: relative;
}

.image-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: var(--primary-gradient);
  border-radius: 50%;
  opacity: 0.1;
}

.main-image {
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(26, 95, 74, 0.2));
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 15px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 2;
  animation: floatCard 4s ease-in-out infinite;
}

.floating-card i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 1.2rem;
}

.floating-card span {
  font-weight: 600;
  font-size: 0.95rem;
}

.floating-card.card-1 {
  top: 20%;
  left: 0;
  animation-delay: 0s;
}

.floating-card.card-1 i {
  background: rgba(26, 95, 74, 0.1);
  color: var(--primary);
}

.floating-card.card-2 {
  top: 50%;
  right: 0;
  animation-delay: 1s;
}

.floating-card.card-2 i {
  background: rgba(255, 182, 193, 0.3);
  color: #e91e63;
}

.floating-card.card-3 {
  bottom: 15%;
  left: 10%;
  animation-delay: 2s;
}

.floating-card.card-3 i {
  background: rgba(248, 181, 0, 0.2);
  color: var(--accent);
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.scroll-indicator a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid var(--primary);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

.arrow {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(45deg);
  animation: arrowBounce 2s infinite;
}

@keyframes arrowBounce {
  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }
  50% {
    transform: rotate(45deg) translateY(5px);
  }
}

/* ============================================
   PROMO BANNER
   ============================================ */
.promo-banner {
  background: var(--primary-gradient);
  padding: 25px 0;
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></svg>');
  background-size: 100px;
  animation: moveBg 20s linear infinite;
}

@keyframes moveBg {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100px 100px;
  }
}

.promo-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.promo-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.promo-text {
  text-align: center;
}

.promo-text h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 5px;
}

.promo-text p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.promo-text strong {
  color: var(--accent);
  font-size: 1.3rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: var(--section-padding);
  background: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.image-frame {
  position: relative;
}

.image-frame img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.image-frame::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 4px solid var(--primary);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.experience-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 140px;
  height: 140px;
  background: var(--primary-gradient);
  border-radius: var(--radius-full);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.experience-badge .years {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.3;
}

.about-text .section-subtitle {
  justify-content: flex-start;
}

.about-text .section-title {
  text-align: left;
}

.about-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin: 35px 0;
}

.feature-item {
  display: flex;
  gap: 15px;
}

.feature-icon {
  width: 55px;
  height: 55px;
  min-width: 55px;
  background: rgba(26, 95, 74, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
}

.feature-text h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.feature-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  padding: var(--section-padding);
  background: var(--bg-section);
}

.services-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-xl);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition-normal);
  cursor: pointer;
}

.tab-btn i {
  font-size: 1.4rem;
}

.tab-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.tab-btn.active {
  background: var(--primary-gradient);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.services-content {
  display: none;
}

.services-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card.featured {
  border: 2px solid var(--primary);
}

.service-card.featured::before {
  transform: scaleX(1);
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: var(--white);
  padding: 5px 15px;
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: rgba(26, 95, 74, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 25px;
  transition: var(--transition-normal);
}

.service-icon.baby {
  background: rgba(255, 182, 193, 0.3);
  color: #e91e63;
}

.service-card:hover .service-icon {
  background: var(--primary-gradient);
  color: var(--white);
  transform: scale(1.1);
}

.service-card:hover .service-icon.baby {
  background: linear-gradient(135deg, #e91e63 0%, #f48fb1 100%);
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

/* Service Benefits in service-card */
.service-card .service-benefits {
  margin-bottom: 20px;
  padding: 0;
}

.service-card .service-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.service-card .service-benefits li i {
  color: var(--secondary);
  font-size: 0.85rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition-normal);
}

.service-link i {
  transition: transform var(--transition-normal);
}

.service-link:hover {
  color: var(--primary-dark);
}

.service-link:hover i {
  transform: translateX(5px);
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us {
  padding: var(--section-padding);
  background: var(--primary-gradient);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><circle cx="100" cy="100" r="80" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/><circle cx="100" cy="100" r="60" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/><circle cx="100" cy="100" r="40" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></svg>');
  background-size: 300px;
  opacity: 0.5;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.why-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-10px);
}

.why-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  margin: 0 auto 25px;
  transition: var(--transition-normal);
}

.why-card:hover .why-icon {
  background: var(--white);
  color: var(--primary);
  transform: scale(1.1);
}

.why-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 15px;
}

.why-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
  padding: var(--section-padding);
  background: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

/* Connecting line between steps */
.process-steps::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 15%;
  right: 15%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 100px;
  height: 100px;
  background: var(--white);
  border: 4px solid var(--primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 auto 25px;
  transition: var(--transition-normal);
  position: relative;
  z-index: 2;
}

.process-step:hover .step-number {
  background: var(--primary-gradient);
  color: var(--white);
  border-color: var(--primary);
  transform: scale(1.1);
}

/* Hide step-icon since we're using step-number as the main element */
.step-icon {
  display: none;
}

.process-step h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Hide the old process-line elements */
.process-line {
  display: none;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
  padding: var(--section-padding);
  background: var(--bg-section);
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: calc(33.333% - 20px);
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.testimonial-rating {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}

.testimonial-rating i {
  color: var(--accent);
  font-size: 1.1rem;
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 55px;
  height: 55px;
  background: var(--primary-gradient);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 600;
  color: var(--text-primary);
}

.author-service {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.testimonial-nav .nav-btn {
  width: 45px;
  height: 45px;
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition-normal);
  cursor: pointer;
}

.testimonial-nav .nav-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.testimonial-dots {
  display: flex;
  gap: 10px;
}

.testimonial-dots .dot {
  width: 12px;
  height: 12px;
  background: var(--light-gray);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-normal);
}

.testimonial-dots .dot.active {
  background: var(--primary);
  width: 30px;
}

/* ============================================
   GALLERY SECTION - PREMIUM DESIGN
   ============================================ */
.gallery-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8faf9 0%, #e8f5f0 100%);
  position: relative;
  overflow: hidden;
}

.gallery-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: var(--primary);
  opacity: 0.03;
  border-radius: 50%;
}

.gallery-section::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: var(--secondary);
  opacity: 0.05;
  border-radius: 50%;
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 35px 0;
  flex-wrap: wrap;
}

.gallery-tab-btn {
  padding: 12px 24px;
  background: var(--white);
  border: none;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.gallery-tab-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(26, 95, 74, 0.15);
  color: var(--primary);
}

.gallery-tab-btn.active {
  background: var(--primary-gradient);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(26, 95, 74, 0.3);
  transform: translateY(-2px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
  background: var(--white);
}

.gallery-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 60px rgba(26, 95, 74, 0.25);
}

.gallery-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.15);
}

.gallery-overlay {
  display: none !important;
}

.gallery-zoom-btn {
  display: none !important;
}

/* Category Badge */
.gallery-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 6px 14px;
  background: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
  transition: all 0.3s ease;
}

.gallery-badge.baby {
  background: linear-gradient(135deg, #ffd1dc, #ffb6c1);
  color: #8b4557;
}

.gallery-item:hover .gallery-badge {
  transform: scale(1.05);
}

.gallery-info {
  padding: 20px;
  background: var(--white);
  position: relative;
}

.gallery-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  background: var(--primary-gradient);
  border-radius: 3px;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-info::before {
  transform: scaleX(1);
}

.gallery-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.gallery-item:hover .gallery-info h4 {
  color: var(--primary);
}

.gallery-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: var(--z-modal);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  animation: fadeIn 0.3s ease;
  backdrop-filter: blur(10px);
}

.lightbox.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 85%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  width: 90%;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.1);
  padding: 15px 25px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.lightbox-close:hover {
  background: var(--secondary);
  transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  padding: 15px 20px;
  user-select: none;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--primary);
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-section {
    padding: 60px 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .gallery-image-wrapper {
    height: 180px;
  }

  .gallery-info {
    padding: 15px;
  }

  .gallery-info h4 {
    font-size: 0.9rem;
  }

  .gallery-info p {
    font-size: 0.8rem;
  }

  .lightbox-prev,
  .lightbox-next {
    padding: 10px 15px;
    font-size: 1.5rem;
  }

  .lightbox-close {
    top: 15px;
    right: 15px;
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery-image-wrapper {
    height: 200px;
  }

  .gallery-tabs {
    gap: 8px;
  }

  .gallery-tab-btn {
    padding: 10px 18px;
    font-size: 0.85rem;
  }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
}

.cta::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-full);
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  padding: var(--section-padding);
  background: var(--white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.contact-card {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: var(--bg-section);
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 55px;
  height: 55px;
  min-width: 55px;
  background: var(--primary-gradient);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
}

.contact-text h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.contact-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 5px;
}

.contact-text a {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 500;
}

.contact-text a:hover {
  text-decoration: underline;
}

.contact-text span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-form-wrapper {
  background: var(--bg-section);
  padding: 40px;
  border-radius: var(--radius-lg);
}

.contact-form h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 30px;
  text-align: center;
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px 16px 50px;
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-md);
  font-size: 1rem;
  color: var(--text-primary);
  transition: var(--transition-normal);
  outline: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  transition: var(--transition-normal);
}

.form-group textarea + i {
  top: 20px;
  transform: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}

.form-group input:focus + i,
.form-group select:focus + i,
.form-group textarea:focus + i {
  color: var(--primary);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  position: relative;
  background: var(--primary-dark);
}

.footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

.footer-content {
  padding: 120px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo i {
  font-size: 2rem;
  color: var(--secondary);
}

.footer-logo span {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}

.footer-brand p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  transition: var(--transition-normal);
}

.footer-social a:hover {
  background: var(--secondary);
  transform: translateY(-5px);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links ul a::before {
  content: "";
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width var(--transition-normal);
}

.footer-links ul a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-links ul a:hover::before {
  width: 15px;
}

.footer-contact ul li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact ul li i {
  width: 20px;
  color: var(--secondary);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p i {
  color: #e74c3c;
}

/* ============================================
   WHATSAPP FLOAT BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
  z-index: var(--z-dropdown);
  transition: var(--transition-normal);
  animation: bounceWa 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
}

.whatsapp-float .tooltip {
  position: absolute;
  right: 75px;
  background: var(--dark);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.whatsapp-float .tooltip::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  border: 8px solid transparent;
  border-left-color: var(--dark);
}

.whatsapp-float:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

@keyframes bounceWa {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  z-index: var(--z-dropdown);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Large Devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
  .hero-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.4rem;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
  }
}

/* Medium Devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    box-shadow: var(--shadow-xl);
    transition: right var(--transition-normal);
    z-index: var(--z-navbar);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 20px;
  }

  .nav-link {
    font-size: 1.1rem;
  }

  .nav-toggle {
    display: flex;
    z-index: calc(var(--z-navbar) + 1);
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-therapist {
    display: inline-flex;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image {
    display: none;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-text .section-subtitle,
  .about-text .section-title {
    text-align: center;
  }

  .about-text .section-subtitle {
    justify-content: center;
  }

  .about-text .btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
  }

  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .process-steps::before {
    display: none;
  }

  .step-number {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }

  .testimonial-card {
    min-width: calc(50% - 15px);
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-brand {
    max-width: 100%;
    grid-column: span 2;
  }
}

/* Small Devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  html {
    font-size: 15px;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-stats {
    gap: 25px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .promo-content {
    flex-direction: column;
    text-align: center;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .services-tabs {
    flex-direction: column;
    align-items: center;
  }

  .tab-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .step-number {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .process-step h3 {
    font-size: 1rem;
  }

  .testimonial-card {
    min-width: 100%;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-links h4::after,
  .footer-contact h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links ul a::before {
    display: none;
  }

  .footer-contact ul li {
    justify-content: center;
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }

  .back-to-top {
    bottom: 85px;
    right: 20px;
    width: 45px;
    height: 45px;
  }

  .scroll-indicator {
    display: none;
  }
}

/* Extra Small Devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .experience-badge {
    width: 120px;
    height: 120px;
    bottom: -20px;
    right: -10px;
  }

  .experience-badge .years {
    font-size: 2.5rem;
  }

  .service-card {
    padding: 30px 20px;
  }
}

/* Dark mode preference (optional) */
@media (prefers-color-scheme: dark) {
  /* Uncomment to enable dark mode
    :root {
        --white: #1a1a2e;
        --off-white: #16213e;
        --bg-light: #0f0f1a;
        --bg-section: #1a1a2e;
        --text-primary: #eaeaea;
        --text-secondary: #b4b4b4;
    }
    */
}

/* Animations for elements */
[data-aos] {
  opacity: 0;
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-down"] {
  transform: translateY(-30px);
}

[data-aos="fade-left"] {
  transform: translateX(30px);
}

[data-aos="fade-right"] {
  transform: translateX(-30px);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translate(0) scale(1);
}
/* ============================================
   PAGE HEADER (for inner pages)
   ============================================ */
.page-header {
  position: relative;
  padding: 160px 0 80px;
  background: var(--primary-gradient);
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page-header .header-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.page-header .header-shape.shape-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -100px;
}

.page-header .header-shape.shape-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -100px;
}

.page-header-content {
  position: relative;
  text-align: center;
  z-index: 2;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
}

/* Breadcrumb */
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb span i {
  font-size: 0.7rem;
}

.breadcrumb .current {
  color: var(--white);
  font-weight: 500;
}

/* ============================================
   TESTIMONIAL STATS
   ============================================ */
.testimonial-stats {
  padding: 60px 0;
  background: var(--bg-light);
  margin-top: -40px;
  position: relative;
  z-index: 3;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-value {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-suffix {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-top: 5px;
}

/* ============================================
   TESTIMONIALS PAGE
   ============================================ */
.testimonials-page {
  padding: var(--section-padding);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.testimonial-card-full {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-card);
  transition: var(--transition-normal);
  border: 1px solid transparent;
}

.testimonial-card-full:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  background: var(--bg-light);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
}

.testimonial-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.service-used {
  font-size: 0.85rem;
  color: var(--primary);
  background: var(--bg-light);
  padding: 3px 10px;
  border-radius: var(--radius-sm);
}

.testimonial-rating {
  margin-left: auto;
  color: var(--accent);
  font-size: 0.9rem;
  display: flex;
  gap: 3px;
}

.testimonial-body {
  position: relative;
  padding-left: 40px;
  margin-bottom: 20px;
}

.testimonial-body .quote-icon {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.5rem;
  color: var(--primary);
  opacity: 0.3;
}

.testimonial-body p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-style: italic;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid var(--light-gray);
  font-size: 0.85rem;
}

.testimonial-date {
  color: var(--text-muted);
}

.testimonial-date i,
.testimonial-verified i {
  margin-right: 5px;
}

.testimonial-verified {
  color: var(--secondary);
  font-weight: 500;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page {
  padding: var(--section-padding);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info-section .section-header {
  text-align: left;
  margin-bottom: 40px;
}

.contact-info-section .section-header.text-left .section-subtitle {
  justify-content: flex-start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
}

.contact-info-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateX(10px);
}

.contact-icon {
  width: 55px;
  height: 55px;
  background: var(--primary-gradient);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.contact-details p {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 2px;
}

.contact-details span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact-social h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  transition: var(--transition-normal);
}

.social-link.whatsapp {
  background: #25d366;
}

.social-link.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.facebook {
  background: #1877f2;
}

.social-link.tiktok {
  background: #000;
}

.social-link:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* Contact Form */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--light-gray);
}

.form-header {
  margin-bottom: 30px;
}

.form-header h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.form-header h3 i {
  margin-right: 10px;
}

.form-header p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.input-wrapper {
  position: relative;
}

.input-wrapper i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1rem;
}

.input-wrapper.textarea-wrapper i {
  top: 20px;
  transform: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px 14px 45px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: var(--transition-normal);
  background: var(--white);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(26, 95, 74, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-promo {
  margin-bottom: 25px;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: var(--radius-md);
  color: var(--dark);
  font-weight: 600;
  font-size: 0.95rem;
}

.promo-badge i {
  font-size: 1.2rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: var(--section-padding);
  background: var(--bg-light);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 25px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.faq-question h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.faq-question h4 i {
  color: var(--secondary);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.faq-answer {
  margin-top: 12px;
  padding-left: 28px;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================
   MAP SECTION (Contact Page)
   ============================================ */
.map-section {
  padding: 80px 0 0;
  background: var(--white);
}

.map-section .section-header {
  margin-bottom: 40px;
}

.map-wrapper {
  width: 100%;
  height: 450px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.map-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 50px 0;
}

.map-info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 25px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
}

.map-info-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.map-info-item i {
  font-size: 1.5rem;
  color: var(--primary);
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.map-info-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.map-info-item p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.map-info-item a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-fast);
}

.map-info-item a:hover {
  color: var(--primary-light);
}

@media (max-width: 992px) {
  .map-info {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .map-wrapper {
    height: 350px;
  }

  .map-info-item {
    padding: 20px;
  }
}

/* ============================================
   QUICK SERVICES (Homepage)
   ============================================ */
.quick-services {
  padding: var(--section-padding);
  background: var(--bg-section);
}

.quick-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.quick-service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 35px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition-normal);
  border: 2px solid transparent;
}

.quick-service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.quick-service-icon {
  width: 80px;
  height: 80px;
  background: var(--bg-light);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: var(--primary);
  transition: var(--transition-normal);
}

.quick-service-card:hover .quick-service-icon {
  background: var(--primary-gradient);
  color: var(--white);
}

.quick-service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 15px;
}

.quick-service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.quick-service-card .btn {
  padding: 10px 25px;
  font-size: 0.9rem;
}

.view-all-services {
  text-align: center;
}

/* Quick Services - Quick Icon */
.quick-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(26, 95, 74, 0.1) 0%, rgba(45, 138, 110, 0.15) 100%);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.2rem;
  color: var(--primary);
  transition: var(--transition-normal);
}

.quick-icon.baby {
  background: linear-gradient(135deg, rgba(255, 182, 193, 0.3) 0%, rgba(255, 209, 220, 0.4) 100%);
  color: #e91e63;
}

.quick-icon.lactation {
  background: linear-gradient(135deg, rgba(135, 206, 235, 0.3) 0%, rgba(173, 216, 230, 0.4) 100%);
  color: #0288d1;
}

.quick-service-card:hover .quick-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(26, 95, 74, 0.2);
}

.quick-service-card:hover .quick-icon.baby {
  box-shadow: 0 10px 30px rgba(233, 30, 99, 0.2);
}

.quick-service-card:hover .quick-icon.lactation {
  box-shadow: 0 10px 30px rgba(2, 136, 209, 0.2);
}

.quick-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-normal);
}

.quick-link:hover {
  gap: 12px;
  color: var(--primary-dark);
}

.quick-link i {
  transition: var(--transition-normal);
}

.text-center {
  text-align: center;
}

/* ============================================
   WHY US BRIEF (Homepage) - New Layout
   ============================================ */
.why-us-brief {
  padding: var(--section-padding);
  background: var(--white);
}

.why-brief-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-brief-text {
  padding-right: 20px;
}

.why-brief-text .section-subtitle {
  justify-content: flex-start;
}

.why-brief-text .section-title {
  text-align: left;
  margin-bottom: 30px;
}

.why-brief-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 35px;
}

.why-brief-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
  border-left: 4px solid transparent;
}

.why-brief-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  border-left-color: var(--primary);
  transform: translateX(10px);
}

.why-brief-item i {
  font-size: 1.3rem;
  color: var(--secondary);
  flex-shrink: 0;
}

.why-brief-item span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-primary);
}

.why-brief-image {
  position: relative;
}

.why-brief-image img {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(26, 95, 74, 0.15));
}

/* Old grid style backup */
.why-us-brief-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-us-brief-item {
  text-align: center;
  padding: 30px 20px;
}

.why-us-brief-icon {
  width: 70px;
  height: 70px;
  background: var(--bg-light);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--primary);
}

.why-us-brief-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.why-us-brief-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ============================================
   PROMO BANNER
   ============================================ */
.promo-banner {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  padding: 25px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
  flex-wrap: wrap;
  text-align: center;
}

.promo-banner i {
  font-size: 2rem;
  color: var(--dark);
}

.promo-banner-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
}

.promo-banner-content p {
  color: var(--dark);
  opacity: 0.8;
  font-size: 0.95rem;
}

/* ============================================
   SERVICES PAGE SPECIFIC
   ============================================ */
.services-page {
  padding: var(--section-padding);
}

.services-intro {
  text-align: center;
  margin-bottom: 50px;
  padding: 30px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
}

.services-intro h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.services-intro h3 i {
  font-size: 1.3rem;
}

.services-intro p {
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.services-intro.baby {
  background: linear-gradient(135deg, rgba(255, 182, 193, 0.2) 0%, rgba(255, 209, 220, 0.3) 100%);
}

.services-intro.baby h3 {
  color: #e91e63;
}

/* About Page Specific */
.about-page {
  padding: var(--section-padding);
}

.about-page .about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-page .about-image {
  position: relative;
  padding: 30px;
}

.about-page .image-frame {
  position: relative;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 0;
  border: 3px solid var(--primary);
  overflow: hidden;
}

.about-page .image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

/* Remove the ::before pseudo element for about-page */
.about-page .image-frame::before {
  display: none;
}

.about-page .experience-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 120px;
  height: 120px;
  background: var(--primary-gradient);
  border-radius: var(--radius-full);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--white);
  z-index: 2;
}

.about-page .experience-badge .years {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
}

.about-page .experience-badge .text {
  font-size: 0.75rem;
  text-align: center;
  line-height: 1.3;
}

.about-page .about-text .section-subtitle {
  justify-content: flex-start;
}

.about-page .about-text .section-title {
  text-align: left;
}

.about-page .about-description {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.8;
}

/* Therapist Profile Specific for About Page */
.therapist-profile .profile-card {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: center;
  text-align: left;
}

.therapist-profile .profile-image {
  display: flex;
  justify-content: center;
}

.therapist-profile .profile-info h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.therapist-profile .profile-title {
  display: block;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 15px;
}

.therapist-profile .profile-info p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.8;
}

.profile-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.specialty-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-light);
  border-radius: var(--radius-xl);
  font-size: 0.9rem;
  color: var(--text-primary);
  font-weight: 500;
}

.specialty-tag i {
  color: var(--secondary);
}

.services-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  font-size: 1rem;
  font-weight: 600;
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-xl);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-normal);
}

.tab-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.tab-btn.active {
  background: var(--primary-gradient);
  border-color: transparent;
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.tab-btn i {
  font-size: 1.2rem;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.services-grid-page {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-card-full {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 35px;
  box-shadow: var(--shadow-card);
  transition: var(--transition-normal);
  border: 2px solid transparent;
}

.service-card-full:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.service-card-full .service-icon {
  width: 70px;
  height: 70px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 20px;
  transition: var(--transition-normal);
}

.service-card-full:hover .service-icon {
  background: var(--primary-gradient);
  color: var(--white);
}

.service-card-full h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.service-card-full > p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-benefits {
  margin-bottom: 25px;
}

.service-benefits h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-benefits ul {
  display: grid;
  gap: 8px;
}

.service-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.service-benefits li i {
  color: var(--secondary);
  font-size: 0.85rem;
  margin-top: 5px;
}

.service-card-full .btn {
  padding: 12px 25px;
  font-size: 0.95rem;
}

/* ============================================
   THERAPIST PROFILE (About Page)
   ============================================ */
.therapist-profile {
  padding: var(--section-padding);
  background: var(--bg-light);
}

.profile-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.profile-image-wrapper {
  position: relative;
}

.profile-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.profile-avatar {
  width: 150px;
  height: 150px;
  background: var(--primary-gradient);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 4rem;
  color: var(--white);
  overflow: hidden;
  border: 3px solid var(--primary);
}

.profile-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 5px;
}

.profile-card .credential {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 20px;
  display: block;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid var(--light-gray);
}

.profile-stat {
  text-align: center;
}

.profile-stat .number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.profile-stat .label {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
}

.profile-content h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--text-primary);
  margin-bottom: 25px;
}

.profile-content > p {
  color: var(--text-secondary);
  margin-bottom: 25px;
  line-height: 1.8;
}

.expertise-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.expertise-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: var(--white);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
}

.expertise-item i {
  color: var(--secondary);
}

/* ============================================
   PROCESS STEPS (About Page)
   ============================================ */
.process-section {
  padding: var(--section-padding);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  background: var(--light-gray);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 100px;
  height: 100px;
  background: var(--white);
  border: 3px solid var(--primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  transition: var(--transition-normal);
}

.process-step:hover .step-number {
  background: var(--primary-gradient);
  color: var(--white);
  border-color: transparent;
}

.process-step h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.process-step p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE - Multi-page Additions
   ============================================ */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .profile-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps::before {
    display: none;
  }

  .why-us-brief-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-brief-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .why-brief-text {
    padding-right: 0;
    text-align: center;
  }

  .why-brief-text .section-subtitle {
    justify-content: center;
  }

  .why-brief-text .section-title {
    text-align: center;
  }

  .why-brief-image {
    order: -1;
  }

  .about-page .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-page .about-image {
    order: -1;
    text-align: center;
  }

  .about-page .experience-badge {
    right: 10px;
    bottom: -20px;
    width: 110px;
    height: 110px;
  }

  .about-page .about-text .section-subtitle {
    justify-content: center;
  }

  .about-page .about-text .section-title {
    text-align: center;
  }

  .about-page .about-text {
    text-align: center;
  }

  .therapist-profile .profile-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .profile-specialties {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-header {
    padding: 140px 0 60px;
  }

  .page-header h1 {
    font-size: 2.2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .services-grid-page {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .quick-services-grid {
    grid-template-columns: 1fr;
  }

  .why-us-brief-grid {
    grid-template-columns: 1fr;
  }

  .expertise-list {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .profile-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-form-card {
    padding: 25px;
  }

  .testimonial-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonial-rating {
    margin-left: 0;
    margin-top: 10px;
  }

  .why-brief-item {
    padding: 12px 15px;
  }

  .why-brief-item:hover {
    transform: translateX(5px);
  }

  .services-intro {
    padding: 20px;
  }

  .services-intro h3 {
    font-size: 1.2rem;
    flex-direction: column;
    gap: 8px;
  }

  .about-page .experience-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin: 20px auto 0;
  }
}

@media (max-width: 480px) {
  .page-header h1 {
    font-size: 1.8rem;
  }

  .breadcrumb {
    font-size: 0.85rem;
    gap: 8px;
  }

  .stat-card {
    flex-direction: column;
    text-align: center;
  }

  .promo-banner {
    flex-direction: column;
    padding: 20px;
  }

  .tab-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .services-tabs {
    gap: 10px;
  }

  .why-brief-item span {
    font-size: 0.9rem;
  }

  .specialty-tag {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .about-page .experience-badge .years {
    font-size: 2rem;
  }
}
