@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #FAFAF8;
  --primary: #1A3A4A;
  --accent: #C9A96E;
  --border: #E8E4DC;
  --text: #1A1A1A;
  --text-secondary: #666666;
  --row-alt: #F5F2EC;
  --row-hover: #F0EDE6;
  --footer-text: #B8C5CC;
  --radius: 2px;
  --shadow-sm: 0 1px 3px rgba(26,58,74,.06);
  --shadow-md: 0 4px 12px rgba(26,58,74,.08);
  --max-w: 1060px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--primary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent); }

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

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  height: 60px;
  display: flex;
  align-items: center;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.01em;
}

.header-logo span {
  color: var(--primary);
  font-weight: 600;
}

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

.nav a {
  color: var(--primary);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color .2s;
}

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

.nav-cta {
  background: transparent !important;
  color: var(--primary) !important;
  padding: 7px 20px;
  border: 1.5px solid var(--primary);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all .25s;
}

.nav-cta:hover {
  background: var(--primary) !important;
  color: #fff !important;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--primary);
}

/* HERO */
.hero {
  background: var(--bg);
  padding: 48px 0 36px;
  border-bottom: 1px solid var(--border);
}

.hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.hero h1 span {
  color: var(--primary);
  font-style: italic;
  font-weight: 600;
}

.hero p {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 24px;
  text-align: center;
}

.hero .container { text-align: center; }

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: all .25s;
  border: 1.5px solid var(--primary);
}

.hero-cta:hover {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

/* SECTIONS */
.section { padding: 36px 0; }
.section-alt { background: #F5F2EC; }

.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  text-align: left;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-top: 10px;
}

.section-subtitle {
  text-align: left;
  color: var(--text-secondary);
  font-size: .95rem;
  margin-bottom: 28px;
  max-width: 600px;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 24px;
  transition: box-shadow .25s, border-color .25s;
}

.card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.card-icon {
  display: none;
}

.card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.card p {
  color: var(--text-secondary);
  font-size: .9rem;
  line-height: 1.7;
}

/* STATS */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  text-align: center;
}

.stat-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.stat-label {
  color: var(--text-secondary);
  font-size: .85rem;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* TABLE */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--border);
}

.price-table th {
  background: var(--primary);
  color: #fff;
  padding: 12px 18px;
  text-align: left;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.price-table td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
  color: var(--text);
}

.price-table tbody tr:nth-child(even) td {
  background: var(--row-alt);
}

.price-table tbody tr:hover td {
  background: var(--row-hover);
}

/* FAQ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  padding: 16px 20px;
  text-align: left;
  font-size: .95rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Inter', sans-serif;
  transition: background .2s;
}

.faq-question:hover { background: var(--row-hover); }

.faq-question::after {
  content: '+';
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform .2s;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item.active .faq-question { background: var(--row-hover); }

.faq-item.active .faq-question::after {
  content: '\2212';
  color: var(--accent);
}

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

.faq-item.active .faq-answer { max-height: 500px; }

.faq-answer-inner {
  padding: 0 20px 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: .9rem;
}

/* AD SLOTS */
.ad-slot {
  background: #fff;
  border: 1px dashed var(--border);
  border-radius: 0;
  padding: 16px;
  text-align: center;
  color: #ccc;
  font-size: .8rem;
  margin: 20px 0;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* BREADCRUMB */
.breadcrumb {
  padding: 10px 0;
  font-size: .8rem;
  color: var(--text-secondary);
}

.breadcrumb a { color: var(--text-secondary); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 5px; color: var(--border); }

/* FOOTER */
.footer {
  background: var(--primary);
  color: var(--footer-text);
  padding: 40px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  margin-bottom: 28px;
}

.footer h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.footer ul { list-style: none; }
.footer li { margin-bottom: 6px; }
.footer li a { color: var(--footer-text); font-size: .85rem; transition: color .2s; }
.footer li a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 16px;
  text-align: center;
  font-size: .8rem;
  color: rgba(184,197,204,.6);
}

/* MEDICAL DISCLAIMER */
.medical-disclaimer {
  background: #F5F2EC;
  border-top: 1px solid var(--border);
  padding: 24px 0;
}

.medical-disclaimer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.medical-disclaimer-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--accent);
  margin-top: 2px;
}

.medical-disclaimer p {
  color: var(--text-secondary);
  font-size: .8rem;
  line-height: 1.6;
}

/* WHATSAPP FLOATING BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
  color: #fff;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37,211,102,.5);
  color: #fff;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* STICKY CTA BAR (mobile only) */
.sticky-cta-bar {
  display: none;
}

/* NAV DROPDOWN */
.nav-item {
  position: relative;
}

.nav-item > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item > a::after {
  content: '▾';
  font-size: .65rem;
  opacity: .6;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 8px 0;
  z-index: 101;
}

.nav-item:hover .nav-dropdown {
  display: block;
}

.nav-dropdown a {
  display: block;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--primary);
  white-space: nowrap;
}

.nav-dropdown a:hover {
  background: var(--row-hover);
  color: var(--accent);
}

/* FORM STYLES */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--text);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,169,110,.12);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-radio-group,
.form-checkbox-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-radio-label,
.form-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  color: var(--text);
  cursor: pointer;
}

.form-radio-label input,
.form-checkbox-label input {
  accent-color: var(--accent);
}

.form-kvkk {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 24px 0;
  font-size: .82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.form-kvkk input {
  margin-top: 3px;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.form-kvkk a {
  text-decoration: underline;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 14px 32px;
  border: 1.5px solid var(--primary);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .25s;
}

.form-submit:hover {
  background: transparent;
  color: var(--primary);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-message {
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: .9rem;
  margin-bottom: 24px;
}

.form-message.success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.form-message.error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

/* CALCULATOR RESULT */
.calculator-result {
  background: #fff;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  margin-top: 24px;
  display: none;
}

.calculator-result.visible {
  display: block;
}

.calculator-result .result-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.calculator-result .result-note {
  font-size: .82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* HERO CTA GROUP */
.hero-cta-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: all .25s;
  border: 1.5px solid var(--primary);
}

.hero-cta-secondary:hover {
  background: var(--primary);
  color: #fff;
}

.hero-cta-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}

.hero-cta-whatsapp:hover {
  background: #1da851;
  color: #fff;
  border-color: #1da851;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 { font-size: 1.8rem; }
  .hero { padding: 32px 0 24px; }

  .nav { display: none; }
  .nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    z-index: 99;
    gap: 16px;
  }

  .mobile-menu-btn { display: block; }
  .section { padding: 28px 0; }
  .section-title { font-size: 1.35rem; }
  .cards { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .price-table { font-size: .8rem; }
  .price-table th, .price-table td { padding: 8px 10px; }
  .price-table th { font-size: 11px; }

  body { padding-bottom: 60px; }

  .sticky-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: #fff;
    border-top: 1px solid var(--border);
    box-shadow: 0 -2px 12px rgba(0,0,0,.08);
    padding: 8px 12px;
    gap: 10px;
  }

  .sticky-cta-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 8px;
    border-radius: var(--radius);
    font-size: .82rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.03em;
  }

  .sticky-cta-wa {
    background: #25D366;
    color: #fff !important;
  }

  .sticky-cta-wa:hover {
    background: #1da851;
    color: #fff !important;
  }

  .sticky-cta-form {
    background: var(--primary);
    color: #fff !important;
  }

  .sticky-cta-form:hover {
    background: #142e3a;
    color: #fff !important;
  }

  .whatsapp-float { display: none; }

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

  .nav-item:hover .nav-dropdown { display: none; }
  .nav.active .nav-dropdown {
    display: block;
    position: static;
    border: none;
    box-shadow: none;
    padding: 0 0 0 16px;
  }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.5rem; }
  .stats { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
}
