/* ============================================================
   ProLojistik — style.css
   Mobile-first, Bootstrap 5 augmented, production-ready
   ============================================================ */

/* ── CSS Custom Properties ── */
:root {
  --navy:       #0F172A;
  --navy-mid:   #1E293B;
  --navy-light: #334155;
  --orange:     #F97316;
  --orange-dk:  #EA6C0A;
  --orange-lt:  #FED7AA;
  --white:      #FFFFFF;
  --gray-50:    #F8FAFC;
  --gray-100:   #F1F5F9;
  --gray-200:   #E2E8F0;
  --gray-400:   #94A3B8;
  --gray-600:   #475569;
  --gray-800:   #1E293B;
  --text-main:  #1E293B;
  --text-muted: #64748B;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg:  0 10px 40px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.08);
  --shadow-xl:  0 20px 60px rgba(0,0,0,.16);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ── Base Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-main);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; transition: color var(--transition); }
ul { list-style: none; padding: 0; }

/* ── Utilities ── */
.text-accent { color: var(--orange); }
.section-pad { padding: 80px 0; }

@media (max-width: 767px) {
  .section-pad { padding: 56px 0; }
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--navy);
  padding: 10px 0;
  border-bottom: 2px solid var(--orange);
  z-index: 1040;
  position: relative;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.topbar-text {
  font-size: .78rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-text i { color: var(--orange); }

.topbar-contacts {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.topbar-link {
  font-size: .78rem;
  color: var(--gray-200);
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}

.topbar-link i { color: var(--orange); }
.topbar-link:hover { color: var(--orange); }

@media (max-width: 767px) {
  .topbar-text { display: none; }
  .topbar-inner { justify-content: center; }
  .topbar-contacts { gap: 16px; }
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: 0 2px 20px rgba(15,23,42,.08);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(15,23,42,.14);
}

.site-header .navbar { padding: 0; }
.site-header .container { min-height: 72px; display: flex; align-items: center; }

/* Logo */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(145deg, #1E293B 0%, #0F172A 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1.5px solid rgba(249,115,22,.25);
}

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

.logo-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.5px;
}

.logo-accent { color: var(--orange); }

.logo-tagline {
  font-size: .68rem;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: .4px;
}

/* Nav Links */
.navbar-nav .nav-link {
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-600);
  padding: 8px 16px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--navy);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

/* CTA Button */
.btn-cta {
  background: var(--orange);
  color: var(--white) !important;
  font-weight: 700;
  font-size: .88rem;
  padding: 10px 22px;
  border-radius: 8px;
  border: 2px solid var(--orange);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.btn-cta:hover {
  background: var(--orange-dk);
  border-color: var(--orange-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249,115,22,.35);
}

/* Hamburger */
.navbar-toggler {
  border: none;
  background: none;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.toggler-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(2) {
  opacity: 0;
}
.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: 16px 0 20px;
    margin-top: 8px;
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow-md);
  }
  .navbar-nav .nav-link { padding: 10px 20px; }
  .navbar-nav .nav-link::after { display: none; }
  .btn-cta { margin: 12px 20px 0; width: calc(100% - 40px); justify-content: center; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(15,23,42,.92) 0%,
    rgba(15,23,42,.80) 45%,
    rgba(15,23,42,.50) 75%,
    rgba(15,23,42,.30) 100%
  );
}

.hero-container {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 80px;
}

.min-vh-hero { min-height: calc(100vh - 110px); }

.hero-content { padding: 40px 0; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(249,115,22,.15);
  border: 1px solid rgba(249,115,22,.35);
  color: var(--orange-lt);
  font-size: .78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 24px;
  letter-spacing: .4px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -.5px;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 28px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-bottom: 36px;
}

.hero-check {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
}

.hero-check i { color: var(--orange); font-size: 1rem; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-hero-primary {
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 10px;
  border: 2px solid var(--orange);
  display: inline-flex;
  align-items: center;
  transition: all var(--transition);
}

.btn-hero-primary:hover {
  background: var(--orange-dk);
  border-color: var(--orange-dk);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(249,115,22,.4);
}

.btn-hero-secondary {
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,.4);
  display: inline-flex;
  align-items: center;
  transition: all var(--transition);
}

.btn-hero-secondary:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
  color: var(--white);
  transform: translateY(-2px);
}

/* Hero Stats Card */
.hero-stats-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 420px;
  margin-left: auto;
}

.hs-item {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
}

.hs-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.hs-plus {
  font-size: 1.5rem;
  color: var(--orange);
}

.hs-label {
  display: block;
  font-size: .75rem;
  color: rgba(255,255,255,.6);
  margin-top: 6px;
  font-weight: 500;
}

.hs-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.5);
  font-size: 1.5rem;
  z-index: 2;
  animation: bounce 2s infinite;
}

.hero-scroll:hover { color: var(--orange); }

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

/* ============================================================
   SECTION HEADER SHARED
   ============================================================ */
.section-badge {
  display: inline-block;
  background: rgba(249,115,22,.1);
  color: var(--orange);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
  border: 1px solid rgba(249,115,22,.2);
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -.3px;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   HIZMET ALANLARI
   ============================================================ */
.service-areas { background: var(--gray-50); }

.area-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  height: 100%;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.area-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.area-card:hover::before { transform: scaleX(1); }

.area-card--accent {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-color: transparent;
}

.area-card--accent .area-icon { background: rgba(249,115,22,.2); color: var(--orange); }
.area-card--accent .area-title { color: var(--white); }
.area-card--accent .area-desc { color: rgba(255,255,255,.65); }

.area-icon {
  width: 56px;
  height: 56px;
  background: rgba(249,115,22,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--orange);
  margin-bottom: 16px;
  transition: all var(--transition);
}

.area-card:hover .area-icon {
  background: var(--orange);
  color: var(--white);
}

.area-card--accent:hover .area-icon {
  background: var(--orange);
  color: var(--white);
}

.area-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.area-desc {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   HAKKIMIZDA
   ============================================================ */
.about-section { background: var(--white); }

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.about-badge-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  min-width: 200px;
}

.about-badge-card i {
  font-size: 2rem;
  flex-shrink: 0;
}

.about-badge-card div {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.about-badge-card strong {
  font-size: 1rem;
  font-weight: 800;
}

.about-badge-card span {
  font-size: .78rem;
  opacity: .85;
}

.about-text p {
  font-size: .95rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.75;
}

.about-text strong { color: var(--navy); }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.af-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy);
}

.af-item i { color: var(--orange); font-size: 1.1rem; }

@media (max-width: 767px) {
  .about-img { height: 300px; }
  .about-badge-card { right: 0; bottom: -16px; min-width: 160px; padding: 14px 16px; }
}

/* ============================================================
   NEDEN BİZ
   ============================================================ */
.why-section {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.why-hover-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-dk));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.why-card:hover .why-hover-line { transform: scaleX(1); }

.why-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(249,115,22,.12), rgba(249,115,22,.06));
  border: 2px solid rgba(249,115,22,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--orange);
  margin: 0 auto 20px;
  transition: all var(--transition);
}

.why-card:hover .why-icon-wrap {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: scale(1.08) rotate(-3deg);
}

.why-title-card {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.why-desc {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Trust Row */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  padding: 28px 32px;
  background: var(--navy);
  border-radius: var(--radius-lg);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.8);
  font-size: .875rem;
  font-weight: 600;
}

.trust-item i { color: var(--orange); font-size: 1rem; }

/* ============================================================
   HİZMETLER
   ============================================================ */
.services-section { background: var(--gray-50); }

.srv-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.srv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.srv-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform .6s ease;
}

.srv-card:hover .srv-img { transform: scale(1.05); }

.srv-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.srv-icon {
  width: 44px;
  height: 44px;
  background: rgba(249,115,22,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--orange);
  margin-bottom: 14px;
}

.srv-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.srv-desc {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.srv-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .85rem;
  font-weight: 700;
  color: var(--orange);
  margin-top: 16px;
  transition: gap var(--transition);
}

.srv-link:hover { gap: 10px; color: var(--orange-dk); }

/* ============================================================
   SÜREÇ
   ============================================================ */
.process-section { background: var(--navy); }
.process-section .section-badge { background: rgba(249,115,22,.2); border-color: rgba(249,115,22,.3); }
.process-section .section-title { color: var(--white); }
.process-section .section-desc { color: rgba(255,255,255,.6); }

.process-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
  flex-wrap: wrap;
  row-gap: 32px;
}

.pt-step {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  text-align: center;
  position: relative;
}

.pt-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(249,115,22,.1);
  line-height: 1;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.pt-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--white);
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(249,115,22,.35);
}

.pt-title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.pt-desc {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}

.pt-connector {
  flex-shrink: 0;
  font-size: 1.3rem;
  color: rgba(249,115,22,.4);
  padding-top: 24px;
  padding-left: 8px;
  padding-right: 8px;
}

@media (max-width: 767px) {
  .pt-connector { display: none; }
  .process-timeline { gap: 32px; justify-content: space-around; }
  .pt-step { min-width: 140px; }
}

/* ============================================================
   İSTATİSTİK
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--orange), var(--orange-dk));
  padding: 64px 0;
}

.stat-item {
  text-align: center;
  padding: 24px 16px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,.25);
}

.stat-num {
  display: inline-block;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.stat-suffix {
  font-size: 2rem;
  font-weight: 900;
  color: rgba(255,255,255,.75);
}

.stat-text-big {
  display: block;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  font-weight: 600;
  margin-top: 8px;
  letter-spacing: .3px;
}

/* ============================================================
   REFERANSLAR
   ============================================================ */
.testimonials-section { background: var(--white); }

.tst-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  height: 100%;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.tst-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.tst-card--featured {
  background: var(--navy);
  border-color: var(--navy);
}

.tst-card--featured .tst-text { color: rgba(255,255,255,.8); }
.tst-card--featured .tst-stars i { color: var(--orange); }
.tst-card--featured strong,
.tst-card--featured .tst-author strong { color: #ffffff !important; }
.tst-card--featured span { color: rgba(255,255,255,.55); }
.tst-card--featured .tst-avatar { background: rgba(249,115,22,.2); color: var(--orange); }

.tst-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.tst-stars i { color: var(--orange); font-size: .9rem; }

.tst-text {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
  margin-bottom: 20px;
}

.tst-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tst-avatar {
  width: 44px;
  height: 44px;
  background: var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gray-600);
  flex-shrink: 0;
}

.tst-author strong {
  display: block;
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy);
}

.tst-author span {
  font-size: .78rem;
  color: var(--text-muted);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 60px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.cta-desc { font-size: .95rem; color: rgba(255,255,255,.6); }

.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-cta-white {
  background: var(--white);
  color: var(--navy) !important;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  transition: all var(--transition);
}

.btn-cta-white:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-cta-outline {
  background: transparent;
  color: var(--white) !important;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,.4);
  display: inline-flex;
  align-items: center;
  transition: all var(--transition);
}

.btn-cta-outline:hover {
  border-color: rgba(255,255,255,.8);
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}

/* ============================================================
   SSS / FAQ
   ============================================================ */
.faq-section { background: var(--gray-50); }

.faq-accordion { border: none; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-btn {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--white);
  padding: 18px 22px;
  box-shadow: none !important;
  border: none;
}

.faq-btn:not(.collapsed) {
  color: var(--orange);
  background: rgba(249,115,22,.04);
}

.faq-btn::after {
  filter: invert(50%) sepia(70%) saturate(500%) hue-rotate(360deg);
}

.faq-body {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 0 22px 18px;
  border-top: 1px solid var(--gray-100);
}

/* ============================================================
   İLETİŞİM
   ============================================================ */
.contact-section { background: var(--white); }

.contact-info { display: flex; flex-direction: column; gap: 24px; }

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ci-icon {
  width: 50px;
  height: 50px;
  background: rgba(249,115,22,.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--orange);
  flex-shrink: 0;
}

.ci-label {
  display: block;
  font-size: .73rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.ci-value {
  display: block;
  font-size: .95rem;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.5;
}

a.ci-value + a.ci-value { margin-top: 3px; }
a.ci-value:hover { color: var(--orange); }

address { font-style: normal; }

/* Map */
.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  line-height: 0;
}

.contact-social {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.cs-link {
  width: 42px;
  height: 42px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gray-600);
  transition: all var(--transition);
}

.cs-link:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(249,115,22,.35);
}

/* Contact Form */
.contact-form {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--gray-200);
}

.form-label {
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: .2px;
}

.req { color: var(--orange); }

.cf-input {
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: .9rem;
  color: var(--text-main);
  background: var(--white);
  transition: all var(--transition);
}

.cf-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,.12);
  outline: none;
}

.cf-input::placeholder { color: var(--gray-400); }

textarea.cf-input { resize: vertical; min-height: 110px; }

.form-success {
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.3);
  border-radius: 8px;
  font-size: .9rem;
  color: #166534;
  font-weight: 600;
  display: flex;
  align-items: center;
}

@media (max-width: 575px) {
  .contact-form { padding: 24px 20px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
}

.footer-top { padding: 72px 0 56px; }

/* Footer logo — ÖZKUL beyaz, DEPOLAMA turuncu kalır */
.footer-top .logo-name { color: var(--white); }
.footer-top .logo-tagline { color: rgba(255,255,255,.45); }

.footer-desc {
  font-size: .875rem;
  line-height: 1.7;
  color: rgba(255,255,255,.55);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.fs-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,.6);
  transition: all var(--transition);
}

.fs-link:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: .85rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(249,115,22,.3);
}

.footer-list li { margin-bottom: 10px; }

.footer-list a {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-list a::before {
  content: '›';
  color: var(--orange);
  font-size: 1rem;
  line-height: 1;
}

.footer-list a:hover { color: var(--white); padding-left: 4px; }

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: .875rem;
  color: rgba(255,255,255,.55);
}

.footer-contact-list i {
  color: var(--orange);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-list a { color: rgba(255,255,255,.55); }
.footer-contact-list a:hover { color: var(--orange); }
.footer-contact-list address { font-style: normal; line-height: 1.5; }

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}

.fb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.fb-inner--center {
  justify-content: center;
}

.fb-copy {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  margin: 0;
}

.fb-legal {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  margin: 0;
}

.fb-legal a { color: rgba(255,255,255,.45); }
.fb-legal a:hover { color: var(--orange); }
.fb-legal span { opacity: .4; }

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--white);
  z-index: 999;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  animation: pulse-wa 2.5s ease-in-out infinite;
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-btn:hover {
  color: var(--white);
  transform: scale(1.12);
  box-shadow: 0 10px 36px rgba(37,211,102,.6);
  animation: none;
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.4); }
  50% { box-shadow: 0 6px 24px rgba(37,211,102,.45), 0 0 0 14px rgba(37,211,102,0); }
}

.wa-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  background: var(--navy);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--navy);
  border-right: 0;
}

.whatsapp-btn:hover .wa-tooltip { opacity: 1; }

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 46px;
  height: 46px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--orange);
  transform: translateY(-3px);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-up {
  transform: translateY(36px);
  transition-delay: var(--delay, 0s);
}

.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media (max-width: 991px) {
  .about-badge-card { position: static; margin-top: 20px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
}

@media (max-width: 767px) {
  .hero-section { min-height: auto; padding-top: 60px; padding-bottom: 60px; }
  .min-vh-hero { min-height: auto; }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(15,23,42,.88) 0%, rgba(15,23,42,.80) 100%);
  }
  .stat-item:not(:last-child)::after { display: none; }
  .trust-row { padding: 20px; }
  .contact-form { padding: 24px 16px; }
}

@media (max-width: 575px) {
  .hero-actions { flex-direction: column; }
  .btn-hero-primary, .btn-hero-secondary { justify-content: center; }
  .fb-inner { flex-direction: column; text-align: center; }
}

/* ============================================================
   PRINT / ACCESSIBILITY
   ============================================================ */
@media print {
  .topbar, .site-header, .whatsapp-btn, .back-to-top { display: none; }
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background: rgba(249,115,22,.25);
  color: var(--navy);
}

/* Smooth image load */
img { transition: opacity .3s ease; }
