﻿:root {
  --bg: #f4f6fb;
  --bg-soft: #eef1f7;
  --bg-elevated: #ffffff;
  --accent: #2d7a7a;
  --accent-soft: rgba(45, 122, 122, 0.08);
  --accent-strong: #1e5a5a;
  --text-main: #0f172a;
  --text-soft: #6b7280;
  --border-soft: #e2e8f0;
  --danger: #ef4444;
  --success: #16a34a;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text-main);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* TOP BAR */
.top-bar {
  background: #0f172a;
  border-bottom: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.85rem;
  color: var(--text-soft);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
}

.top-phone-label {
  margin-right: 0.5rem;
}

.top-phone {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.support-pill {
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 0.75rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.logo img:last-child {
  height: 30px;
  /* Metin logosunun yüksekliğini daha uygun hale getiriyoruz */
  margin-left: 4px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent);
}

.logo-sub {
  font-size: 0.75rem;
  color: #9ca3af;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.15s ease, transform 0.15s ease;
}

.nav-links a:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

.nav-group {
  position: relative;
}

/* Invisible bridge to keep dropdown open while moving mouse */
.nav-group::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 20px;
  display: none;
}

.nav-group:hover::before,
.nav-group.active::before {
  display: block;
}

.nav-group-label {
  font-size: 0.85rem;
  color: var(--text-main);
  font-weight: 500;
  cursor: default;
  transition: color 0.15s ease;
}

.nav-group:hover .nav-group-label {
  color: var(--accent);
}

.nav-group-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  padding: 0.8rem 0.75rem;
  border-radius: 0.75rem;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.16);
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.nav-group-menu a {
  font-size: 0.85rem;
  padding: 0.15rem 0;
  color: #4b5563;
}

.nav-group:hover .nav-group-menu,
.nav-group.active .nav-group-menu {
  display: flex;
  opacity: 1;
}

.nav-cta {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2d7a7a, #4db8b8);
  color: #ffffff !important;
  font-weight: 600;
  box-shadow: 0 12px 25px rgba(37, 99, 235, 0.35);
}

.nav-toggle {
  display: none;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.8);
  background: #ffffff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.22rem;
}

.nav-toggle span {
  width: 1.2rem;
  height: 2px;
  background: #e5e7eb;
  border-radius: 999px;
}

/* HERO */
.hero {
  padding: 3.5rem 0 4rem;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.16) 0, transparent 55%),
    radial-gradient(circle at 80% 0, rgba(56, 189, 248, 0.18) 0, transparent 50%);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.hero-left h1 {
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  line-height: 1.15;
  margin: 0 0 1rem;
}

.hero-kicker {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-strong);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  margin: 0 0 1.6rem;
  color: var(--text-soft);
  max-width: 32rem;
}

.hero-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.quick-link {
  flex: 1 1 180px;
  min-width: 0;
  padding: 0.75rem 0.9rem;
  border-radius: 0.9rem;
  border: 1px solid var(--border-soft);
  background: #ffffff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.quick-link:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.12);
}

.quick-link-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
}

.quick-link-text {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.75rem;
}

.stat-item {
  min-width: 9rem;
  padding: 0.65rem 0.85rem;
  border-radius: 0.9rem;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.stat-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-strong);
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, border-color 0.12s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #2d7a7a, #3d9a9a);
  color: #ffffff;
  box-shadow: 0 18px 45px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 55px rgba(56, 189, 248, 0.7);
}

.btn-ghost {
  border-color: rgba(148, 163, 184, 0.7);
  background: #ffffff;
  color: var(--text-main);
}

.btn-ghost:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.btn-full {
  width: 100%;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-badge {
  min-width: 7rem;
  padding: 0.7rem 0.9rem;
  border-radius: 0.9rem;
  background: #ffffff;
  border: 1px solid var(--border-soft);
}

.badge-number {
  font-weight: 700;
  font-size: 1.1rem;
}

.badge-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-soft);
}

.hero-form-card {
  background: var(--bg-elevated);
  border-radius: 1.5rem;
  border: 1px solid var(--border-soft);
  padding: 1.5rem 1.5rem 1.75rem;
  box-shadow: var(--shadow-soft);
}

.hero-form-card h2 {
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
}

.hero-form-subtitle {
  margin: 0 0 1.2rem;
  color: var(--text-soft);
  font-size: 0.88rem;
}

.info-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.extra-fields {
  margin-top: 0.2rem;
}

.form-row {
  display: flex;
  gap: 0.8rem;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form-group label {
  font-size: 0.8rem;
  color: var(--text-main);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  border-radius: 0.8rem;
  border: 1px solid var(--border-soft);
  background: #f9fafb;
  padding: 0.55rem 0.75rem;
  color: var(--text-main);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #6b7280;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-strong);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.3);
  background: #ffffff;
}

.field-error {
  border-color: rgba(248, 113, 113, 0.9) !important;
  box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.4) !important;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-soft);
}

.form-check input[type="checkbox"] {
  margin-top: 0.15rem;
}

.form-check a {
  color: var(--accent);
}

.form-helper {
  margin: 0.3rem 0 0;
  font-size: 0.75rem;
  color: #9ca3af;
}

.form-success,
.form-error {
  margin: 0.4rem 0 0;
  font-size: 0.8rem;
}

.form-success {
  color: var(--success);
}

.form-error {
  color: var(--danger);
}

/* SECTIONS */
.section {
  padding: 3rem 0;
}

.section-alt {
  background: linear-gradient(to bottom, #f7f9ff, #edf2ff);
  box-shadow:
    inset 0 1px 0 rgba(226, 232, 240, 0.9),
    inset 0 -1px 0 rgba(226, 232, 240, 0.9);
}

.section-title {
  font-size: 1.5rem;
  margin: 0 0 0.4rem;
  text-align: center;
}

.section-subtitle {
  margin: 0 0 2rem;
  max-width: 34rem;
  color: var(--text-soft);
  font-size: 0.95rem;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.section-products .product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  background: #ffffff;
  border-radius: 1.25rem;
  border: 1px solid var(--border-soft);
  padding: 1.3rem 1.25rem 1.35rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.card p {
  margin: 0 0 0.8rem;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.card ul {
  margin: 0 0 1rem;
  padding-left: 1rem;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.card-link {
  font-size: 0.85rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.product-card {
  text-align: center;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}

.product-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.product-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: linear-gradient(135deg, #2d7a7a, #3d9a9a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff;
}

.product-badge {
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  background: #f97316;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 600;
}

.product-card h3 {
  margin-top: 0.2rem;
}

.product-card p {
  margin-bottom: 0.9rem;
}

.products-footer-link {
  margin-top: 1.8rem;
  text-align: center;
  font-size: 0.88rem;
}

.products-footer-link a {
  color: var(--accent-strong);
  text-decoration: none;
  font-weight: 500;
}

.insurance-info {
  margin-top: 2.2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(31, 41, 55, 0.8);
}

.insurance-info h3 {
  margin: 0 0 1rem;
  font-size: 1.1rem;
}

.insurance-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  font-size: 0.86rem;
}

.insurance-info-grid article {
  padding: 0.9rem 0.9rem 0.95rem;
  border-radius: 0.9rem;
  border: 1px solid var(--border-soft);
  background: #ffffff;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.insurance-info-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
}

.insurance-info-grid h4 {
  margin: 0 0 0.25rem;
  font-size: 0.95rem;
}

.insurance-info-grid p {
  margin: 0;
  color: var(--text-soft);
}

.insurance-benefits {
  list-style: disc;
  padding-left: 1.1rem;
  margin: 0.4rem 0 0;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.insurance-benefits li {
  margin-bottom: 0.25rem;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 2rem;
  align-items: flex-start;
}

.two-column .section-title,
.two-column .section-subtitle {
  text-align: left;
  margin-left: 0;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-item {
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--border-soft);
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.feature-item:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
}

.feature-item h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
}

.feature-item p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.highlight-box {
  padding: 1.4rem 1.3rem 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(37, 99, 235, 0.25);
  background: radial-gradient(circle at top left, var(--accent-soft) 0, #ffffff 55%);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.highlight-box h3 {
  margin: 0 0 0.5rem;
}

.highlight-box p {
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.highlight-box ul {
  margin: 0 0 1rem;
  padding-left: 1rem;
  font-size: 0.85rem;
  color: var(--text-soft);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.faq-list details {
  border-radius: 1rem;
  border: 1px solid var(--border-soft);
  background: #ffffff;
  padding: 0.6rem 0.9rem;
}

.faq-list summary {
  cursor: pointer;
  font-size: 0.9rem;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 0.45rem 0 0;
  font-size: 0.85rem;
  color: var(--text-soft);
}

/* FOOTER */
.footer {
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  background: #0f172a;
  color: #9ca3af;
  padding-top: 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) repeat(3, minmax(0, 1.2fr));
  gap: 2rem;
  padding-bottom: 1.5rem;
}

.footer-col h4 {
  margin: 0 0 0.6rem;
  color: #e5e7eb;
  font-size: 0.93rem;
}

.footer-col p {
  margin: 0 0 0.4rem;
  font-size: 0.85rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.85rem;
}

.footer-col li {
  margin-bottom: 0.3rem;
}

.footer a {
  color: var(--accent);
  text-decoration: none;
}

.footer .logo-main {
  color: #f9fafb;
}

.footer .logo-sub {
  color: #94a3b8;
}

.social-links {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.2rem;
  margin-bottom: 0.7rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.12s ease, border-color 0.12s ease, background 0.12s ease;
}

.social-link:hover {
  transform: translateY(-1px);
  border-color: rgba(37, 99, 235, 0.7);
  background: rgba(37, 99, 235, 0.12);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: #cbd5e1;
}

.footer-note {
  font-size: 0.78rem;
  color: #94a3b8;
  margin-top: 0.4rem;
}

.footer-bottom {
  border-top: 1px solid rgba(31, 41, 55, 0.9);
  padding: 0.7rem 0 1rem;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
}

.footer-links {
  display: flex;
  gap: 0.75rem;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 50;
}

.whatsapp-float a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: #25d366;
  color: #f9fafb;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 14px 35px rgba(22, 163, 74, 0.6);
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.whatsapp-float a:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(22, 163, 74, 0.7);
  background: #16a34a;
}

.whatsapp-float svg {
  width: 18px;
  height: 18px;
  fill: #f9fafb;
}

@media (max-width: 600px) {
  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
  }

  .whatsapp-float a span {
    display: none;
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 56px;
    right: 1.25rem;
    left: 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.9rem;
    border-radius: 0.9rem;
    background: #ffffff;
    border: 1px solid var(--border-soft);
    transform-origin: top;
    transform: scaleY(0.7);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
  }

  .nav-links.show {
    opacity: 1;
    transform: scaleY(1);
    pointer-events: auto;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links>li>a:not(.nav-cta) {
    display: block;
    padding: 0.5rem 0;
    width: 100%;
  }

  .nav-cta {
    display: flex;
    width: 100%;
    text-align: center;
    justify-content: center;
    box-sizing: border-box;
    margin-top: 0.5rem;
  }

  .nav-group-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: #f9fafb;
    margin-top: 0.2rem;
    padding: 0.5rem;
    width: 100%;
  }

  .nav-group-label {
    display: block;
    padding: 0.5rem 0;
    width: 100%;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-row {
    flex-direction: column;
  }

  .cards-grid,
  .section-products .product-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .feature-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 2.2rem;
  }

  .top-bar-inner {
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    /* Taşmaları önlemek için alt satıra geçiş */
  }

  .top-phone-label {
    display: none;
    /* Mobilde dar alan için yazıyı gizle */
  }

  .support-pill {
    font-size: 0.75rem;
    /* Buton boyutunu mobilde biraz küçült */
  }
}

/* PRODUCT SLIDER */
.product-slider-container {
  position: relative;
  padding: 0 60px;
}

.product-slider-wrapper {
  overflow: hidden;
}

.product-slider {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.product-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 1.5rem;
  flex: 0 0 100%;
  min-width: 100%;
  padding: 1rem 0;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  font-size: 1.8rem;
  color: var(--text-main);
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
}

.slider-arrow:hover {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

.slider-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.slider-prev {
  left: 0;
}

.slider-next {
  right: 0;
}

.card.product-card {
  flex: 0 0 240px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: var(--bg-elevated);
  border-radius: 1.2rem;
  border: 1px solid var(--border-soft);
  transition: all 0.2s ease;
}

.card.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--accent);
}

.product-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.product-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2d7a7a, #3d9a9a);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-badge {
  padding: 0.25rem 0.6rem;
  background: linear-gradient(135deg, #1e6a6a, #4db8b8);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 600;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.card.product-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--text-main);
}

.card.product-card p {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin: 0 0 1rem;
  line-height: 1.5;
  flex: 1;
}

.card-link {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.15s ease;
}

.card-link:hover {
  gap: 0.5rem;
}

.card-link::after {
  content: '→';
}

.products-footer-link {
  text-align: center;
  margin-top: 2rem;
}

.products-footer-link a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
}

.products-footer-link a:hover {
  text-decoration: underline;
}

/* Slider Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: var(--border-soft);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot:hover {
  background: var(--accent);
  opacity: 0.7;
}

.slider-dot.active {
  background: var(--accent);
  transform: scale(1.2);
}



@media (max-width: 900px) {
  .product-page {
    grid-template-columns: repeat(2, 1fr);
  }

  .slider-arrow {
    width: 44px;
    height: 44px;
    font-size: 1.6rem;
  }

  .slider-prev {
    left: -16px;
  }

  .slider-next {
    right: -16px;
  }
}

@media (max-width: 600px) {
  .product-page {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }

  .slider-prev {
    left: -10px;
  }

  .slider-next {
    right: -10px;
  }

  .card.product-card {
    padding: 1rem;
  }

  .card.product-card h3 {
    font-size: 0.9rem;
  }

  .card.product-card p {
    font-size: 0.75rem;
  }
}

/* MODAL */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
  animation: fadeIn 0.2s ease;
}

.modal[hidden] {
  display: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-content {
  background: #ffffff;
  border-radius: 1.5rem;
  max-width: 600px;
  width: 100%;
  max-height: 85vh;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.3);
  animation: slideUp 0.3s ease;
  display: flex;
  flex-direction: column;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, #f7f9ff, #ffffff);
}

.modal-header h3 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--text-main);
}

.modal-close {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  background: #ffffff;
  color: var(--text-soft);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.modal-close:hover {
  background: var(--danger);
  color: #ffffff;
  border-color: var(--danger);
  transform: rotate(90deg);
}

.modal-body {
  padding: 1.75rem;
  overflow-y: auto;
  flex: 1;
}

.modal-body p {
  margin: 0 0 1rem;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}

.modal-body h4 {
  margin: 1.25rem 0 0.5rem;
  font-size: 1rem;
  color: var(--text-main);
}

.modal-body h4:first-child {
  margin-top: 0.5rem;
}

.modal-body ul {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.7;
}

.modal-body ul li {
  margin-bottom: 0.35rem;
}

.modal-body strong {
  color: var(--text-main);
  font-weight: 600;
}

.modal-footer {
  padding: 1rem 1.75rem 1.5rem;
  border-top: 1px solid var(--border-soft);
  display: flex;
  justify-content: flex-end;
  background: #f9fafb;
}

.modal-footer .btn {
  min-width: 120px;
}

@media (max-width: 640px) {
  .modal-content {
    max-height: 90vh;
  }

  .modal-header,
  .modal-body,
  .modal-footer {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

/* Dynamic Form Grid Layout */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  /* Increased gap slightly */
  width: 100%;
}

.form-group.full {
  grid-column: span 2;
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full {
    grid-column: span 1;
  }
}

/* Vertical Timeline Styles for Hakkimizda */
.timeline-section {
  position: relative;
  padding: 2rem 0;
  overflow: hidden;
}

.timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

/* Vertical Line */
.timeline-container::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #e2e8f0;
  transform: translateX(-50%);
  border-radius: 999px;
}

.timeline-item {
  position: relative;
  width: 100%;
  margin-bottom: 4rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item::after {
  content: '';
  display: table;
  clear: both;
}

/* Timeline Dot */
.timeline-marker {
  position: absolute;
  left: 50%;
  top: 15px;
  width: 20px;
  height: 20px;
  background: #2d7a7a;
  /* Primary Teal */
  border: 4px solid #ffffff;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px rgba(45, 122, 122, 0.2);
  z-index: 2;
}

/* Timeline Content Box */
.timeline-content {
  position: relative;
  width: 45%;
  padding: 1.5rem 2rem;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  /* Soft shadow */
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
  border-color: rgba(45, 122, 122, 0.3);
}

/* Alternate Sides */
.timeline-item:nth-child(odd) .timeline-content {
  float: left;
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
  float: right;
  text-align: left;
}

/* Arrow Pointers */
.timeline-content::after {
  content: '';
  position: absolute;
  top: 20px;
  width: 0;
  height: 0;
  border-style: solid;
}

.timeline-item:nth-child(odd) .timeline-content::after {
  right: -10px;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent #ffffff;
  filter: drop-shadow(2px 0 1px rgba(0, 0, 0, 0.05));
  /* Subtle shadow fix */
}

.timeline-item:nth-child(even) .timeline-content::after {
  left: -10px;
  border-width: 10px 10px 10px 0;
  border-color: transparent #ffffff transparent transparent;
  filter: drop-shadow(-2px 0 1px rgba(0, 0, 0, 0.05));
}

/* Typography inside timeline */
.timeline-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e5a5a;
  /* Darker Teal */
  margin: 0 0 0.5rem;
}

.timeline-date {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  background: #4db8b8;
  /* Lighter Teal */
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 10px rgba(77, 184, 184, 0.3);
}

.timeline-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b5563;
  /* Text Soft */
}

/* Scroll Animation Classes */
.fade-in-left,
.fade-in-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left {
  transform: translateX(-50px);
}

.fade-in-right {
  transform: translateX(50px);
}

.visible.fade-in-left,
.visible.fade-in-right {
  opacity: 1;
  transform: translateX(0);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .timeline-container::before {
    left: 20px;
  }

  .timeline-marker {
    left: 20px;
  }

  .timeline-content {
    width: calc(100% - 60px);
    /* Full width minus offset */
    float: right !important;
    text-align: left !important;
    margin-left: 60px;
  }

  .timeline-item:nth-child(odd) .timeline-content::after,
  .timeline-item:nth-child(even) .timeline-content::after {
    left: -10px;
    right: auto;
    border-width: 10px 10px 10px 0;
    border-color: transparent #ffffff transparent transparent;
  }

  .fade-in-left,
  .fade-in-right {
    transform: translateY(30px);
    /* Simple fade up on mobile */
  }

  .visible.fade-in-left,
  .visible.fade-in-right {
    transform: translateY(0);
  }
}

/* ===== GÜVENLİK STİLLERİ ===== */

/* Honeypot alanı - botlar doldurur, kullanıcılar görmez */
.form-hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Güvenlik doğrulama hata mesajları */
.field-validation-msg {
  font-size: 0.72rem;
  color: var(--danger);
  margin-top: 2px;
  display: none;
  animation: fadeInMsg 0.2s ease;
}

.field-validation-msg.visible {
  display: block;
}

@keyframes fadeInMsg {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Rate limiting uyarısı */
.form-rate-limit {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 0.75rem;
  padding: 0.6rem 0.9rem;
  font-size: 0.82rem;
  color: var(--danger);
  text-align: center;
  margin-top: 0.5rem;
  animation: fadeInMsg 0.3s ease;
}

/* PARTNERS / SIGORTA ŞİRKETLERİ GRID */
.section-partners {
  background: var(--bg);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.partner-card {
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid var(--border-soft);
  padding: 1.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 90px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.partner-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.08);
  border-color: rgba(45, 122, 122, 0.3);
}

.partner-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: #374151;
  line-height: 1.3;
  letter-spacing: 0.02em;
  user-select: none;
}

.partner-name small {
  font-size: 0.7rem;
  font-weight: 500;
  color: #6b7280;
  letter-spacing: 0.04em;
}

.partner-name strong {
  font-size: 1.1rem;
  font-weight: 800;
}

.partner-card img {
  max-width: 100%;
  max-height: 55px;
  object-fit: contain;
  display: block;
}

@media (max-width: 900px) {
  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }

  .partner-card {
    padding: 1rem 0.6rem;
    min-height: 70px;
  }

  .partner-name {
    font-size: 0.78rem;
  }

  .partner-name small {
    font-size: 0.62rem;
  }
}