/* DentaSerra Public - Main */
:root {
  --primary: #1a1f3a;
  --accent: #c9a96e;
  --accent-light: rgba(201, 169, 110, 0.1);
  --white: #ffffff;
  --light: #f8f9ff;
  --text: #2d3748;
  --text-muted: #718096;
  --border: rgba(26, 31, 58, 0.08);
  --shadow-sm: 0 2px 8px rgba(26, 31, 58, 0.06);
  --shadow-md: 0 8px 30px rgba(26, 31, 58, 0.1);
  --shadow-lg: 0 16px 50px rgba(26, 31, 58, 0.14);
  --radius: 16px;
  --radius-sm: 10px;
}

* { box-sizing: border-box; }
body { margin: 0; font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; }
.public-body { overflow-x: hidden; }
h1, h2, h3 { font-family: 'DM Serif Display', serif; font-weight: 400; }
a { transition: color 0.2s; }
img { max-width: 100%; height: auto; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: rgba(201, 169, 110, 0.4); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* Selection */
::selection { background: rgba(201, 169, 110, 0.25); color: var(--primary); }

/* Header */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,0.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); transition: box-shadow 0.3s; }
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.header-logo { display: flex; align-items: center; gap: 12px; font-family: 'DM Serif Display', serif; font-size: 1.4rem; color: var(--primary); text-decoration: none; }
.header-logo i { color: var(--accent); font-size: 1.4rem; }
.header-nav { display: flex; align-items: center; gap: 32px; }
.header-nav .nav-link { color: var(--text); text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: color 0.2s; position: relative; }
.header-nav .nav-link:hover { color: var(--accent); }
.header-nav .nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: var(--accent); transform: scaleX(0); transition: transform 0.2s; border-radius: 1px; }
.header-nav .nav-link:hover::after { transform: scaleX(1); }
.header-nav .nav-cta { background: var(--accent); color: var(--primary); padding: 10px 22px; border-radius: 8px; font-weight: 600; font-size: 0.9rem; text-decoration: none; transition: all 0.2s; }
.header-nav .nav-cta:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(201, 169, 110, 0.35); }
.header-nav .nav-cta::after { display: none; }
.header-toggle { display: none; width: 32px; height: 32px; flex-direction: column; justify-content: center; gap: 6px; background: none; border: none; cursor: pointer; padding: 0; }
.header-toggle span { display: block; height: 2px; background: var(--primary); transition: transform 0.3s, opacity 0.3s; }
.header-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.header-toggle.active span:nth-child(2) { opacity: 0; }
.header-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* WhatsApp float */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 1.75rem; z-index: 99; box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); transition: transform 0.2s, box-shadow 0.2s; text-decoration: none; animation: whatsapp-pulse 2s infinite; }
.whatsapp-float:hover { transform: scale(1.1); color: var(--white); box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55); }
@keyframes whatsapp-pulse { 0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); } 50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.1); } }

.main-content { padding-top: 72px; opacity: 0; transition: opacity 0.4s ease; }
.main-content.visible { opacity: 1; }

/* Loader */
.site-loader { position: fixed; inset: 0; background: var(--primary); display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 9999; transition: opacity 0.4s ease; }
.site-loader.loaded { opacity: 0; pointer-events: none; }
.site-loader i { font-size: 3rem; color: var(--accent); margin-bottom: 16px; animation: loader-pulse 1.2s ease-in-out infinite; }
@keyframes loader-pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.15); opacity: 0.7; } }
.site-loader span { font-family: 'DM Serif Display', serif; color: var(--white); font-size: 1.5rem; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 640px; }

/* Sections */
.section { padding: 96px 0; }
.section.alt-bg { background: var(--light); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag { display: inline-block; font-size: 0.78rem; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 14px; padding: 6px 18px; background: var(--accent-light); border-radius: 100px; }
.section-title { font-size: 2.5rem; margin: 0 0 14px; color: var(--primary); text-align: center; line-height: 1.15; }
.section-subtitle { text-align: center; color: var(--text-muted); margin: 0; font-size: 1.05rem; line-height: 1.6; max-width: 540px; margin-left: auto; margin-right: auto; }
.section-cta { text-align: center; margin-top: 48px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border-radius: var(--radius-sm); font-size: 1rem; font-weight: 500; text-decoration: none; border: 2px solid transparent; cursor: pointer; font-family: inherit; transition: all 0.25s; }
.btn-gold { background: linear-gradient(135deg, var(--accent), #dbb97c); color: var(--primary); border-color: transparent; font-weight: 600; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(201, 169, 110, 0.4); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--border); }
.btn-outline:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline-light:hover { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.whatsapp-cta { color: #25d366; border-color: #25d366; }
.whatsapp-cta:hover { background: #25d366; color: var(--white); border-color: #25d366; }

/* Page hero - gradient for inner pages */
.page-hero {
  padding: 100px 0 72px;
  background: linear-gradient(135deg, #0f1629 0%, #1a1f3a 50%, #2d3748 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201, 169, 110, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(201, 169, 110, 0.05) 0%, transparent 50%);
}
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 80px; background: linear-gradient(to top, rgba(15, 22, 41, 0.4), transparent); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero.small { padding: 80px 0 56px; }
.page-hero h1 { font-size: 2.5rem; margin: 0 0 12px; color: var(--white); }
.page-hero p { margin: 0; color: rgba(255,255,255,0.7); font-size: 1.1rem; }
.page-hero .section-tag { background: rgba(201, 169, 110, 0.15); border: 1px solid rgba(201, 169, 110, 0.3); }

/* Service cards */
.services-preview { background: var(--light); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.services-grid.full { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.service-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px 32px; transition: all 0.3s; text-decoration: none; color: inherit;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  position: relative; overflow: hidden;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--accent), #dbb97c); transform: scaleX(0); transition: transform 0.3s; transform-origin: left; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-card-icon { width: 68px; height: 68px; border-radius: 14px; background: var(--accent-light); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; transition: all 0.3s; }
.service-card:hover .service-card-icon { background: var(--accent); color: var(--white); transform: scale(1.05); }
.service-card h3 { margin: 0 0 10px; font-size: 1.25rem; color: var(--primary); }
.service-card p { margin: 0 0 16px; color: var(--text-muted); font-size: 0.95rem; flex: 1; line-height: 1.6; }
.service-card-link { color: var(--accent); font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.service-card:hover .service-card-link { gap: 10px; }
.service-card.full { align-items: flex-start; text-align: left; }
.service-card.full .btn { margin-top: 12px; }
.service-price { color: var(--accent); font-weight: 600; margin: 8px 0 !important; font-size: 1.05rem; }

/* Service detail */
.service-detail-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 48px; display: flex; gap: 32px; align-items: flex-start; flex-wrap: wrap; box-shadow: var(--shadow-sm); }
.service-detail-icon { width: 80px; height: 80px; border-radius: var(--radius); background: var(--accent-light); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 2rem; flex-shrink: 0; }
.service-detail-content { flex: 1; min-width: 0; }
.service-detail-content h2 { margin: 0 0 16px; color: var(--primary); }
.service-detail-body { margin: 0 0 24px; line-height: 1.8; color: var(--text); }
.service-detail-price { color: var(--accent); font-weight: 600; margin: 0 0 24px !important; font-size: 1.1rem; }

/* Doctor intro */
.doctor-intro { background: var(--white); }
.doctor-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.doctor-image-placeholder { aspect-ratio: 4/5; background: var(--light); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 4rem; color: var(--accent); }
.doctor-image-wrap { max-width: 380px; justify-self: end; position: relative; }
.doctor-image-wrap::after { content: ''; position: absolute; inset: 12px; border: 2px solid var(--accent); border-radius: var(--radius); z-index: -1; opacity: 0.3; }
.doctor-image { width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius); display: block; box-shadow: var(--shadow-md); }
.doctor-content .section-title { text-align: left; margin-bottom: 4px; }
.doctor-subtitle { color: var(--accent); margin: 0 0 20px; font-size: 1rem; font-weight: 500; letter-spacing: 0.02em; }
.doctor-content > p { margin: 0 0 24px; line-height: 1.8; color: var(--text); }
.doctor-certs { list-style: none; padding: 0; margin: 0; }
.doctor-certs li { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; color: var(--text); font-size: 0.95rem; }
.doctor-certs li i { color: var(--accent); font-size: 1rem; }

/* Gallery */
.gallery-section { background: var(--light); }
.gallery-slider { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.gallery-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: all 0.3s; }
.gallery-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.gallery-before, .gallery-after { padding: 24px; min-height: 140px; display: flex; align-items: center; justify-content: center; position: relative; }
.gallery-before { background: linear-gradient(135deg, #e2e8f0, #edf2f7); }
.gallery-before::after { content: 'Önce'; position: absolute; top: 8px; left: 12px; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); background: var(--white); padding: 2px 8px; border-radius: 4px; }
.gallery-after { background: linear-gradient(135deg, rgba(201, 169, 110, 0.15), rgba(201, 169, 110, 0.25)); }
.gallery-after::after { content: 'Sonra'; position: absolute; top: 8px; left: 12px; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); background: var(--white); padding: 2px 8px; border-radius: 4px; }
.gallery-before img, .gallery-after img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; }
.gallery-desc { padding: 14px 18px; margin: 0; font-size: 0.9rem; color: var(--text-muted); text-align: center; }

/* Testimonials */
.testimonials-section { background: var(--white); }
.testimonials-carousel { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.testimonial-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; position: relative; transition: all 0.3s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-quote { color: var(--accent); font-size: 1.5rem; margin-bottom: 16px; opacity: 0.6; }
.testimonial-text { margin: 0 0 24px; font-style: italic; line-height: 1.7; color: var(--text); font-size: 0.95rem; }
.testimonial-footer { display: flex; align-items: center; justify-content: space-between; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #dbb97c);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 0.85rem; letter-spacing: 0.02em;
}
.testimonial-stars { color: var(--accent); font-size: 0.85rem; display: flex; gap: 2px; }

/* CTA section */
.cta-section.dark {
  background: linear-gradient(135deg, #0f1629 0%, #1a1f3a 50%, #2d3748 100%);
  color: var(--white); padding: 0; position: relative; overflow: hidden;
}
.cta-section.dark::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
}
.cta-inner {
  position: relative; z-index: 1;
  text-align: center; padding: 80px 24px;
  max-width: 640px; margin: 0 auto;
}
.cta-section .section-title.light { color: var(--white); font-size: 2.25rem; }
.cta-section .section-subtitle.light { color: rgba(255,255,255,0.75); margin-bottom: 32px; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* Blog */
.blog-preview { background: var(--white); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.blog-grid.full { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.blog-card {
  text-decoration: none; color: inherit; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: all 0.3s; display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-image { aspect-ratio: 16/10; background: var(--light); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-image.placeholder { color: var(--accent); font-size: 2.5rem; }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-category { font-size: 0.78rem; color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; font-weight: 600; }
.blog-card-body h3 { margin: 0 0 10px; font-size: 1.15rem; color: var(--primary); line-height: 1.4; }
.blog-card-body p { margin: 0 0 14px; font-size: 0.93rem; color: var(--text-muted); flex: 1; line-height: 1.6; }
.blog-card-link { color: var(--accent); font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; }
.blog-card-meta { font-size: 0.83rem; color: var(--text-muted); margin-top: auto; }
.blog-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; justify-content: center; }
.blog-filters a { padding: 8px 18px; border-radius: 100px; background: var(--white); border: 1px solid var(--border); color: var(--text); text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: all 0.2s; }
.blog-filters a:hover, .blog-filters a.active { background: var(--accent); color: var(--primary); border-color: var(--accent); }
.blog-detail-category { display: inline-block; color: var(--accent); font-size: 0.85rem; margin-bottom: 8px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.blog-detail-meta { color: rgba(255,255,255,0.6); font-size: 0.95rem; margin: 0; }
.blog-detail-image { margin-bottom: 32px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.blog-detail-image img { width: 100%; height: auto; display: block; }
.blog-detail-content { line-height: 1.9; color: var(--text); font-size: 1.05rem; }
.blog-detail-content p { margin: 0 0 20px; }
.blog-detail-content h2, .blog-detail-content h3 { margin: 32px 0 16px; }
.blog-detail-share { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; align-items: center; gap: 12px; }
.blog-detail-share span { color: var(--text-muted); font-size: 0.9rem; }
.blog-detail-share a { color: var(--accent); font-size: 1.4rem; transition: transform 0.2s, color 0.2s; }
.blog-detail-share a:hover { transform: scale(1.15); color: var(--primary); }
.related-title { margin: 48px 0 24px; font-size: 1.3rem; }

/* Form card */
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 500; color: var(--text); font-size: 0.93rem; }
.form-input { width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 1rem; font-family: inherit; transition: border-color 0.2s, box-shadow 0.2s; background: var(--white); }
.form-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.12); }
.form-input.input-validation-error { border-color: #e53e3e; background: #fff5f5; }
.form-input.input-validation-error:focus { box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1); }
.form-check { display: flex; align-items: flex-start; gap: 10px; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--accent); cursor: pointer; flex-shrink: 0; }
.form-check label { margin: 0; font-weight: 400; font-size: 0.9rem; line-height: 1.5; color: var(--text); cursor: pointer; }
.form-check label a { color: var(--accent); text-decoration: underline; }
.form-check label a:hover { color: var(--primary); }
.form-section-title { font-size: 1.05rem; font-weight: 600; color: var(--primary); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.form-section-title i { color: var(--accent); font-size: 1.1rem; }
.form-optional { font-weight: 400; color: var(--text-muted); font-size: 0.85rem; }
.form-btn-row { display: flex; gap: 12px; justify-content: space-between; margin-top: 8px; }
.form-btn-row .btn { flex: 1; }

/* Input with icon */
.input-icon-wrap { position: relative; }
.input-icon-wrap > i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 0.9rem; pointer-events: none; z-index: 1; }
.form-input.has-icon { padding-left: 40px; }

/* Appointment steps */
.appointment-steps { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 32px; }
.appointment-steps .step { display: flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 8px; transition: all 0.3s; }
.appointment-steps .step-num { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 0.85rem; background: var(--light); color: var(--text-muted); border: 2px solid var(--border); transition: all 0.3s; }
.appointment-steps .step-text { font-size: 0.9rem; color: var(--text-muted); font-weight: 500; }
.appointment-steps .step.active .step-num { background: var(--accent); color: var(--white); border-color: var(--accent); box-shadow: 0 2px 8px rgba(201, 169, 110, 0.3); }
.appointment-steps .step.active .step-text { color: var(--primary); }
.appointment-steps .step.completed .step-num { background: #48bb78; color: var(--white); border-color: #48bb78; }
.appointment-steps .step-line { width: 40px; height: 2px; background: var(--border); margin: 0 4px; transition: background 0.3s; }
.appointment-steps .step.active ~ .step-line { background: var(--border); }

/* Alert error */
.alert-error { color: #c53030; margin-bottom: 20px; padding: 14px 18px; background: #fff5f5; border-radius: var(--radius-sm); border: 1px solid rgba(229, 62, 62, 0.15); font-size: 0.9rem; display: flex; align-items: flex-start; gap: 10px; }
.alert-error i { margin-top: 2px; flex-shrink: 0; }
.alert-error p { margin: 0; }

/* Summary card */
.summary-card { background: var(--light); border-radius: 12px; padding: 20px 24px; margin-bottom: 24px; }
.summary-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--border); }
.summary-row:last-child { border-bottom: none; }
.summary-label { color: var(--text-muted); font-size: 0.9rem; }
.summary-value { color: var(--primary); font-weight: 500; font-size: 0.95rem; }
.field-error { color: #e53e3e; font-size: 0.8rem; display: block; margin-top: 4px; }
.field-validation-valid { display: none; }

/* KVKK modal */
.kvkk-modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1000; align-items: center; justify-content: center; backdrop-filter: blur(4px); }
.kvkk-modal-overlay.active { display: flex; }
.kvkk-modal { background: var(--white); border-radius: var(--radius); max-width: 640px; width: 90%; max-height: 80vh; display: flex; flex-direction: column; box-shadow: 0 20px 60px rgba(0,0,0,0.25); }
.kvkk-modal-header { padding: 20px 24px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.kvkk-modal-header h3 { margin: 0; font-size: 1.1rem; color: var(--primary); }
.kvkk-modal-close { background: none; border: none; font-size: 1.25rem; cursor: pointer; color: var(--text-muted); padding: 4px; transition: color 0.2s; }
.kvkk-modal-close:hover { color: var(--primary); }
.kvkk-modal-body { padding: 24px; overflow-y: auto; font-size: 0.9rem; line-height: 1.7; color: var(--text); }
.kvkk-modal-body h4 { margin: 16px 0 8px; font-size: 1rem; color: var(--primary); }
.kvkk-modal-body p { margin: 0 0 12px; }
.kvkk-modal-body ul { margin: 0 0 12px; padding-left: 20px; }
.kvkk-modal-body ul li { margin-bottom: 4px; }

/* Confirmation */
.confirmation-card { text-align: center; padding: 56px 48px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.confirmation-icon { font-size: 4rem; color: #48bb78; margin-bottom: 24px; }
.confirmation-card h2 { margin: 0 0 12px; color: var(--primary); }
.confirmation-card p { margin: 0 0 24px; color: var(--text-muted); }
.confirmation-details { list-style: none; padding: 0; margin: 0 0 32px; text-align: left; max-width: 280px; margin-left: auto; margin-right: auto; }
.confirmation-details li { padding: 8px 0; border-bottom: 1px solid var(--border); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-form-wrap .form-card { border: none; padding: 0; box-shadow: none; }
.contact-info { background: var(--light); border-radius: var(--radius); padding: 36px; }
.contact-info h3 { margin: 0 0 24px; font-size: 1.25rem; color: var(--primary); }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-info-item:last-of-type { margin-bottom: 0; }
.contact-info-icon { width: 42px; height: 42px; border-radius: var(--radius-sm); background: var(--accent-light); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-info-text { flex: 1; }
.contact-info-text strong { display: block; font-size: 0.85rem; color: var(--text-muted); font-weight: 500; margin-bottom: 2px; }
.contact-info-text span { color: var(--text); font-size: 0.95rem; }
.contact-info p { margin: 0 0 12px; display: flex; align-items: center; gap: 10px; color: var(--text); }
.contact-info p i { color: var(--accent); width: 20px; }
.whatsapp-btn { margin-top: 24px; }
.alert-success { padding: 16px 18px; background: #f0fff4; color: #276749; border-radius: var(--radius-sm); margin-bottom: 24px; border: 1px solid rgba(72, 187, 120, 0.2); display: flex; align-items: center; gap: 10px; }
.pagination { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 48px; flex-wrap: wrap; }
.pagination-info { color: var(--text-muted); font-size: 0.95rem; }

/* Footer */
.site-footer {
  background: linear-gradient(180deg, var(--primary) 0%, #0f1629 100%);
  color: rgba(255, 255, 255, 0.9);
  padding: 72px 0 0;
  margin-top: 0;
}
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-brand i {
  font-size: 1.75rem;
  color: var(--accent);
  margin-bottom: 4px;
}
.footer-brand .footer-clinic-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 400;
  margin: 0;
}
.footer-brand p {
  margin: 0;
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}
.footer-links h4,
.footer-contact h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--accent);
  margin: 0 0 20px;
  letter-spacing: 0.02em;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.93rem;
  transition: color 0.2s, padding-left 0.2s;
}
.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}
.footer-contact p {
  margin: 0 0 14px;
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}
.footer-contact p i {
  color: var(--accent);
  width: 18px;
  flex-shrink: 0;
  margin-top: 3px;
}
.footer-bottom {
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
}
/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: box-shadow 0.2s; }
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item.open { box-shadow: var(--shadow-md); }
.faq-question { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 20px 24px; background: none; border: none; cursor: pointer; font-family: inherit; font-size: 1rem; font-weight: 500; color: var(--primary); text-align: left; gap: 16px; }
.faq-question i { color: var(--accent); font-size: 0.8rem; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer p { margin: 0; padding: 0 24px 20px; color: var(--text-muted); line-height: 1.7; font-size: 0.95rem; }

/* Testimonial submit form */
.testimonial-form-card { background: var(--light); border-radius: var(--radius); padding: 32px; margin-top: 48px; }
.testimonial-form-card h3 { margin: 0 0 8px; color: var(--primary); }
.testimonial-form-card > p { margin: 0 0 24px; color: var(--text-muted); font-size: 0.95rem; }
.star-rating { display: flex; gap: 4px; flex-direction: row-reverse; justify-content: flex-end; margin-bottom: 16px; }
.star-rating input { display: none; }
.star-rating label { cursor: pointer; font-size: 1.5rem; color: var(--border); transition: color 0.15s; }
.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label { color: var(--accent); }

.site-footer h4 { font-family: 'DM Serif Display', serif; }
