:root {
  --teal: #1a7a6e;
  --teal-light: #2a9d8f;
  --teal-pale: #e8f5f3;
  --teal-dark: #0d5c52;
  --gold: #c9a84c;
  --text: #1c2b2a;
  --text-light: #4a6361;
  --bg: #f8faf9;
  --border: #d4e8e5;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: "DM Sans", sans-serif; color: var(--text); background: var(--bg); line-height: 1.7; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border); z-index: 1000;
  padding: 0 40px; display: flex; align-items: center;
  justify-content: space-between; height: 72px;
}
.logo { font-family: "Playfair Display", serif; font-size: 26px; font-weight: 700; color: var(--teal-dark); }
.logo span { color: var(--gold); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { text-decoration: none; font-size: 14px; font-weight: 500; color: var(--text-light); transition: color 0.2s; }
.nav-links a:hover { color: var(--teal); }
.lang-switch { display: flex; gap: 6px; }
.lang-btn {
  background: none; border: 1px solid var(--border); padding: 5px 12px;
  border-radius: 20px; font-size: 12px; font-weight: 600; cursor: pointer;
  transition: all 0.2s; font-family: "DM Sans", sans-serif; color: var(--text-light);
}
.lang-btn.active, .lang-btn:hover { background: var(--teal); color: white; border-color: var(--teal); }

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 72px; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #0d5c52 0%, #1a7a6e 45%, #2a9d8f 100%); }
.hero-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 1px, transparent 1px),
                    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px, 40px 40px;
}
.hero-content {
  position: relative; z-index: 2; max-width: 1200px; margin: 0 auto;
  padding: 80px 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.hero-label {
  display: inline-block; background: rgba(201,168,76,0.2); border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold); font-size: 12px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; padding: 6px 16px; border-radius: 20px; margin-bottom: 24px;
}
.hero h1 { font-family: "Playfair Display", serif; font-size: clamp(38px,5vw,62px); font-weight: 700; color: white; line-height: 1.15; margin-bottom: 24px; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero p { font-size: 17px; color: rgba(255,255,255,0.8); margin-bottom: 40px; max-width: 480px; line-height: 1.8; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-outline {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3);
  color: white; padding: 14px 32px; border-radius: 6px; text-decoration: none;
  font-weight: 500; font-size: 15px; transition: all 0.2s; display: inline-block;
}
.btn-outline:hover { background: rgba(255,255,255,0.2); }
.hero-stats { display: flex; gap: 40px; margin-top: 48px; }
.stat-num { font-family: "Playfair Display", serif; font-size: 36px; font-weight: 700; color: white; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.6); }
.hero-card {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px; padding: 40px; backdrop-filter: blur(10px);
}
.hero-card-title { font-family: "Playfair Display", serif; font-size: 20px; color: white; margin-bottom: 20px; }
.service-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.service-list li { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.85); font-size: 14px; }
.service-list li::before {
  content: "✓"; background: var(--gold); color: var(--teal-dark);
  width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0;
}
.hero-contact { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.7); font-size: 14px; }
.hero-contact strong { color: white; display: block; font-size: 16px; margin-bottom: 4px; }

/* SECTIONS */
section { padding: 100px 40px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label { font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--teal-light); margin-bottom: 12px; }
.section-title { font-family: "Playfair Display", serif; font-size: clamp(30px,4vw,46px); font-weight: 700; color: var(--text); line-height: 1.2; margin-bottom: 20px; }
.section-desc { font-size: 16px; color: var(--text-light); max-width: 600px; line-height: 1.8; }

/* ABOUT */
#about { background: white; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 60px; }
.about-card { background: var(--teal-pale); border-radius: 12px; padding: 32px; border-left: 4px solid var(--teal); margin-bottom: 20px; }
.about-card h3 { font-family: "Playfair Display", serif; font-size: 20px; color: var(--teal-dark); margin-bottom: 12px; }
.about-card p { font-size: 15px; color: var(--text-light); line-height: 1.8; }
.value-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px; }
.value-icon { width: 44px; height: 44px; background: var(--teal); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.value-item h4 { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.value-item p { font-size: 14px; color: var(--text-light); }

/* SERVICES */
#services { background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card { background: white; border-radius: 12px; padding: 32px; border: 1px solid var(--border); transition: all 0.3s; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(26,122,110,0.12); border-color: var(--teal-light); }
.service-icon { width: 52px; height: 52px; background: var(--teal-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 20px; }
.service-card h3 { font-family: "Playfair Display", serif; font-size: 19px; color: var(--text); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* CONDITIONS */
#conditions { background: white; }
.conditions-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 48px; }
.condition-tag { background: var(--teal-pale); border: 1px solid var(--border); border-radius: 8px; padding: 16px 20px; font-size: 14px; font-weight: 500; color: var(--teal-dark); transition: all 0.2s; }
.condition-tag:hover { background: var(--teal); color: white; border-color: var(--teal); }

/* TEAM */
#team { background: var(--teal-dark); }
#team .section-title { color: white; }
#team .section-label { color: var(--gold); }
#team .section-desc { color: rgba(255,255,255,0.7); }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 60px; }
.team-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; overflow: hidden; transition: transform 0.3s; }
.team-card:hover { transform: translateY(-4px); }
.team-photo { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.team-info { padding: 24px; }
.team-info h3 { font-family: "Playfair Display", serif; font-size: 17px; font-weight: 600; color: white; margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--gold); font-weight: 500; }

/* FAQ */
#faq { background: var(--bg); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.faq-item { background: white; border-radius: 10px; padding: 28px; border: 1px solid var(--border); }
.faq-item h4 { font-size: 15px; font-weight: 600; color: var(--teal-dark); margin-bottom: 10px; }
.faq-item p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* CONTACT */
#contact { background: white; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 60px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.contact-icon { width: 48px; height: 48px; background: var(--teal-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.contact-info-item h4 { font-size: 13px; color: var(--text-light); font-weight: 500; margin-bottom: 4px; }
.contact-info-item p { font-size: 16px; font-weight: 600; color: var(--text); }
.contact-cta { background: var(--teal-pale); border-radius: 16px; padding: 48px 40px; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.contact-cta h3 { font-family: "Playfair Display", serif; font-size: 24px; color: var(--teal-dark); margin-bottom: 12px; }
.contact-cta p { color: var(--text-light); margin-bottom: 28px; font-size: 15px; }
.btn-phone { display: inline-block; background: var(--teal); color: white; padding: 16px 36px; border-radius: 8px; font-size: 20px; font-weight: 700; text-decoration: none; letter-spacing: 0.5px; transition: background 0.2s; }
.btn-phone:hover { background: var(--teal-dark); }

/* FOOTER */
footer { background: #0a3d36; color: rgba(255,255,255,0.7); padding: 60px 40px 32px; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 48px; }
.footer-logo { font-family: "Playfair Display", serif; font-size: 28px; font-weight: 700; color: white; margin-bottom: 16px; }
.footer-logo span { color: var(--gold); }
.footer-desc { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
footer h4 { font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: white; margin-bottom: 20px; }
footer ul { list-style: none; display: grid; gap: 10px; }
footer ul a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: color 0.2s; }
footer ul a:hover { color: white; }
.footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; }

/* LANGUAGE */
.il-de, .il-en, .il-tr { display: none; }
body.lang-de .il-de { display: inline; }
body.lang-en .il-en { display: inline; }
body.lang-tr .il-tr { display: inline; }

/* MOBILE */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; padding: 40px 20px; }
  .hero-card { display: none; }
  section { padding: 60px 20px; }
  .about-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid, .team-grid, .conditions-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .services-grid, .team-grid { grid-template-columns: 1fr; }
  .conditions-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-content > * { animation: fadeUp 0.7s ease both; }
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.25s; }