
:root {
  --primary: #1a3a5c;
  --primary-light: #2a5298;
  --primary-dark: #0d1f33;
  --secondary: #2e8b57;
  --secondary-light: #3cb371;
  --accent: #1a9b8a;
  --accent-light: #2dc5b0;
  --bg-light: #f4f6f9;
  --bg-white: #ffffff;
  --text-dark: #1c2b3a;
  --text-mid: #4a5568;
  --text-light: #718096;
  --border: #e2e8f0;
  --shadow-sm: 0 2px 8px rgba(26,58,92,0.08);
  --shadow-md: 0 6px 24px rgba(26,58,92,0.12);
  --shadow-lg: 0 16px 48px rgba(26,58,92,0.16);
  --radius: 10px;
  --radius-lg: 18px;
  --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: 'DM Sans', 'Open Sans', sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  line-height: 1.2;
  color: var(--primary-dark);
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }

p { color: var(--text-mid); margin-bottom: 1rem; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }

.lead {
  font-size: 1.15rem;
  color: var(--text-mid);
  font-weight: 400;
  line-height: 1.8;
}

.section-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
}

.container-fluid { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
section { padding: 6rem 0; }

#mainNav {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
  padding: 0.9rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
#mainNav.scrolled {
  box-shadow: var(--shadow-md);
  padding: 0.6rem 0;
}
.navbar-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary) !important;
  letter-spacing: -0.02em;
}
.navbar-brand span { color: var(--accent); }
.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-dark) !important;
  padding: 0.5rem 0.9rem !important;
  transition: color var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--accent) !important; }
.nav-cta {
  background: var(--primary);
  color: #fff !important;
  border-radius: 6px;
  padding: 0.5rem 1.3rem !important;
}
.nav-cta:hover { background: var(--accent) !important; color: #fff !important; }

.btn-primary-zy {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 0.85rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary-zy:hover {
  background: var(--primary-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,58,92,0.28);
}
.btn-secondary-zy {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 0.85rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-secondary-zy:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-accent-zy {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 0.85rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-accent-zy:hover {
  background: var(--accent-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,155,138,0.3);
}
.btn-white-zy {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: var(--primary);
  border: none;
  border-radius: var(--radius);
  padding: 0.85rem 2rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-white-zy:hover {
  background: var(--bg-light);
  color: var(--primary);
  transform: translateY(-2px);
}

.hero-section {
  min-height: 92vh;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.07;
}
.hero-shape-1 { width: 600px; height: 600px; background: #fff; top: -150px; right: -150px; }
.hero-shape-2 { width: 400px; height: 400px; background: var(--accent); bottom: -100px; left: 10%; }
.hero-shape-3 { width: 200px; height: 200px; background: var(--secondary); top: 30%; left: 55%; }
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.hero-section h1 { color: #fff; margin-bottom: 1.2rem; }
.hero-section .lead { color: rgba(255,255,255,0.82); margin-bottom: 2rem; }
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.hero-stat { text-align: left; }
.hero-stat .num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image-wrap img { width: 100%; height: 520px; object-fit: cover; display: block; }
.hero-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-md);
}
.hero-image-badge .icon {
  width: 44px; height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.1rem;
}
.hero-image-badge .text strong { display: block; color: var(--primary-dark); font-weight: 700; font-size: 0.95rem; }
.hero-image-badge .text span { font-size: 0.78rem; color: var(--text-light); }

.service-selector { background: var(--bg-light); }
.selector-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.selector-tab {
  flex: 1;
  min-width: 160px;
  padding: 1.2rem 1.5rem;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.selector-tab:hover { border-color: var(--accent); color: var(--accent); }
.selector-tab.active { border-color: var(--primary); background: var(--primary); color: #fff; box-shadow: var(--shadow-md); }
.selector-tab i { font-size: 1.2rem; }
.selector-content { display: none; }
.selector-content.active { display: block; }
.selector-panel {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.selector-panel img { width: 100%; height: 400px; object-fit: cover; }
.selector-panel-body { padding: 2.5rem; }
.selector-feature-list { list-style: none; padding: 0; margin: 1.2rem 0; }
.selector-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.5rem 0;
  color: var(--text-mid);
  font-size: 0.95rem;
}
.selector-feature-list li i { color: var(--secondary); margin-top: 0.15rem; flex-shrink: 0; }

.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  height: 100%;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card-img { position: relative; overflow: hidden; height: 220px; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary);
  color: #fff;
  border-radius: 6px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.service-card-body { padding: 1.75rem; }
.service-card-body h3 { margin-bottom: 0.75rem; }
.service-card-body p { font-size: 0.93rem; color: var(--text-mid); }

.before-after-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
}
.before-after-container img { width: 100%; height: 500px; object-fit: cover; display: block; }
.ba-after { position: absolute; top: 0; left: 0; width: 50%; overflow: hidden; height: 100%; }
.ba-after img { min-width: 800px; max-width: unset; }
.ba-slider-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: #fff;
  transform: translateX(-50%);
  z-index: 10;
}
.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 48px; height: 48px;
  background: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  z-index: 11;
}
.ba-handle i { color: var(--primary); font-size: 1.1rem; }
.ba-label {
  position: absolute;
  top: 1.2rem;
  background: rgba(0,0,0,0.55);
  color: #fff;
  border-radius: 6px;
  padding: 0.3rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ba-label-before { left: 1.2rem; }
.ba-label-after { right: 1.2rem; }

.team-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-img { height: 280px; overflow: hidden; }
.team-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.5s ease; }
.team-card:hover .team-img img { transform: scale(1.04); }
.team-body { padding: 1.5rem; }
.team-body h4 { margin-bottom: 0.25rem; }
.team-role { font-size: 0.82rem; color: var(--accent); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.6rem; }
.team-body p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

.testimonials-section { background: var(--primary-dark); }
.testimonials-section h2,
.testimonials-section .section-label { color: #fff; }
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  transition: all var(--transition);
}
.testimonial-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.testimonial-stars { color: #fbbf24; margin-bottom: 1rem; letter-spacing: 0.1em; }
.testimonial-text { color: rgba(255,255,255,0.82); font-size: 0.95rem; line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-author-name { color: #fff; font-weight: 600; font-size: 0.92rem; display: block; }
.testimonial-author-loc { color: rgba(255,255,255,0.5); font-size: 0.8rem; }

.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.process-num {
  flex-shrink: 0;
  width: 56px; height: 56px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
}
.process-step-body h4 { margin-bottom: 0.4rem; }
.process-step-body p { margin: 0; font-size: 0.93rem; }

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  padding: 1.3rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  transition: color var(--transition);
  gap: 1rem;
}
.faq-question:hover { color: var(--accent); }
.faq-icon { font-size: 0.9rem; color: var(--accent); transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner { padding: 0 0 1.3rem 0; color: var(--text-mid); font-size: 0.95rem; line-height: 1.75; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,58,92,0.5);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.8rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item.tall { grid-row: span 2; aspect-ratio: unset; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.active { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  background: none; border: none;
  transition: color var(--transition);
}
.lightbox-close:hover { color: var(--accent-light); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background var(--transition);
}
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.quiz-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 2.5rem;
}
.quiz-question { font-weight: 700; font-size: 1.1rem; margin-bottom: 1.5rem; color: var(--primary-dark); font-family: 'DM Sans', sans-serif; }
.quiz-options { display: flex; flex-direction: column; gap: 0.75rem; }
.quiz-option {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 0.95rem;
  color: var(--text-mid);
  display: flex; align-items: center; gap: 0.8rem;
  background: none;
  text-align: left;
  width: 100%;
  font-family: 'DM Sans', sans-serif;
}
.quiz-option:hover { border-color: var(--accent); color: var(--accent); background: rgba(26,155,138,0.04); }
.quiz-option.selected { border-color: var(--primary); background: rgba(26,58,92,0.06); color: var(--primary); }
.quiz-option i { font-size: 1.1rem; }
.quiz-result {
  display: none;
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(26,58,92,0.06), rgba(26,155,138,0.06));
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
}
.quiz-result.show { display: block; }
.quiz-result h4 { color: var(--primary-dark); margin-bottom: 0.5rem; }
.quiz-result p { margin: 0; font-size: 0.93rem; }
.quiz-progress { height: 4px; background: var(--border); border-radius: 2px; margin-bottom: 1.5rem; }
.quiz-progress-bar { height: 100%; background: var(--accent); border-radius: 2px; transition: width 0.4s ease; }

.stats-section { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); }
.stat-item { text-align: center; padding: 1rem; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  display: block;
}
.stat-num .suffix { font-size: 2rem; }
.stat-label { color: rgba(255,255,255,0.7); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; margin-top: 0.3rem; display: block; }
.stat-divider { width: 1px; background: rgba(255,255,255,0.2); height: 80px; align-self: center; }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 420px;
}
.map-embed iframe { width: 100%; height: 100%; border: none; display: block; }

.form-group { margin-bottom: 1.3rem; }
.form-label { font-size: 0.88rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.4rem; display: block; }
.form-control-zy {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: #fff;
  transition: border-color var(--transition);
  outline: none;
}
.form-control-zy:focus { border-color: var(--accent); }
.form-control-zy.error { border-color: #e53e3e; }
.form-error { font-size: 0.8rem; color: #e53e3e; margin-top: 0.3rem; display: block; }
textarea.form-control-zy { min-height: 140px; resize: vertical; }

.captcha-box {
  background: var(--bg-light);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.captcha-box input[type="checkbox"] { width: 22px; height: 22px; accent-color: var(--accent); cursor: pointer; }
.captcha-label { font-size: 0.9rem; color: var(--text-mid); font-weight: 500; }
.captcha-challenge {
  background: var(--bg-light);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  margin-top: 0.8rem;
  display: none;
}
.captcha-challenge.show { display: block; }
.captcha-question { font-weight: 600; font-size: 0.92rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.captcha-answer {
  padding: 0.5rem 0.8rem;
  border: 2px solid var(--border);
  border-radius: 6px;
  font-size: 0.95rem;
  width: 100px;
  outline: none;
  transition: border-color var(--transition);
}
.captcha-answer:focus { border-color: var(--accent); }

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 620px;
  background: var(--primary-dark);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 9000;
  transform: translateY(150%);
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-icon { font-size: 2rem; flex-shrink: 0; }
.cookie-text { flex: 1; }
.cookie-text p { color: rgba(255,255,255,0.8); font-size: 0.88rem; margin: 0 0 1rem; line-height: 1.6; }
.cookie-buttons { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.cookie-accept { background: var(--accent); color: #fff; border: none; border-radius: 6px; padding: 0.5rem 1.2rem; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: background var(--transition); }
.cookie-accept:hover { background: var(--accent-light); }
.cookie-decline { background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.25); border-radius: 6px; padding: 0.5rem 1.2rem; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: all var(--transition); }
.cookie-decline:hover { color: #fff; border-color: rgba(255,255,255,0.5); }

.site-footer { background: var(--primary-dark); color: rgba(255,255,255,0.75); padding: 5rem 0 2rem; }
.footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; color: #fff; }
.footer-brand span { color: var(--accent-light); }
.footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.5); margin-top: 0.5rem; }
.footer-heading { color: #fff; font-family: 'DM Sans', sans-serif; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--accent-light); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.7rem; margin-bottom: 0.8rem; font-size: 0.9rem; }
.footer-contact-item i { color: var(--accent-light); margin-top: 0.15rem; flex-shrink: 0; }
.footer-divider { border-color: rgba(255,255,255,0.1); margin: 2.5rem 0 1.5rem; }
.footer-bottom { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-legal-links a { color: rgba(255,255,255,0.4); font-size: 0.82rem; margin-left: 1.2rem; transition: color var(--transition); }
.footer-legal-links a:hover { color: rgba(255,255,255,0.8); }

.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: #fff;
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero h1 { color: #fff; }
.page-hero .lead { color: rgba(255,255,255,0.78); }
.breadcrumb { background: none; padding: 0; margin-bottom: 1.5rem; }
.breadcrumb-item a { color: rgba(255,255,255,0.6); font-size: 0.88rem; }
.breadcrumb-item.active { color: rgba(255,255,255,0.4); font-size: 0.88rem; }
.breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,0.3); }

.icon-box {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.icon-box-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(26,155,138,0.3);
}
.icon-box-body h5 { margin-bottom: 0.3rem; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 1rem; }
.icon-box-body p { font-size: 0.9rem; margin: 0; }

.article-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  height: 100%;
}
.article-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.article-card-img { height: 200px; overflow: hidden; }
.article-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.article-card:hover .article-card-img img { transform: scale(1.06); }
.article-card-body { padding: 1.5rem; }
.article-meta { display: flex; gap: 1rem; margin-bottom: 0.75rem; flex-wrap: wrap; }
.article-tag { background: rgba(26,155,138,0.1); color: var(--accent); border-radius: 50px; padding: 0.2rem 0.75rem; font-size: 0.75rem; font-weight: 600; }
.article-date { color: var(--text-light); font-size: 0.8rem; }
.article-card-body h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.article-card-body p { font-size: 0.9rem; color: var(--text-light); margin: 0; }
.read-more { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--accent); font-weight: 600; font-size: 0.88rem; margin-top: 1rem; transition: gap var(--transition); }
.read-more:hover { gap: 0.7rem; color: var(--accent); }

.article-content h2 { font-size: 1.6rem; margin: 2rem 0 0.8rem; }
.article-content h3 { font-size: 1.25rem; margin: 1.5rem 0 0.6rem; }
.article-content p { margin-bottom: 1.2rem; }
.article-content ul, .article-content ol { margin: 1rem 0 1.2rem 1.5rem; }
.article-content li { margin-bottom: 0.5rem; color: var(--text-mid); }
.article-content img { width: 100%; border-radius: var(--radius); margin: 1.5rem 0; }
.article-content blockquote {
  border-left: 4px solid var(--accent);
  padding: 1rem 1.5rem;
  background: rgba(26,155,138,0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--text-mid);
}

.timeline { position: relative; padding-left: 3rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item { position: relative; margin-bottom: 2.5rem; }
.timeline-dot {
  position: absolute;
  left: -2.3rem;
  top: 0.4rem;
  width: 16px; height: 16px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--accent);
}
.timeline-year { font-size: 0.78rem; font-weight: 700; color: var(--accent); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.3rem; }
.timeline-item h4 { margin-bottom: 0.4rem; }
.timeline-item p { font-size: 0.93rem; margin: 0; }

.value-card {
  text-align: center;
  padding: 2rem;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  margin: 0 auto 1.2rem;
}
.value-card h4 { margin-bottom: 0.6rem; }
.value-card p { font-size: 0.92rem; margin: 0; }

.cta-section {
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  padding: 5rem 0;
  text-align: center;
}
.cta-section h2, .cta-section p { color: #fff; }
.cta-section p { opacity: 0.85; max-width: 580px; margin: 0 auto 2rem; }

.info-box {
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}
.info-box-accent { background: rgba(26,155,138,0.08); border-left: 4px solid var(--accent); }
.info-box-primary { background: rgba(26,58,92,0.06); border-left: 4px solid var(--primary); }
.info-box h5 { margin-bottom: 0.4rem; }
.info-box p { font-size: 0.92rem; margin: 0; }

.thank-you-wrap { min-height: 80vh; display: flex; align-items: center; justify-content: center; }
.thank-you-icon {
  width: 100px; height: 100px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
}

.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 1.4rem; margin: 2rem 0 0.6rem; }
.legal-content h3 { font-size: 1.1rem; margin: 1.5rem 0 0.5rem; }
.legal-content ul { margin: 0.75rem 0 1rem 1.5rem; }
.legal-content li { margin-bottom: 0.4rem; color: var(--text-mid); font-size: 0.95rem; }

.text-accent { color: var(--accent); }
.text-primary-zy { color: var(--primary); }
.text-secondary-zy { color: var(--secondary); }
.bg-light-zy { background: var(--bg-light); }
.bg-primary-zy { background: var(--primary); }
.divider { height: 1px; background: var(--border); margin: 2rem 0; }
.tag { display: inline-flex; align-items: center; gap: 0.4rem; background: rgba(26,155,138,0.1); color: var(--accent); border-radius: 50px; padding: 0.25rem 0.8rem; font-size: 0.8rem; font-weight: 600; }

@media (max-width: 992px) {
  section { padding: 4.5rem 0; }
  .hero-section { min-height: auto; padding: 5rem 0; }
  .hero-image-wrap { margin-top: 3rem; }
  .hero-image-wrap img { height: 360px; }
  .before-after-container img { height: 360px; }
  .ba-after img { min-width: 600px; }
}
@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .container-fluid { padding: 0 1.2rem; }
  .hero-stats { gap: 1.5rem; }
  .selector-tabs { flex-direction: column; }
  .selector-tab { min-width: unset; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .cookie-banner { left: 1rem; right: 1rem; flex-direction: column; }
}
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .before-after-container img { height: 260px; }
  .ba-after img { min-width: 400px; }
}

.logo{
  max-width: 200px;
  object-fit: contain;
}

html{
  overflow-x: hidden;
}