/* ========================================
   HELANO REINIGUNG – style.css
   ======================================== */

:root {
  --primary: #1a6b5a;
  --primary-light: #22897a;
  --primary-dark: #134d41;
  --accent: #f59e0b;
  --accent-light: #fbbf24;
  --blue: #1e90d6;
  --blue-light: #5bbcee;
  --white: #ffffff;
  --bg-light: #f4f9f8;
  --text: #1a1a2e;
  --gray: #6b7280;
  --gray-light: #e5e7eb;
  --shadow: 0 4px 24px rgba(26,107,90,.10);
  --shadow-lg: 0 12px 40px rgba(26,107,90,.16);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: .3s ease;
  --font: 'Nunito', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad { padding: 90px 0; }
.bg-light { background: var(--bg-light); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.section-header p { color: var(--gray); font-size: 1.05rem; margin-top: .75rem; }

.section-label {
  display: inline-block;
  background: rgba(26,107,90,.1);
  color: var(--primary);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: 50px;
  margin-bottom: .75rem;
}

h1, h2, h3, h4 { line-height: 1.25; font-weight: 800; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.2rem; }

.highlight { color: var(--primary); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-family: var(--font);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(26,107,90,.35);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,107,90,.4); }

.btn-outline {
  border-color: var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline:hover { background: var(--primary); color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.btn-white:hover { background: var(--bg-light); }

.btn-outline-white {
  border-color: rgba(255,255,255,.7);
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.btn-outline-white:hover { background: rgba(255,255,255,.2); }

.btn-nav {
  background: var(--accent);
  color: var(--white);
  font-size: .9rem;
  padding: .65rem 1.4rem;
}
.btn-nav:hover { background: #d97706; }

.btn-full { width: 100%; justify-content: center; }

/* ===== TEXT LOGO ===== */
.text-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  text-decoration: none;
  gap: 4px;
}

.tl-name {
  font-family: var(--font);
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: .06em;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,.18);
  transition: color var(--transition);
}

.navbar.scrolled .tl-name {
  color: var(--primary-dark);
  text-shadow: none;
}

.tl-sub {
  font-family: var(--font);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--accent);
  padding: .22rem .7rem;
  border-radius: 4px;
  display: inline-block;
  transition: background var(--transition), color var(--transition);
}

.navbar.scrolled .tl-sub {
  background: var(--accent);
  color: var(--white);
}

/* Footer variant */
.text-logo--footer .tl-name {
  color: var(--white);
  font-size: 1.6rem;
  text-shadow: none;
}
.text-logo--footer .tl-sub {
  background: var(--accent);
  color: var(--white);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  padding: 1.1rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,.1);
  padding: .7rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }

.nav-menu { flex: 1; }
.nav-menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .25rem;
}
.nav-menu a {
  padding: .5rem .9rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: .92rem;
  color: var(--white);
  transition: var(--transition);
}
.navbar.scrolled .nav-menu a { color: var(--text); }
.nav-menu a:hover { background: rgba(255,255,255,.15); color: var(--white); }
.navbar.scrolled .nav-menu a:hover { background: rgba(26,107,90,.08); color: var(--primary); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 4px;
  transition: var(--transition);
}
.navbar.scrolled .nav-toggle span { background: var(--text); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, var(--blue) 100%);
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 90px;
  overflow: hidden;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.shape-1 { width: 500px; height: 500px; top: -100px; right: -100px; }
.shape-2 { width: 300px; height: 300px; bottom: 50px; left: -80px; }
.shape-3 { width: 200px; height: 200px; top: 40%; left: 30%; background: rgba(255,255,255,.04); }

.bubbles { position: absolute; inset: 0; }
.bubbles span {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  animation: floatBubble linear infinite;
}
.bubbles span:nth-child(1)  { width:20px; height:20px; left:10%; animation-duration:8s; animation-delay:0s; }
.bubbles span:nth-child(2)  { width:14px; height:14px; left:25%; animation-duration:10s; animation-delay:1s; }
.bubbles span:nth-child(3)  { width:28px; height:28px; left:40%; animation-duration:7s; animation-delay:2s; }
.bubbles span:nth-child(4)  { width:10px; height:10px; left:55%; animation-duration:12s; animation-delay:.5s; }
.bubbles span:nth-child(5)  { width:18px; height:18px; left:70%; animation-duration:9s; animation-delay:3s; }
.bubbles span:nth-child(6)  { width:24px; height:24px; left:80%; animation-duration:6s; animation-delay:1.5s; }
.bubbles span:nth-child(7)  { width:12px; height:12px; left:15%; animation-duration:11s; animation-delay:4s; }
.bubbles span:nth-child(8)  { width:16px; height:16px; left:50%; animation-duration:8.5s; animation-delay:2.5s; }
.bubbles span:nth-child(9)  { width:22px; height:22px; left:35%; animation-duration:13s; animation-delay:0.8s; }
.bubbles span:nth-child(10) { width:8px;  height:8px;  left:90%; animation-duration:7.5s; animation-delay:3.5s; }

@keyframes floatBubble {
  0%   { bottom: -50px; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: .5; }
  100% { bottom: 110%; opacity: 0; }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 1.5rem 6rem;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: .4rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.25);
  margin-bottom: 1.25rem;
}

.hero-text h1 { color: var(--white); margin-bottom: 1rem; }
.hero-text h1 .highlight { color: var(--accent-light); }
.hero-sub { color: rgba(255,255,255,.88); font-size: 1.08rem; margin-bottom: 2rem; max-width: 520px; }
.hero-sub strong { color: var(--white); }

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

.hero-stats {
  display: flex;
  gap: 2rem;
}
.stat { display: flex; flex-direction: column; }
.stat strong { font-size: 1.8rem; color: var(--white); font-weight: 900; line-height: 1; }
.stat span { font-size: .82rem; color: rgba(255,255,255,.75); margin-top: .2rem; }

/* Hero visual */
.hero-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-circle {
  width: 380px;
  height: 380px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotateSlow 30s linear infinite;
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  animation: rotateSlow 30s linear infinite reverse;
}

.icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,.18);
  border-radius: 14px;
  padding: .85rem .6rem;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  transition: var(--transition);
}
.icon-card span { font-size: 1.8rem; line-height: 1; }
.icon-card small { font-size: .7rem; color: var(--white); font-weight: 700; margin-top: .3rem; text-align: center; }

.floating-badge {
  position: absolute;
  background: var(--white);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: .82rem;
  padding: .55rem 1.1rem;
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
  animation: floatUpDown 3s ease-in-out infinite;
}
.fb-1 { top: 10%; left: -10%; animation-delay: 0s; }
.fb-2 { bottom: 15%; right: -5%; animation-delay: 1.5s; }

@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.wave-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  line-height: 0;
}
.wave-bottom svg { display: block; width: 100%; }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--white);
  padding: 2.5rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  background: var(--bg-light);
}
.trust-item span { font-size: 1.8rem; flex-shrink: 0; }
.trust-item p { font-weight: 700; font-size: .92rem; color: var(--text); }

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual { position: relative; }
.about-img-wrap { position: relative; }
.about-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--blue) 100%);
  border-radius: var(--radius);
  transform: translate(16px, 16px);
  opacity: .25;
}
.about-car-img img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
  width: 100%;
  object-fit: cover;
}

.about-badge-box {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.ab-item {
  flex: 1;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.25rem;
  text-align: center;
}
.ab-item strong { display: block; font-size: 1.5rem; font-weight: 900; }
.ab-item span { font-size: .82rem; opacity: .88; }

.about-text h2 { margin-bottom: 1rem; }
.about-text p { color: var(--gray); margin-bottom: 1rem; }

.about-list { margin: 1.5rem 0; }
.about-list li {
  padding: .5rem 0;
  font-weight: 600;
  border-bottom: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.about-list li:last-child { border-bottom: none; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26,107,90,.1);
}
.service-card.featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, #fffbeb 0%, var(--white) 100%);
}
.service-card.featured::before { background: var(--accent); transform: scaleX(1); }

.sc-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.service-card h3 { margin-bottom: .6rem; color: var(--primary-dark); }
.service-card h3 small { font-size: .75rem; color: var(--accent); font-weight: 700; display: block; }
.service-card p { color: var(--gray); font-size: .93rem; margin-bottom: 1.2rem; }
.sc-link {
  font-weight: 700;
  color: var(--primary);
  font-size: .9rem;
  transition: var(--transition);
}
.sc-link:hover { color: var(--primary-dark); letter-spacing: .04em; }

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.why-icon { font-size: 2.8rem; margin-bottom: 1rem; }
.why-card h3 { margin-bottom: .6rem; color: var(--primary-dark); }
.why-card p { color: var(--gray); font-size: .93rem; }

/* ===== AREAS ===== */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.area-tag {
  background: var(--white);
  border: 2px solid rgba(26,107,90,.15);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: .9rem;
  padding: .55rem 1.25rem;
  border-radius: 50px;
  transition: var(--transition);
}
.area-tag:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.testi-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 2rem;
  border-left: 4px solid var(--primary);
  transition: var(--transition);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stars { font-size: 1.1rem; margin-bottom: .75rem; }
.testi-card p { color: var(--gray); font-style: italic; margin-bottom: 1.2rem; line-height: 1.65; }
.testi-author { display: flex; align-items: center; gap: .5rem; }
.testi-author strong { color: var(--primary-dark); }
.testi-author span { color: var(--gray); font-size: .85rem; }
.testi-author span::before { content: '·'; margin-right: .5rem; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--blue) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-shapes { position: absolute; inset: 0; pointer-events: none; }
.cta-shape-1 {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  top: -80px; right: 10%;
}
.cta-shape-2 {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  bottom: -60px; left: 5%;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  z-index: 1;
}
.cta-text h2 { color: var(--white); margin-bottom: .5rem; }
.cta-text h2 span { color: var(--accent-light); }
.cta-text p { color: rgba(255,255,255,.8); }
.cta-actions { display: flex; gap: 1rem; flex-shrink: 0; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { color: var(--gray); margin-bottom: 2rem; }

.contact-list { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-list li { display: flex; align-items: flex-start; gap: 1rem; }
.ci-icon {
  width: 46px; height: 46px;
  background: rgba(26,107,90,.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-list div { display: flex; flex-direction: column; }
.contact-list strong { font-size: .9rem; color: var(--gray); font-weight: 600; }
.contact-list span, .contact-list a { font-weight: 700; color: var(--text); }
.contact-list a:hover { color: var(--primary); }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-light);
}
.contact-form h3 {
  font-size: 1.3rem;
  margin-bottom: 1.75rem;
  color: var(--primary-dark);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1rem;
}
.form-group label { font-weight: 700; font-size: .88rem; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: .95rem;
  color: var(--text);
  background: var(--bg-light);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); background: var(--white); }
.form-group input.error,
.form-group select.error { border-color: #ef4444; }

.form-check {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.form-check input[type="checkbox"] { margin-top: .25rem; flex-shrink: 0; width: 18px; height: 18px; accent-color: var(--primary); }
.form-check label { font-size: .85rem; color: var(--gray); }
.form-check label a { color: var(--primary); text-decoration: underline; }

.form-success {
  background: rgba(26,107,90,.1);
  border: 1px solid var(--primary);
  color: var(--primary-dark);
  border-radius: var(--radius-sm);
  padding: 1rem;
  text-align: center;
  font-weight: 700;
  margin-top: 1rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,.8);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand img { margin-bottom: 1rem; }
.footer-brand p { font-size: .9rem; line-height: 1.65; margin-bottom: 1.25rem; }
.footer-contact { display: flex; flex-direction: column; gap: .5rem; }
.footer-contact a {
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: var(--transition);
}
.footer-contact a:hover { color: var(--white); }

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.1rem;
  font-weight: 700;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul a {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--white); padding-left: .3rem; }

.footer-bottom {
  padding: 1.25rem 0;
  text-align: center;
}
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.55); }
.footer-bottom a { color: rgba(255,255,255,.75); text-decoration: underline; }
.footer-bottom a:hover { color: var(--white); }

/* ===== FLOAT CTA ===== */
.float-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(26,107,90,.45);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2.5s ease-in-out infinite;
}
.float-cta:hover { transform: scale(1.1); background: var(--primary-dark); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(26,107,90,.45), 0 0 0 0 rgba(26,107,90,.3); }
  50% { box-shadow: 0 6px 24px rgba(26,107,90,.45), 0 0 0 14px rgba(26,107,90,0); }
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  padding: 140px 0 90px;
  min-height: 80vh;
}
.legal-page h1 { color: var(--primary-dark); margin-bottom: 2rem; font-size: 2rem; }
.legal-page h2 { font-size: 1.2rem; color: var(--primary); margin: 2rem 0 .75rem; }
.legal-page p, .legal-page li { color: var(--gray); line-height: 1.8; margin-bottom: .75rem; }
.legal-page ul { padding-left: 1.5rem; list-style: disc; }
.legal-page a { color: var(--primary); text-decoration: underline; }

/* ===== ANIMATIONS ===== */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
[data-aos="fade-left"] { transform: translateX(-30px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }
[data-aos="fade-right"] { transform: translateX(30px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-text { order: 1; }
  .hero-img-wrap { order: 2; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-circle { width: 300px; height: 300px; }
}

@media (max-width: 768px) {
  .section-pad { padding: 65px 0; }
  .nav-menu { 
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--white);
    padding: 5rem 2rem 2rem;
    flex-direction: column;
    box-shadow: -4px 0 30px rgba(0,0,0,.15);
    transition: right var(--transition);
    z-index: 999;
  }
  .nav-menu.open { right: 0; }
  .nav-menu ul { flex-direction: column; align-items: flex-start; gap: .25rem; }
  .nav-menu a { color: var(--text) !important; font-size: 1rem; display: block; padding: .75rem 1rem; }
  .nav-toggle { display: flex; z-index: 1001; }
  .btn-nav { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-circle { display: none; }
  .floating-badge { display: none; }
}

@media (max-width: 480px) {
  .trust-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  .hero-stats { gap: 1.25rem; }
  .stat strong { font-size: 1.4rem; }
}
