/* =============================================
   ÇAĞDAŞ LİDER SİGORTA — STYLESHEET
   ============================================= */

:root {
  --primary: #0a2463;
  --primary-dark: #071a4a;
  --primary-light: #1e3a8a;
  --accent: #e8a020;
  --accent-dark: #c8881a;
  --accent-light: #fbbf24;
  --text: #1a1a2e;
  --text-light: #4a5568;
  --text-muted: #718096;
  --bg: #f8fafc;
  --bg-white: #ffffff;
  --bg-card: #ffffff;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --success: #10b981;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 20px rgba(10,36,99,0.08);
  --shadow-lg: 0 8px 40px rgba(10,36,99,0.15);
  --shadow-card: 0 2px 12px rgba(10,36,99,0.06);
}

*, *::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.6;
  -webkit-font-smoothing: antialiased;
}

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

.hidden { display: none !important; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,36,99,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(10,36,99,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}


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

.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: #fff; }

.btn-nav {
  background: var(--accent) !important;
  color: var(--primary-dark) !important;
  padding: 8px 20px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  transition: background 0.2s, transform 0.2s !important;
}

.btn-nav:hover {
  background: var(--accent-dark) !important;
  transform: translateY(-1px);
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, #1e3a8a 70%, #2d4fa0 100%);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(232,160,32,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(255,255,255,0.03) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 80px 24px;
}

.hero-badge {
  display: inline-block;
  background: rgba(232,160,32,0.2);
  border: 1px solid rgba(232,160,32,0.4);
  color: var(--accent-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-size: clamp(38px, 6vw, 66px);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}

.highlight {
  color: var(--accent);
  position: relative;
}

.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--primary-dark);
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(232,160,32,0.4);
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,160,32,0.5);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  transition: all 0.25s;
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.07);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat strong {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat span {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 1px;
  z-index: 1;
}

.scroll-arrow {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ---- SECTION COMMON ---- */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.8px;
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-desc {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 48px;
  max-width: 600px;
}

/* ---- TEKLİF SECTION ---- */
.teklif-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f0f4ff 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
}

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

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

/* Tür Seçimi */
.sigorta-turu-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
  margin-bottom: 32px;
}

.turu-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 8px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-white);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  transition: all 0.2s;
  font-family: inherit;
}

.turu-btn:hover {
  border-color: var(--primary-light);
  color: var(--primary);
  background: #f0f4ff;
  transform: translateY(-2px);
}

.turu-btn.active {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(10,36,99,0.25);
}

.turu-icon { font-size: 20px; }

/* Form Wrapper */
.teklif-wrapper {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
  align-items: start;
}

.teklif-main {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.teklif-form {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width { grid-column: 1 / -1; }

.full-width { margin-bottom: 16px; }

label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
select,
textarea {
  padding: 11px 14px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: #fafbfc;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(10,36,99,0.08);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%234a5568' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

textarea { resize: vertical; min-height: 80px; line-height: 1.5; }

.dynamic-fields { margin-bottom: 16px; }
.dynamic-fields.hidden { display: none !important; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  padding: 0;
  border: 2px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  accent-color: var(--primary);
  margin-top: 2px;
}

.form-check label {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
  cursor: pointer;
}

.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(10,36,99,0.3);
}

.btn-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(10,36,99,0.4);
}

.btn-submit:active { transform: translateY(0); }

.btn-icon { font-size: 18px; transition: transform 0.2s; }
.btn-submit:hover .btn-icon { transform: translateX(4px); }

/* Başarı Mesajı */
.form-success {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 60px 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  text-align: center;
}

.success-icon { font-size: 52px; margin-bottom: 16px; }
.form-success h3 { font-size: 26px; font-weight: 800; color: var(--text); margin-bottom: 12px; }
.form-success p { color: var(--text-light); margin-bottom: 28px; line-height: 1.6; }

/* Yan Panel */
.teklif-side { display: flex; flex-direction: column; gap: 12px; }

.side-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
}

.side-icon { font-size: 24px; margin-bottom: 8px; }
.side-card h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.side-card p { font-size: 13px; color: var(--text-light); line-height: 1.5; }

.side-contact {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}

.side-contact p { font-size: 13px; color: rgba(255,255,255,0.75); margin-bottom: 12px; }

.btn-call {
  display: block;
  background: var(--accent);
  color: var(--primary-dark);
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 8px;
  transition: all 0.2s;
}

.btn-call:hover { background: var(--accent-dark); }

.btn-whatsapp {
  display: block;
  background: rgba(255,255,255,0.12);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-whatsapp:hover { background: rgba(255,255,255,0.2); }

/* ---- HİZMETLER ---- */
.hizmetler-section {
  padding: 100px 0;
  background: var(--bg-white);
}

.hizmet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.hizmet-card {
  position: relative;
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 2px solid var(--border-light);
  transition: all 0.3s;
}

.hizmet-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  background: var(--bg-white);
}

.hizmet-card.featured {
  border-color: var(--primary);
  background: var(--bg-white);
  box-shadow: var(--shadow);
}

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}

.hizmet-icon { font-size: 36px; margin-bottom: 16px; }

.hizmet-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.hizmet-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.hizmet-card ul {
  list-style: none;
  margin-bottom: 20px;
}

.hizmet-card ul li {
  font-size: 13px;
  color: var(--text-light);
  padding: 4px 0;
  border-bottom: 1px solid var(--border-light);
}

.hizmet-card ul li::before {
  content: '✓ ';
  color: var(--success);
  font-weight: 700;
}

.hizmet-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

.hizmet-link:hover { color: var(--accent-dark); }

/* ---- ACENTELER ---- */
.acenteler-section {
  padding: 100px 0;
  background: var(--primary-dark);
}

.acenteler-section .section-label { color: var(--accent-light); }
.acenteler-section .section-title { color: #fff; }
.acenteler-section .section-desc { color: rgba(255,255,255,0.65); }

.acente-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.acente-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 24px 20px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.acente-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.acente-logo-img {
  display: block;
  max-width: 150px;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
  /* Force image rendering */
  image-rendering: auto;
  /* Prevent Safari from hiding broken images silently */
  min-width: 20px;
  min-height: 20px;
}

/* ---- NEDEN BİZ ---- */
.neden-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f0f4ff 0%, #fff 100%);
}

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

.neden-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 16px;
}

.neden-item {
  padding: 32px 24px;
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  transition: all 0.3s;
}

.neden-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}

.neden-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.6;
  margin-bottom: 12px;
  line-height: 1;
}

.neden-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.neden-item p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ---- İLETİŞİM ---- */
.iletisim-section {
  padding: 100px 0;
  background: var(--bg-white);
}

.iletisim-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

.iletisim-info { display: flex; flex-direction: column; gap: 16px; }

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  transition: all 0.2s;
}

.info-card:hover { border-color: var(--primary-light); background: #f0f4ff; }

.info-icon { font-size: 22px; min-width: 28px; }

.info-card h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.info-card p, .info-card a {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  text-decoration: none;
}

.info-card a:hover { color: var(--primary); }

.cta-buttons { display: flex; flex-direction: column; gap: 10px; margin-top: 8px; }

.btn-whatsapp-lg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}

.btn-whatsapp-lg:hover { background: #20b957; transform: translateY(-2px); }

.btn-email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-email:hover { background: var(--primary-dark); transform: translateY(-2px); }

.iletisim-map { position: relative; }

.map-overlay {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
}

.btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(10,36,99,0.4);
  transition: all 0.2s;
}

.btn-directions:hover { background: var(--primary-dark); }

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

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-slogan {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover { color: #fff; }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: right;
}

.footer-contact a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

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

.footer-bottom {
  padding: 16px 0;
  background: rgba(0,0,0,0.2);
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-align: center;
}

/* ---- WHATSAPP FLOAT ---- */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 999;
  transition: all 0.3s;
  text-decoration: none;
}

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

/* ---- LOGO IMAGE ---- */
.logo-img {
  height: 44px;
  width: auto;
  max-width: 52px;
  object-fit: contain;
  display: block;
  filter: brightness(1.05) contrast(1.05);
  border-radius: 6px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  display: block;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.logo-sub {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 3px;
}

.footer-logo-img {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
  filter: brightness(1.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ---- HERO BRAND NAME ---- */
.hero-brand-name {
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 900;
  letter-spacing: -2.5px;
  line-height: 1;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, var(--accent-light) 60%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  position: relative;
}

.hero-brand-name::after {
  content: '';
  display: block;
  width: 72px;
  height: 4px;
  background: var(--accent);
  border-radius: 4px;
  margin-top: 14px;
}

/* ---- FAQ SECTION ---- */
.faq-section {
  padding: 100px 0;
  background: var(--bg);
}

.faq-section .section-title,
.faq-section .section-label { text-align: center; }
.faq-section .section-desc { margin: 0 auto 48px; text-align: center; }

.faq-list {
  max-width: 820px;
  margin: 0 auto 52px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-white);
  border-radius: var(--radius);
  border: 2px solid var(--border);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.faq-item.open {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-card);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color 0.2s;
}

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

.faq-item.open .faq-question { color: var(--primary); }

.faq-icon {
  font-size: 22px;
  font-weight: 300;
  color: var(--primary);
  min-width: 24px;
  text-align: center;
  line-height: 1;
  transition: transform 0.3s ease;
  display: inline-block;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

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

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.75;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}

/* FAQ CTA */
.faq-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center;
}

.faq-cta p {
  width: 100%;
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 4px;
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s;
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: #fff;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .sigorta-turu-grid { grid-template-columns: repeat(4, 1fr); }
  .teklif-wrapper { grid-template-columns: 1fr; }
  .teklif-side { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hizmet-grid { grid-template-columns: repeat(2, 1fr); }
  .acente-grid { grid-template-columns: repeat(3, 1fr); }
  .neden-grid { grid-template-columns: repeat(2, 1fr); }
  .iletisim-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open a {
    padding: 12px 24px;
    display: block;
    font-size: 15px;
  }
  .nav-links.open .btn-nav {
    margin: 8px 24px;
    border-radius: 8px;
    text-align: center;
  }
  .navbar { position: fixed; }
  .hamburger { display: flex; }
  .hero-content { padding: 48px 24px; }
  .hero-content h1 { font-size: 36px; }
  .sigorta-turu-grid { grid-template-columns: repeat(4, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .teklif-form { padding: 24px; }
  .hizmet-grid { grid-template-columns: 1fr; }
  .acente-grid { grid-template-columns: repeat(2, 1fr); }
  .acente-card { height: 90px; }
  .acente-logo-img { max-width: 120px; max-height: 52px; }
  .neden-grid { grid-template-columns: 1fr; }
  .teklif-side { grid-template-columns: 1fr; }
  .iletisim-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-contact { text-align: left; }
  .teklif-side { grid-template-columns: 1fr; }
  .hero-brand-name { font-size: 38px; letter-spacing: -1.5px; }
  .faq-cta { flex-direction: column; }
  .faq-cta a { width: 100%; text-align: center; justify-content: center; }
}

@media (max-width: 480px) {
  .sigorta-turu-grid { grid-template-columns: repeat(4, 1fr); }
  .turu-btn { font-size: 11px; padding: 10px 4px; }
  .hero-actions { flex-direction: column; }
  .hero-stats { gap: 16px; }
  .acente-grid { grid-template-columns: 1fr 1fr; }
}

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.teklif-form,
.hizmet-card,
.acente-card,
.neden-item {
  animation: fadeInUp 0.5s ease both;
}
