/* ============================================
   NATURHEILPRAXIS BETZ – Stylesheet
   Theme: Holistic Healing & Natural Harmony
   ============================================ */

:root {
  --sage-deep: #2d4a3e;
  --sage: #5a8a6e;
  --sage-light: #a8c5b0;
  --purple: #7b4b8a;
  --purple-light: #c9a0d6;
  --purple-bg: #f5f0f8;
  --magenta: #c44b8c;
  --magenta-light: #e88abb;
  --teal: #2a9d8f;
  --cream: #faf8f5;
  --cream-dark: #f0ece5;
  --white: #ffffff;
  --gray-100: #f5f3ef;
  --gray-200: #e8e4dc;
  --gray-600: #7a7267;
  --gray-800: #3d3830;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 20px rgba(45, 74, 62, 0.08);
  --shadow-lg: 0 12px 40px rgba(45, 74, 62, 0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--gray-800);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--cream);
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
}

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

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

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

.section {
  padding: 100px 0;
}

.section-label {
  display: block;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-label.center, .section-title.center, .section-desc.center {
  text-align: center;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--sage-deep);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin-bottom: 48px;
}

.section-desc.center {
  margin-left: auto;
  margin-right: auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--magenta), var(--purple));
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196, 75, 140, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}

.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-spiritual {
  background: transparent;
  color: var(--purple);
  border-color: var(--purple);
}

.btn-outline-spiritual:hover {
  background: var(--purple);
  color: var(--white);
  transform: translateY(-2px);
}

.full-width {
  width: 100%;
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 12px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(12px);
  padding: 8px 0;
  box-shadow: 0 2px 20px rgba(45, 74, 62, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-spiral {
  height: 50px;
  width: auto;
  transition: var(--transition);
}

.navbar.scrolled .nav-spiral {
  height: 38px;
}

.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  line-height: 1.3;
  transition: var(--transition);
}

.navbar.scrolled .nav-logo-text {
  color: var(--sage-deep);
  font-size: 0.75rem;
}

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

.nav-menu a {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
}

.navbar.scrolled .nav-menu a {
  color: var(--sage-deep);
}

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

.nav-menu a:hover {
  color: var(--white);
}

.navbar.scrolled .nav-menu a:hover {
  color: var(--teal);
}

.nav-menu a:hover::after {
  width: 100%;
}

.lang-switcher {
  position: relative;
}

.lang-switcher .lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 50px;
  padding: 8px 14px;
  color: var(--white);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.navbar.scrolled .lang-switcher .lang-current {
  background: rgba(45, 74, 62, 0.1);
  color: var(--sage-deep);
}

.lang-switcher .lang-current:hover {
  background: rgba(255,255,255,0.25);
}

.navbar.scrolled .lang-switcher .lang-current:hover {
  background: rgba(45, 74, 62, 0.2);
}

.lang-switcher .lang-current::after {
  content: '▾';
  font-size: 0.7rem;
  opacity: 0.7;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 6px;
  display: none;
  flex-direction: column;
  min-width: 100px;
  box-shadow: var(--shadow-lg);
  z-index: 1001;
}

.lang-dropdown.open {
  display: flex;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--gray-600);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}

.lang-btn.active {
  background: var(--teal);
  color: var(--white);
}

.lang-btn:hover:not(.active) {
  background: var(--gray-100);
  color: var(--sage-deep);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
  background: var(--sage-deep);
}

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(45, 74, 62, 0.6) 0%,
    rgba(45, 74, 62, 0.4) 40%,
    rgba(123, 75, 138, 0.3) 70%,
    rgba(45, 74, 62, 0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
}

.hero-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto 24px;
}

.hero-spiral {
  height: 150px;
  width: auto;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.2));
  margin-bottom: 12px;
}

.hero-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  text-align: center;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-subtitle {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  opacity: 0.9;
  margin-bottom: 16px;
  letter-spacing: 1px;
  font-weight: 300;
}

.hero-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 32px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator {
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 14px;
  position: relative;
}

.scroll-indicator::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--white);
  border-radius: 2px;
  animation: scrollDown 1.5s infinite;
}

@keyframes scrollDown {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(16px); }
}

/* ── About ── */
.about {
  background: var(--white);
}

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

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-image-accent {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--sage);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-text p {
  color: var(--gray-600);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--teal);
}

.stat-text {
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* ── Trust Badges ── */
.trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0 8px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sage-deep);
}

.trust-icon {
  font-size: 1.3rem;
}

/* ── Services ── */
.services {
  background: var(--cream);
}

.filter-pills {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-pill {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--gray-200);
  background: var(--white);
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
}

.filter-pill:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.filter-pill.active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.service-card {
  width: calc(33.333% - 16px);
  min-width: 280px;
}

.services-divider {
  width: 200px;
  flex-basis: 100%;
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  max-width: 400px;
}

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

.service-card.spiritual {
  background: var(--purple-bg);
  border-color: rgba(123, 75, 138, 0.15);
}

.service-card.spiritual:hover {
  box-shadow: 0 12px 40px rgba(123, 75, 138, 0.15);
  border-color: transparent;
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--teal);
}

.service-card.spiritual .service-icon svg {
  stroke: var(--purple);
}

.service-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--sage-deep);
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray-600);
  margin-bottom: 20px;
}

.service-details {
  list-style: none;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-details li {
  font-size: 0.9rem;
  color: var(--gray-600);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-details li::before {
  content: '\2713';
  color: var(--teal);
  font-weight: 700;
}

.service-card.spiritual .service-details li::before {
  color: var(--purple);
}

.service-card .btn {
  align-self: flex-start;
}

/* Services Divider */
.services-divider {
  grid-column: 1 / -1;
  height: 4px;
  width: 200px;
  margin: 16px auto;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--sage), var(--teal), var(--purple));
}

/* Card hidden state for filter */
.service-card.hidden {
  display: none;
}

/* ── Detail Sections ── */
.detail-section {
  background: var(--white);
}

.detail-section.alt-bg {
  background: var(--cream);
}

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

.detail-grid.reverse {
  direction: rtl;
}

.detail-grid.reverse > * {
  direction: ltr;
}

.detail-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.detail-text p {
  color: var(--gray-600);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.detail-text p strong {
  color: var(--sage-deep);
}

.detail-text .btn {
  margin-top: 12px;
}

/* ── Testimonials ── */
.testimonials {
  background: var(--cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.testimonial-stars {
  color: #e6a817;
  font-size: 1.2rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-style: italic;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--sage-deep);
}

.author-info {
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* ── FAQ ── */
.faq {
  background: var(--white);
}

.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  background: none;
  border: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--sage-deep);
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--teal);
  transition: var(--transition);
  min-width: 24px;
  text-align: center;
}

.faq-item.open .faq-question::after {
  content: '−';
}

.faq-question:hover {
  color: var(--teal);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 20px;
}

.faq-answer p {
  color: var(--gray-600);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ── Contact ── */
.contact {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-details {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, var(--sage), var(--teal));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
}

.contact-item strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-item a, .contact-item span {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.contact-item a:hover {
  color: var(--teal);
}

.insurance-note {
  margin-top: 24px;
  padding: 16px;
  background: rgba(42, 157, 143, 0.08);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
  color: var(--sage-deep);
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-group {
  position: relative;
  margin-bottom: 24px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--gray-800);
  transition: var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(42, 157, 143, 0.1);
}

.form-group label {
  position: absolute;
  left: 16px;
  top: 16px;
  color: var(--gray-600);
  font-size: 1rem;
  transition: var(--transition);
  pointer-events: none;
  background: var(--cream);
  padding: 0 4px;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: -10px;
  font-size: 0.8rem;
  color: var(--teal);
}

.form-group select {
  cursor: pointer;
  color: var(--gray-600);
}

/* ── Legal Sections ── */
.legal-section {
  background: var(--white);
}

.legal-section.alt-bg {
  background: var(--cream);
}

.legal-content {
  max-width: 800px;
}

.legal-content p {
  color: var(--gray-600);
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.legal-content h3 {
  font-size: 1.2rem;
  color: var(--sage-deep);
  margin: 24px 0 12px;
}

.legal-content ul {
  list-style: none;
  margin-bottom: 16px;
}

.legal-content ul li {
  padding: 4px 0;
}

.legal-content ul li a {
  color: var(--teal);
  text-decoration: underline;
}

.legal-content ul li a:hover {
  color: var(--sage-deep);
}

.legal-content strong {
  color: var(--sage-deep);
}

/* ── Footer ── */
.footer {
  background: var(--sage-deep);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 24px;
}

.footer-content {
  text-align: center;
  margin-bottom: 32px;
}

.footer-brand {
  margin-bottom: 12px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-spiral {
  height: 50px;
  width: auto;
  filter: brightness(1.2);
}

.footer-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
  font-size: 0.9rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

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

.footer-links span {
  opacity: 0.4;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
}

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  padding: 14px 20px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.whatsapp-label {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid,
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .detail-grid.reverse {
    direction: ltr;
  }

  .about-image img {
    height: 350px;
  }

  .detail-image img {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--sage-deep);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 24px;
    transition: var(--transition);
    box-shadow: -4px 0 20px rgba(0,0,0,0.3);
    z-index: 999;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-menu a {
    color: rgba(255,255,255,0.8) !important;
    font-size: 1.1rem;
  }

  .nav-menu a:hover {
    color: var(--white) !important;
  }

  .lang-switcher.in-menu {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .lang-switcher.in-menu .lang-current {
    width: 100%;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    color: var(--white);
  }

  .lang-switcher.in-menu .lang-dropdown {
    position: static;
    width: 100%;
    margin-top: 8px;
    box-shadow: none;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
  }

  .lang-switcher.in-menu .lang-btn {
    text-align: center;
    color: rgba(255,255,255,0.7);
  }

  .lang-switcher.in-menu .lang-btn:hover:not(.active) {
    background: rgba(255,255,255,0.1);
    color: var(--white);
  }

  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .lang-switcher {
    order: 0;
    flex-shrink: 0;
  }

  .nav-logo {
    order: 1;
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .nav-toggle {
    order: 2;
    flex-shrink: 0;
    display: flex;
    position: relative;
    z-index: 1002;
  }

  .lang-dropdown {
    left: 0;
    right: auto;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .section {
    padding: 64px 0;
  }

  .about-stats {
    gap: 16px;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .service-card {
    width: 100%;
    max-width: 450px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px;
  }

  .trust-badges {
    grid-template-columns: 1fr;
  }

  .whatsapp-label { display: none; }
  .whatsapp-float { padding: 14px; border-radius: 50%; }

  .filter-pills {
    gap: 8px;
  }

  .filter-pill {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-spiral {
    height: 80px;
  }

  .hero-logo-text {
    font-size: 1.2rem;
    letter-spacing: 3px;
  }
}
