/* Benim Bakıcım — Design System */
:root {
  --navy: #0f2744;
  --navy-light: #1a3a5c;
  --navy-dark: #091a2e;
  --terracotta: #c45c26;
  --terracotta-hover: #a84d1f;
  --sage: #5a8f7b;
  --sage-light: #7aab96;
  --cream: #faf8f5;
  --white: #ffffff;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --gold: #d4a853;
  --shadow: 0 4px 24px rgba(15, 39, 68, 0.12);
  --shadow-lg: 0 12px 48px rgba(15, 39, 68, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 24px; }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.25; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

.text-accent { color: var(--sage); font-style: italic; }
.text-terracotta { color: var(--terracotta); }
.text-white { color: var(--white); }
.text-muted { color: var(--gray-600); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--terracotta);
}

.section { padding: 80px 0; }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 56px; }
.section-header p { margin-top: 16px; color: var(--gray-600); font-size: 1.05rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(196, 92, 38, 0.35);
}
.btn-primary:hover { background: var(--terracotta-hover); transform: translateY(-2px); }
.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 2px solid transparent;
}
.btn-secondary:hover { border-color: var(--navy); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 18px 36px; font-size: 1rem; }

/* Top Bar */
.top-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: var(--white); }
.top-bar-social { display: flex; gap: 16px; }
.top-bar-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* Header */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(15,39,68,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
  flex-wrap: nowrap;
  min-width: 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
  white-space: nowrap;
  min-width: 0;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--terracotta), var(--gold));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}
.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 10px;
  background: var(--white);
  flex-shrink: 0;
}
.footer .logo-img { background: var(--white); padding: 2px; }
.logo span { color: var(--terracotta); }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
  min-width: 0;
}
.nav-desktop > li { position: relative; flex-shrink: 0; }
.nav-desktop > li > a,
.nav-desktop > li > button {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--navy);
  background: none;
  border-radius: 8px;
  white-space: nowrap;
}
.nav-desktop > li > a:hover,
.nav-desktop > li > button:hover { background: var(--gray-100); }
.nav-badge {
  background: var(--terracotta);
  color: white;
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 4px;
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px;
  min-width: 680px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.nav-desktop > li:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mega-col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--terracotta);
  margin-bottom: 16px;
  font-weight: 700;
}
.mega-col a {
  display: block;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--gray-600);
}
.mega-col a:hover { color: var(--navy); padding-left: 4px; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header-whatsapp {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.85rem;
  white-space: nowrap;
}
.header-whatsapp:hover { color: #25D366; }
.header-cta { flex-shrink: 0; }
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--gray-100);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  padding: 0;
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
}
.menu-toggle:hover { background: var(--gray-200); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform var(--transition);
  overflow-y: auto;
  padding: 20px 24px 40px;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav.open { transform: translateX(0); }
body.nav-open { overflow: hidden; }
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  gap: 12px;
}
.mobile-nav-close {
  background: var(--gray-100);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  font-size: 1.35rem;
  color: var(--navy);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav a, .mobile-nav button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 16px 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid var(--gray-200);
  background: none;
}
.mobile-submenu {
  padding: 4px 0 8px 12px;
  display: none;
  border-bottom: 1px solid var(--gray-200);
}
.mobile-submenu.open { display: block; }
.mobile-submenu a {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--gray-600);
  padding: 10px 0;
  border-bottom: none;
}
.mobile-nav .btn {
  margin-top: 28px;
  width: 100%;
  text-align: center;
  border-bottom: none;
  padding: 14px 28px;
  font-weight: 600;
}
.mobile-nav .btn-primary {
  background: var(--terracotta);
  color: var(--white);
}
.mobile-nav .btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 2px solid var(--gray-200);
  margin-top: 12px;
}

/* Hero Slider */
.hero {
  position: relative;
  min-height: 85vh;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,39,68,0.92) 0%, rgba(15,39,68,0.75) 50%, rgba(15,39,68,0.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
  max-width: 650px;
}
.hero-content h1 { color: var(--white); margin-bottom: 20px; }
.hero-content p { color: rgba(255,255,255,0.88); font-size: 1.1rem; margin-bottom: 32px; line-height: 1.7; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-nav {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 10;
  display: flex;
  gap: 12px;
}
.hero-nav button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: white;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 1.2rem;
}
.hero-nav button:hover { background: rgba(255,255,255,0.25); }
.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}
.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  padding: 0;
}
.hero-dots button.active { background: var(--terracotta); width: 28px; border-radius: 5px; }

/* Stats Bar */
.stats-bar {
  background: var(--white);
  margin-top: -60px;
  position: relative;
  z-index: 5;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item .stat-number {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.stat-item .stat-number span { color: var(--terracotta); }
.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-top: 8px;
  line-height: 1.4;
}

/* Path Cards */
.path-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.path-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.path-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sage-light);
}
.path-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--sage-light), var(--sage));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.path-card h3 { margin-bottom: 12px; }
.path-card p { color: var(--gray-600); font-size: 0.95rem; margin-bottom: 20px; }
.path-card .btn-link {
  color: var(--terracotta);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.path-card .btn-link:hover { gap: 10px; }

.trust-banner {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}
.trust-banner strong { color: var(--gold); }

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.service-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,39,68,0.6), transparent);
}
.service-card-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--terracotta);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  z-index: 1;
}
.service-card-body { padding: 28px; }
.service-card-body h3 { margin-bottom: 12px; }
.service-card-body p { color: var(--gray-600); font-size: 0.95rem; margin-bottom: 20px; }
.service-card-body .btn-link { color: var(--terracotta); font-weight: 600; }

/* Featured Section */
.featured-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.featured-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.featured-image img { width: 100%; height: 500px; object-fit: cover; }
.featured-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.featured-badge strong { display: block; font-family: var(--font-serif); font-size: 1.1rem; color: var(--navy); }
.featured-badge span { font-size: 0.85rem; color: var(--gray-600); }
.feature-list { margin: 28px 0; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
}
.feature-list li::before {
  content: '✓';
  color: var(--sage);
  font-weight: 700;
  flex-shrink: 0;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.testimonial-rating { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; }
.testimonial-text {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testimonial-text.expanded { -webkit-line-clamp: unset; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sage-light);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.testimonial-author strong { display: block; color: var(--navy); font-size: 0.95rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--gray-400); }
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 16px 28px;
  border-radius: 50px;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}
.google-badge .rating { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; color: var(--navy); }
.google-badge .stars { color: var(--gold); }

/* Contact Form */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 24px; }
.contact-info-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-info-item .icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-item a { color: rgba(255,255,255,0.9); }
.contact-info-item a:hover { color: var(--white); }

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-card h3 { margin-bottom: 8px; }
.form-card > p { color: var(--gray-600); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 20px;
}
.form-checkbox input { margin-top: 3px; flex-shrink: 0; }
.form-checkbox a { color: var(--terracotta); text-decoration: underline; }
.form-note { font-size: 0.8rem; color: var(--gray-400); margin-top: 16px; text-align: center; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(15,39,68,0.06);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--terracotta);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}
.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* Page Hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196,92,38,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 600px; }
.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 0.85rem;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: var(--white); }

/* Service Page Layout */
.service-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 60px 0;
}
.service-hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.service-hero-image img { width: 100%; height: 400px; object-fit: cover; }
.service-hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 32px;
}
.service-hero-stat {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  padding: 16px 24px;
  border-radius: var(--radius);
  text-align: center;
}
.service-hero-stat strong { display: block; font-size: 1.5rem; color: var(--gold); }
.service-hero-stat span { font-size: 0.8rem; color: rgba(255,255,255,0.7); }

.sub-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sub-service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--terracotta);
}
.sub-service-card h4 { margin-bottom: 10px; font-family: var(--font-sans); }
.sub-service-card p { color: var(--gray-600); font-size: 0.9rem; }

.responsibilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.responsibility-item {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.responsibility-item .icon {
  width: 56px;
  height: 56px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
}
.responsibility-item h5 { margin-bottom: 8px; font-family: var(--font-sans); color: var(--navy); }
.responsibility-item p { font-size: 0.85rem; color: var(--gray-600); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.process-step {
  text-align: center;
  position: relative;
}
.process-step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--terracotta);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  margin: 0 auto 16px;
  font-size: 1.1rem;
}
.process-step h4 { margin-bottom: 8px; font-family: var(--font-sans); }
.process-step p { font-size: 0.9rem; color: var(--gray-600); }

/* About Page */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img { width: 100%; height: 450px; object-fit: cover; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
}
.team-card-image {
  height: 240px;
  background: linear-gradient(135deg, var(--navy-light), var(--sage));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255,255,255,0.3);
}
.team-card-body { padding: 24px; }
.team-card-body h3 { margin-bottom: 8px; }
.team-card-body .role { color: var(--terracotta); font-size: 0.85rem; font-weight: 600; margin-bottom: 12px; }
.team-card-body p { color: var(--gray-600); font-size: 0.9rem; }

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.award-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow);
}
.award-card .icon { font-size: 2.5rem; margin-bottom: 12px; }
.award-card h4 { margin-bottom: 8px; font-family: var(--font-sans); }
.award-card p { font-size: 0.85rem; color: var(--gray-600); }

/* Footer */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p { margin: 16px 0 24px; font-size: 0.9rem; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.footer-social a:hover { background: var(--terracotta); }
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a:hover { color: var(--white); }
.footer-legal {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* Floating Actions */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
}
.floating-btn:hover { transform: scale(1.1); }
.floating-btn.whatsapp { background: #25D366; color: white; }
.floating-btn.phone { background: var(--terracotta); color: white; }
.floating-btn.form { background: var(--navy); color: white; width: auto; padding: 0 20px; border-radius: 28px; font-size: 0.85rem; font-weight: 600; gap: 8px; }

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 -4px 24px rgba(15,39,68,0.15);
  padding: 20px 24px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform var(--transition);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner p { font-size: 0.9rem; color: var(--gray-600); flex: 1; }
.cookie-banner a { color: var(--terracotta); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--terracotta), #d4763a);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  color: var(--white);
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p { opacity: 0.9; margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-secondary { color: var(--terracotta); }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card, .path-card, .testimonial-card, .stat-item {
  animation: fadeInUp 0.6s ease backwards;
}
.services-grid .service-card:nth-child(1) { animation-delay: 0.05s; }
.services-grid .service-card:nth-child(2) { animation-delay: 0.1s; }
.services-grid .service-card:nth-child(3) { animation-delay: 0.15s; }
.services-grid .service-card:nth-child(4) { animation-delay: 0.2s; }
.services-grid .service-card:nth-child(5) { animation-delay: 0.25s; }
.services-grid .service-card:nth-child(6) { animation-delay: 0.3s; }

.logo-icon img, .logo-icon svg { width: 100%; height: 100%; }

/* Compact desktop nav before burger kicks in */
@media (max-width: 1280px) {
  .nav-desktop > li > a,
  .nav-desktop > li > button {
    padding: 8px 8px;
    font-size: 0.8rem;
  }
  .header-whatsapp { font-size: 0.8rem; }
  .header-actions .btn-sm { padding: 10px 14px; font-size: 0.8rem; }
  .logo { font-size: 1.15rem; }
  .logo-img { width: 42px; height: 42px; }
}

/* Burger menu — tablet & below (prevents nav overflow) */
@media (max-width: 1100px) {
  .nav-desktop { display: none; }
  .header-whatsapp { display: none; }
  .menu-toggle { display: flex; }
  .mega-menu { display: none !important; }
  .header-inner { gap: 12px; }
  .header-actions .header-cta { display: none; }
}

@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid, .path-cards, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-split, .contact-section, .service-hero, .about-story { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps, .sub-services, .responsibilities-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid, .awards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .path-cards, .testimonials-grid,
  .sub-services, .responsibilities-grid, .process-steps,
  .team-grid, .awards-grid { grid-template-columns: 1fr; }
  .stats-bar { margin-top: -40px; padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-content { padding: 100px 0 60px; }
  .footer-grid { grid-template-columns: 1fr; }
  .floating-actions { bottom: 16px; right: 16px; }
  .logo { font-size: 1.05rem; gap: 8px; }
  .logo-img { width: 38px; height: 38px; }
  .header-inner { padding: 10px 0; }
  .container { padding: 0 16px; }
  .top-bar { font-size: 0.7rem; }
  .top-bar .container { justify-content: center; text-align: center; }
  .top-bar-social { display: none; }
}
