/* ============================================
   CHILDCARE BUILDER - Main Stylesheet
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Fraunces:wght@600;700;800&display=swap');

/* CSS Variables */
:root {
  /* Colors */
  --navy-dark: #1e3a5f;
  --navy: #2c4a6e;
  --navy-light: #3d5a7c;
  --coral: #e07a5f;
  --coral-dark: #c96a52;
  --coral-light: #f4a261;
  --cream: #faf8f5;
  --white: #ffffff;
  --gray-100: #f7f7f7;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --success: #22c55e;
  
  /* Typography */
  --font-display: 'Fraunces', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Spacing */
  --section-padding: 100px;
  --container-width: 1200px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-dark);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--gray-600);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all var(--transition-medium);
  text-decoration: none;
}

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

.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy-dark);
  border: 2px solid var(--navy-dark);
}

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

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

.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy-dark);
}

.btn-large {
  padding: 20px 40px;
  font-size: 1.125rem;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container-width);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy-dark);
}

.logo-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon svg {
  width: 44px;
  height: 44px;
}

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

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  font-weight: 500;
  color: var(--gray-700);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width var(--transition-medium);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy-dark);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 12px 24px;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--navy-dark);
  transition: all var(--transition-fast);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .nav-cta {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    gap: 16px;
  }
  
  .nav.open .nav-cta {
    display: inline-flex;
    position: absolute;
    top: calc(100% + 180px);
    left: 24px;
    right: 24px;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  padding-top: 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--coral-light);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}

.hero h1 .highlight {
  color: var(--coral-light);
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 32px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-xl);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.stat-item {
  text-align: center;
  padding: 16px;
  background: var(--gray-100);
  border-radius: 12px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy-dark);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-top: 4px;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--gray-700);
}

.hero-feature svg {
  width: 20px;
  height: 20px;
  fill: var(--success);
  flex-shrink: 0;
}

@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ============================================
   SERVICES OVERVIEW
   ============================================ */
.services-overview {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--coral);
  margin-bottom: 16px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  color: var(--gray-600);
  font-size: 1.125rem;
}

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

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 32px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--coral);
  transform: scaleX(0);
  transition: transform var(--transition-medium);
}

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

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card.featured {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
}

.service-card.featured::before {
  background: var(--coral-light);
  transform: scaleX(1);
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured .service-features li {
  color: var(--white);
}

.service-card.featured .service-features li::before {
  color: var(--coral-light);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--coral-light), var(--coral));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card > p {
  color: var(--gray-600);
  margin-bottom: 24px;
}

.service-features {
  list-style: none;
  margin-bottom: 24px;
}

.service-features li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  color: var(--gray-700);
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 700;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--coral);
  transition: gap var(--transition-fast);
}

.service-link:hover {
  gap: 12px;
}

.service-card.featured .service-link {
  color: var(--coral-light);
}

@media (max-width: 968px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ============================================
   WHY DIFFERENT SECTION
   ============================================ */
.why-different {
  padding: var(--section-padding) 0;
  background: var(--cream);
}

.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-text h2 {
  margin-bottom: 24px;
}

.why-text .lead {
  margin-bottom: 32px;
}

.differentiators {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.differentiator {
  display: flex;
  gap: 16px;
}

.differentiator-icon {
  width: 48px;
  height: 48px;
  background: var(--coral);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.differentiator-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.differentiator h4 {
  margin-bottom: 4px;
  color: var(--navy-dark);
}

.differentiator p {
  color: var(--gray-600);
  margin: 0;
}

.why-visual {
  position: relative;
}

.operator-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.operator-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 120px;
  color: var(--coral);
  opacity: 0.2;
  position: absolute;
  top: -20px;
  left: 20px;
  line-height: 1;
}

.operator-quote {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.operator-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--navy-dark);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 8px;
}

.operator-badge-icon {
  width: 40px;
  height: 40px;
  background: var(--coral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.operator-badge-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.operator-badge-text {
  font-size: 0.875rem;
}

.operator-badge-text strong {
  display: block;
  font-size: 1rem;
}

@media (max-width: 968px) {
  .why-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .why-visual {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: var(--gray-200);
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--white);
  border: 2px solid var(--coral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--coral);
  position: relative;
  z-index: 1;
  transition: all var(--transition-medium);
}

.process-step:hover .step-number {
  background: var(--coral);
  color: var(--white);
}

.process-step h4 {
  margin-bottom: 8px;
}

.process-step p {
  color: var(--gray-600);
  font-size: 0.9375rem;
}

@media (max-width: 968px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-steps::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .process-steps {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: var(--coral);
  border-radius: 50%;
  opacity: 0.1;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.25rem;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--gray-800);
  color: var(--white);
  padding: 60px 0 24px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo .logo-icon {
  width: 44px;
  height: 44px;
}

.footer-logo .logo-icon svg {
  width: 44px;
  height: 44px;
}

.footer-logo span {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-brand p {
  color: var(--gray-300);
  font-size: 0.9375rem;
}

.footer-column h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--gray-300);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--coral-light);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--gray-700);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: var(--gray-300);
  font-size: 0.875rem;
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: var(--gray-700);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.footer-social a:hover {
  background: var(--coral);
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

@media (max-width: 968px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255,255,255,0.9);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

.service-detail {
  padding: var(--section-padding) 0;
}

.service-detail:nth-child(odd) {
  background: var(--cream);
}

.service-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.service-detail:nth-child(even) .service-detail-content {
  direction: rtl;
}

.service-detail:nth-child(even) .service-detail-content > * {
  direction: ltr;
}

.service-detail-text h2 {
  margin-bottom: 16px;
}

.service-detail-text .lead {
  margin-bottom: 24px;
}

.service-detail-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.detail-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--gray-200);
}

.service-detail:nth-child(odd) .detail-feature {
  background: var(--white);
}

.detail-feature svg {
  width: 20px;
  height: 20px;
  fill: var(--coral);
  flex-shrink: 0;
  margin-top: 2px;
}

.detail-feature span {
  font-weight: 500;
  color: var(--gray-700);
}

.service-detail-visual {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.service-detail:nth-child(odd) .service-detail-visual {
  background: var(--navy-dark);
  color: var(--white);
}

.service-detail:nth-child(odd) .service-detail-visual h4 {
  color: var(--white);
}

.visual-list {
  list-style: none;
}

.visual-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-detail:nth-child(odd) .visual-list li {
  border-color: rgba(255,255,255,0.1);
}

.visual-list li:last-child {
  border-bottom: none;
}

.visual-list svg {
  width: 20px;
  height: 20px;
  fill: var(--coral-light);
}

@media (max-width: 968px) {
  .service-detail-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .service-detail:nth-child(even) .service-detail-content {
    direction: ltr;
  }
  
  .service-detail-features {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   COMPLETE PACKAGE SECTION
   ============================================ */
.complete-package {
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
}

.package-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.package-header .section-label {
  color: var(--coral-light);
}

.package-header h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.package-header p {
  color: rgba(255,255,255,0.9);
  font-size: 1.125rem;
}

.package-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.package-column {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
}

.package-column h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.package-column h3 svg {
  width: 28px;
  height: 28px;
  fill: var(--coral);
}

.package-list {
  list-style: none;
}

.package-list li {
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}

.package-list li:last-child {
  border-bottom: none;
}

.package-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.package-cta {
  text-align: center;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .package-content {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-intro {
  padding: var(--section-padding) 0;
}

.about-intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-story h2 {
  margin-bottom: 24px;
}

.story-highlight {
  background: var(--coral);
  color: var(--white);
  padding: 24px 32px;
  border-radius: 12px;
  margin: 32px 0;
}

.story-highlight p {
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0;
}

.about-visual {
  position: relative;
}

.about-image-placeholder {
  background: linear-gradient(135deg, var(--navy-light), var(--navy-dark));
  border-radius: 16px;
  padding: 60px 40px;
  text-align: center;
  color: var(--white);
}

.about-image-placeholder h3 {
  color: var(--white);
  margin-bottom: 8px;
}

.about-image-placeholder p {
  opacity: 0.9;
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--coral);
  color: var(--white);
  padding: 20px 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.experience-badge .number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.experience-badge .label {
  font-size: 0.875rem;
  opacity: 0.9;
}

@media (max-width: 968px) {
  .about-intro-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* Values Section */
.values {
  padding: var(--section-padding) 0;
  background: var(--cream);
}

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

.value-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--coral-light), var(--coral));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.value-icon svg {
  width: 36px;
  height: 36px;
  fill: var(--white);
}

.value-card h3 {
  margin-bottom: 12px;
}

.value-card p {
  color: var(--gray-600);
  margin: 0;
}

@media (max-width: 968px) {
  .values-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
  padding: var(--section-padding) 0;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-info h2 {
  margin-bottom: 16px;
}

.contact-info .lead {
  margin-bottom: 32px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-method-icon {
  width: 56px;
  height: 56px;
  background: var(--coral);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.contact-method-text {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.contact-method-text strong {
  display: block;
  font-size: 1.125rem;
  color: var(--navy-dark);
}

.service-area {
  background: var(--cream);
  border-radius: 12px;
  padding: 24px;
}

.service-area h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.service-area h4 svg {
  width: 20px;
  height: 20px;
  fill: var(--coral);
}

.service-area p {
  color: var(--gray-600);
  margin: 0;
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

.contact-form-wrapper h3 {
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  transition: all var(--transition-fast);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(224, 122, 95, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-submit {
  margin-top: 8px;
}

.form-submit .btn {
  width: 100%;
}

@media (max-width: 968px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

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

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* Utility Classes */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }

/* ============================================
   BLOG STYLES
   ============================================ */

/* Blog List Page */
.blog-list {
  padding: var(--section-padding) 0;
  background: var(--cream);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
}

.blog-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-medium);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.blog-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-card-image svg,
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-content {
  padding: 24px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.85rem;
}

.blog-category {
  background: var(--coral-light);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.blog-date,
.blog-read-time {
  color: var(--gray-600);
}

.blog-card h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--navy-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.blog-card h2 a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

.blog-card h2 a:hover {
  color: var(--coral);
}

.blog-card p {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-read-more {
  color: var(--coral);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-fast);
}

.blog-read-more:hover {
  color: var(--coral-dark);
}

/* Blog Post Page */
.blog-post {
  padding: 120px 0 80px;
  background: var(--white);
}

.blog-post .container {
  max-width: 800px;
}

.blog-back-link {
  display: inline-block;
  color: var(--coral);
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 24px;
  transition: var(--transition-fast);
}

.blog-back-link:hover {
  color: var(--coral-dark);
}

.blog-post-header {
  margin-bottom: 48px;
}

.blog-post-header .blog-meta {
  margin-bottom: 16px;
}

.blog-post-header h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--navy-dark);
  line-height: 1.2;
  margin-bottom: 24px;
}

.blog-post-intro {
  font-size: 1.2rem;
  color: var(--gray-600);
  line-height: 1.7;
  border-left: 4px solid var(--coral);
  padding-left: 24px;
}

/* Blog Post Body */
.blog-post-body h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy-dark);
  margin: 48px 0 20px;
  line-height: 1.3;
}

.blog-post-body h2:first-child {
  margin-top: 0;
}

.blog-post-body p {
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.blog-post-body strong {
  color: var(--navy-dark);
  font-weight: 600;
}

.blog-post-body ul,
.blog-post-body ol {
  margin: 20px 0;
  padding-left: 24px;
  color: var(--gray-700);
}

.blog-post-body li {
  margin-bottom: 12px;
  line-height: 1.7;
}

/* Blog CTA Box */
.blog-cta-box {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: 16px;
  padding: 40px;
  margin-top: 48px;
  text-align: center;
}

.blog-cta-box h3 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.blog-cta-box p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}

.blog-cta-box .btn {
  margin-bottom: 16px;
}

.blog-cta-phone {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.blog-cta-phone a {
  color: var(--coral-light);
  text-decoration: none;
  font-weight: 600;
}

.blog-cta-phone a:hover {
  color: var(--white);
}

/* Blog Responsive */
@media (max-width: 768px) {
  .blog-post-header h1 {
    font-size: 1.8rem;
  }
  
  .blog-post-intro {
    font-size: 1.05rem;
  }
  
  .blog-post-body h2 {
    font-size: 1.4rem;
  }
  
  .blog-cta-box {
    padding: 32px 24px;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
