/* ============================================================
   YKA Teknoloji — Section Styles (sections.css)
   ============================================================
   All section-specific styles. Requires variables.css tokens.
   ============================================================ */

/* ----------------------------------------------------------
   SECTION GENERIC
   ---------------------------------------------------------- */
.section {
  padding: 80px 0;
}

.section--alt {
  background: #060E1C;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
}

.section--dark {
  background: linear-gradient(135deg, #040B18 0%, #0a1929 35%, #0F2B52 70%, #0a1e3a 100%);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
}

.section-header::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-cyan));
  margin: 0 auto 14px;
  border-radius: 2px;
  opacity: 0.7;
}

.section-header--light .section-title {
  color: white;
}

.section-header--light .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  color: var(--color-primary);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 0;
}

.section--dark .section-title {
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

/* Dark alt sections need white titles */
.section--alt .section-title {
  color: rgba(255, 255, 255, 0.93);
}

.section--alt .section-subtitle {
  color: rgba(255, 255, 255, 0.5);
}

.section--alt .section-badge {
  color: var(--color-accent-glow);
}

.section-title--left {
  text-align: left;
}

.section-subtitle {
  font-family: var(--font-body);
  color: var(--color-text-muted);
  margin-top: 14px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.9375rem;
  line-height: 1.7;
  font-weight: 400;
}

.section-subtitle--light {
  color: rgba(255, 255, 255, 0.6);
}

/* Explicit light title class */
.section-title--light {
  color: white;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

/* Trust card text on dark section--alt */
.section--alt .card-trust-title {
  color: var(--color-primary);
}

.section--alt .card-trust-text {
  color: var(--color-text-muted);
}

/* About text on dark section--alt */
.section--alt .about-text {
  color: rgba(255, 255, 255, 0.6);
}

.section--alt .about-stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.section--alt .about-stat-value {
  color: var(--color-accent-glow);
}

.section--alt .about-stat-label {
  color: rgba(255, 255, 255, 0.45);
}

/* Trust stats on dark */
.section--alt .trust-stat-value {
  color: rgba(255, 255, 255, 0.9);
}

.section--alt .trust-stat-label {
  color: rgba(255, 255, 255, 0.4);
}

.section--alt .trust-stat-divider {
  background: rgba(255, 255, 255, 0.08);
}

/* FAQ on light sections — keep original colors */
.faq-question {
  color: var(--color-primary);
}


/* ----------------------------------------------------------
   HERO SECTION
   ---------------------------------------------------------- */
.hero {
  background-color: var(--color-primary-dark);
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(196,137,26,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(56,189,248,0.06) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20h40M20 0v40' stroke='rgba(255,255,255,0.04)' stroke-width='1' fill='none'/%3E%3C/svg%3E");
  padding-top: 112px;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

.hero-plates-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 10;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  color: white;
  padding: 32px 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-subtitle strong {
  color: white;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
  /* individual stat container */
}

.hero-stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-accent);
}

.hero-stat-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}

.hero-stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
  align-self: stretch;
}

/* Hero Dashboard (right column) */
.hero-dashboard {
  display: none;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  padding-bottom: 0;
}

.hero-dashboard-wrap {
  position: relative;
  width: 100%;
  max-width: 28rem;
}

.hero-camera-icon {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.hero-camera-box {
  width: 64px;
  height: 64px;
  background: var(--color-primary-dark);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.hero-camera-box i {
  color: var(--color-accent);
  font-size: 1.5rem;
}

.hero-camera-line {
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(196, 137, 26, 0.6), transparent);
  margin: 4px auto 0;
}

.hero-dashboard-card {
  background: rgba(8, 14, 26, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 80px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.dashboard-header-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.dashboard-live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dashboard-live-dot {
  width: 8px;
  height: 8px;
  background: var(--color-success);
  border-radius: 50%;
}

.dashboard-live-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--color-success);
}

.dashboard-plate-area {
  background: rgba(0, 0, 0, 0.4);
  border-radius: var(--radius-md);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 16px;
}

.dashboard-plate-center {
  text-align: center;
  margin-bottom: 12px;
}

.dashboard-plate {
  display: inline-flex;
  align-items: center;
  background: white;
  border-radius: var(--radius-sm);
  padding: 6px 16px;
}

.dashboard-plate-text {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: 0.2em;
  font-size: 1.25rem;
}

.dashboard-plate-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  text-align: center;
}

.dashboard-plate-stat {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 8px;
}

.dashboard-plate-stat-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: white;
}

.dashboard-plate-stat-value--gold {
  color: var(--color-accent);
}

.dashboard-plate-stat-value--green {
  color: var(--color-success);
}

.dashboard-plate-stat-label {
  color: rgba(255, 255, 255, 0.3);
  font-size: 10px;
  font-family: var(--font-body);
}

.dashboard-logs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dashboard-log {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--radius-sm);
  padding: 8px 12px;
}

.dashboard-log--success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.dashboard-log--danger {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.dashboard-log--info {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-log--warning {
  background: rgba(196, 137, 26, 0.1);
  border: 1px solid rgba(196, 137, 26, 0.2);
}

.dashboard-log-icon-wrap {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dashboard-log-icon-wrap--success {
  background: rgba(34, 197, 94, 0.2);
}

.dashboard-log-icon-wrap--success i {
  color: var(--color-success);
}

.dashboard-log-icon-wrap--danger {
  background: rgba(239, 68, 68, 0.2);
}

.dashboard-log-icon-wrap--danger i {
  color: var(--color-danger);
}

.dashboard-log-icon-wrap--warning {
  background: rgba(196, 137, 26, 0.2);
}

.dashboard-log-icon-wrap--warning i {
  color: var(--color-accent);
}

.dashboard-log i {
  font-size: 0.75rem;
}

.dashboard-log-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  flex: 1;
}

.dashboard-log-content {
  flex: 1;
  min-width: 0;
}

.dashboard-log-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: white;
  font-size: 0.75rem;
}

.dashboard-log-detail {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
}

.dashboard-log-time {
  font-family: var(--font-body);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

/* Hero decorative elements */
.hero-decorative-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.hero-decorative-circle--gold {
  background: rgba(196, 137, 26, 0.05);
  border: none;
}

.hero-wave {
  /* Container for the SVG wave at bottom of hero */
}

/* ----------------------------------------------------------
   DEMO / NASIL ÇALIŞIR SECTION
   ---------------------------------------------------------- */
.demo-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.demo-step {
  position: relative;
  display: flex;
  gap: 20px;
}

.demo-step::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 44px;
  width: 2px;
  height: calc(100% - 20px);
  background: linear-gradient(to bottom, var(--color-primary), transparent);
}

.demo-step:last-child::before {
  display: none;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: white;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(15, 43, 82, 0.12);
}

.step-num--accent {
  background: var(--color-accent);
}

.step-content {
  padding-top: 6px;
  padding-bottom: 24px;
}

.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.125rem;
  margin-bottom: 6px;
}

.step-text {
  font-family: var(--font-body);
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Demo mockup panel */
.demo-mockup {
  /* right side mockup panel container */
}

.mockup-window {
  background: var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.mockup-dots {
  display: flex;
  gap: 8px;
}

.mockup-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.mockup-dot--red {
  background: #F87171;
}

.mockup-dot--yellow {
  background: #FBBF24;
}

.mockup-dot--green {
  background: #34D399;
}

.mockup-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.mockup-screen {
  background: black;
  border-radius: var(--radius-md);
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
}

.mockup-grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 30px 30px;
}

.mockup-plate-scan {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.mockup-car {
  font-size: 3.75rem;
  margin-bottom: 12px;
}

.mockup-plate-wrap {
  position: relative;
  display: inline-block;
}

.mockup-confidence {
  margin-top: 8px;
  color: var(--color-accent);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
}

.scan-corner {
  position: absolute;
  width: 12px;
  height: 12px;
}

.scan-corner--tl {
  top: -4px;
  left: -4px;
  border-top: 2px solid var(--color-accent);
  border-left: 2px solid var(--color-accent);
}

.scan-corner--tr {
  top: -4px;
  right: -4px;
  border-top: 2px solid var(--color-accent);
  border-right: 2px solid var(--color-accent);
}

.scan-corner--bl {
  bottom: -4px;
  left: -4px;
  border-bottom: 2px solid var(--color-accent);
  border-left: 2px solid var(--color-accent);
}

.scan-corner--br {
  bottom: -4px;
  right: -4px;
  border-bottom: 2px solid var(--color-accent);
  border-right: 2px solid var(--color-accent);
}

.mockup-logs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ----------------------------------------------------------
   GRIDS
   ---------------------------------------------------------- */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

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

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

/* ----------------------------------------------------------
   TRUST / REFERANS SECTION
   ---------------------------------------------------------- */
.trust-cta {
  background: linear-gradient(135deg, #0a1929 0%, #0F2B52 100%);
  border: 1px solid rgba(196,137,26,0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.trust-cta-content {
  flex: 1;
  min-width: 0;
}

.trust-cta-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: white;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.trust-cta-text {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.trust-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.trust-stat {
  text-align: center;
}

.trust-stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.9);
}

.trust-stat-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

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

/* ----------------------------------------------------------
   ABOUT / HAKKIMIZDA
   ---------------------------------------------------------- */
.about-grid {
  display: grid;
  gap: clamp(32px, 5vw, 64px);
}

.about-content {
  /* left side container */
}

.about-text {
  font-family: var(--font-body);
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 20px;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.about-stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.about-stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,137,26,0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-stat-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(196,137,26,0.2);
}

.about-stat-card:hover::before {
  opacity: 1;
}

.about-stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--color-accent-glow);
}

.about-stat-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  margin-top: 3px;
}

.about-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-timeline-item {
  display: flex;
  gap: 16px;
}

.about-timeline-icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-timeline-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(196,137,26,0.15), rgba(56,189,248,0.08));
  border: 1px solid rgba(196,137,26,0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-timeline-item:hover .about-timeline-icon {
  box-shadow: 0 0 16px rgba(196,137,26,0.3);
  border-color: rgba(196,137,26,0.45);
}

.about-timeline-icon i {
  color: var(--color-accent-glow);
  font-size: 0.875rem;
}

.about-timeline-icon--accent {
  background: var(--color-accent);
}

.about-timeline-icon--accent i {
  color: white;
}

.about-timeline-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, rgba(196,137,26,0.4), rgba(196,137,26,0.05));
  margin-top: 8px;
  border-radius: 2px;
}

.about-timeline-content {
  padding-bottom: 24px;
}

.about-timeline-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
}

.about-timeline-text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
  line-height: 1.6;
}

/* ----------------------------------------------------------
   CTA / İLETİŞİM SECTION
   ---------------------------------------------------------- */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.cta-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20h40M20 0v40' stroke='rgba(255,255,255,0.04)' stroke-width='1' fill='none'/%3E%3C/svg%3E");
}

.cta-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}

.cta-blob--gold {
  width: 384px;
  height: 384px;
  background: rgba(196, 137, 26, 0.05);
  top: -128px;
  right: -128px;
}

.cta-blob--white {
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.03);
  bottom: -128px;
  left: -128px;
}

.cta-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.cta-grid {
  display: grid;
  gap: 32px;
}

.cta-info {
  display: none;
}

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

.contact-links {
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.15s;
  text-decoration: none;
}

.contact-link:hover {
  color: white;
}

.contact-link-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  flex-shrink: 0;
}

.contact-link-icon i {
  font-size: 0.75rem;
  color: var(--color-accent);
}

.contact-link-icon--green i {
  color: var(--color-success);
}

.contact-link:hover .contact-link-icon {
  background: rgba(255, 255, 255, 0.15);
}

.contact-link-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.contact-link-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: inherit;
}

.cta-form-wrap {
  position: relative;
  z-index: 10;
}

.form-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.35), 0 0 0 1px rgba(196,137,26,0.12);
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, transparent, rgba(196,137,26,0.6), var(--color-accent), rgba(196,137,26,0.6), transparent) 1;
  position: relative;
  overflow: hidden;
}

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

.form-full {
  grid-column: span 1;
}

/* Mobile contacts */
.mobile-contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.mobile-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.15s;
  font-family: var(--font-body);
  font-size: 0.875rem;
  text-decoration: none;
}

.mobile-contact:hover {
  color: white;
}

.mobile-contact-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-contact-icon i {
  font-size: 0.75rem;
  color: var(--color-accent);
}

.mobile-contact-icon--green i {
  color: var(--color-success);
}

/* ----------------------------------------------------------
   WHATSAPP FLOATING BUTTON
   ---------------------------------------------------------- */
.wa-btn {
  position: fixed;
  bottom: 88px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

.wa-btn i {
  color: white;
  font-size: 1.6rem;
}

/* ----------------------------------------------------------
   KVKK BANNER
   ---------------------------------------------------------- */
#kvkk-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(8, 14, 26, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#kvkk-banner.show {
  transform: translateY(0);
}

.kvkk-text {
  flex: 1;
  min-width: 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.kvkk-text strong {
  color: white;
}

.kvkk-text a,
.kvkk-link {
  color: var(--color-accent);
  text-decoration: underline;
}

.kvkk-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.kvkk-accept {
  background: var(--color-accent);
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}

.kvkk-accept:hover {
  background: var(--color-accent-light);
}

.kvkk-close {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-size: 0.75rem;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
}

.kvkk-close:hover {
  background: rgba(255, 255, 255, 0.2);
}
