/* =============================================
   SÖNMEZ NAKLİYAT – CİHANBEYLİ
   Premium Corporate Stylesheet
   ============================================= */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:        #0a2463;
  --blue-dark:   #061640;
  --blue-mid:    #1b3a8c;
  --blue-light:  #2a56d4;
  --gold:        #f5a623;
  --gold-dark:   #c8841a;
  --gold-light:  #ffd07a;
  --white:       #ffffff;
  --off-white:   #f4f6fb;
  --gray-light:  #eef1f8;
  --gray:        #8a94a6;
  --gray-dark:   #4a5568;
  --dark:        #111827;
  --shadow-sm:   0 2px 8px rgba(10,36,99,.10);
  --shadow-md:   0 8px 30px rgba(10,36,99,.15);
  --shadow-lg:   0 20px 60px rgba(10,36,99,.20);
  --radius:      14px;
  --radius-sm:   8px;
  --transition:  .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

.gold { color: var(--gold); }

.section {
  padding: 90px 0;
}

/* ---- SCROLL BAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--blue-mid); border-radius: 99px; }

/* =============================================
   FLOATING BUTTONS
   ============================================= */
.float-calls {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.float-call, .float-whatsapp {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 6px 24px rgba(0,0,0,.25);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse-float 2.5s ease-in-out infinite;
}

.float-call {
  background: var(--blue);
  color: var(--white);
}
.float-whatsapp {
  background: #25D366;
  color: var(--white);
  animation-delay: .4s;
}

.float-call:hover, .float-whatsapp:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,.3);
  animation: none;
}

@keyframes pulse-float {
  0%,100% { box-shadow: 0 6px 24px rgba(0,0,0,.25), 0 0 0 0 rgba(10,36,99,.4); }
  50%      { box-shadow: 0 6px 24px rgba(0,0,0,.25), 0 0 0 12px rgba(10,36,99,0); }
}

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
  background: var(--blue-dark);
  padding: 9px 0;
  font-size: .82rem;
  letter-spacing: .02em;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar-left, .top-bar-right {
  display: flex;
  gap: 20px;
  align-items: center;
  color: rgba(255,255,255,.8);
}

.top-bar-left i, .top-bar-right i { color: var(--gold); margin-right: 5px; }

.top-bar-right a {
  color: var(--gold-light);
  font-weight: 600;
  transition: color var(--transition);
}
.top-bar-right a:hover { color: var(--white); }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  background: rgba(10,36,99,.97);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
  border-bottom: 2px solid rgba(245,166,35,.18);
  transition: box-shadow var(--transition), background var(--transition);
}

.navbar.scrolled {
  background: rgba(6,22,64,.99);
  box-shadow: 0 4px 30px rgba(0,0,0,.35);
}

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

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: white;
  padding: 4px;
}

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

.logo-main {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .05em;
}

.logo-sub {
  font-size: .68rem;
  color: var(--gold-light);
  letter-spacing: .04em;
  font-weight: 500;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  color: rgba(255,255,255,.85);
  font-size: .88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 2px;
  background: var(--gold);
  border-radius: 99px;
  transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { transform: translateX(-50%) scaleX(1); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--blue-dark) !important;
  font-weight: 700;
  font-size: .88rem;
  padding: 10px 20px;
  border-radius: 50px;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 18px rgba(245,166,35,.4);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,166,35,.55);
}

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

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 99px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

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

/* Slider */
.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6,22,64,.85) 0%,
    rgba(10,36,99,.65) 50%,
    rgba(6,22,64,.55) 100%
  );
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 24px;
  margin: 0 auto 0 calc((100vw - 1200px)/2);
  padding-left: max(24px, calc((100vw - 1200px)/2 + 24px));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,.18);
  border: 1px solid rgba(245,166,35,.4);
  color: var(--gold-light);
  font-size: .82rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  backdrop-filter: blur(6px);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-title-accent { color: var(--gold); }

.hero-subtitle {
  font-size: clamp(.95rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 32px;
}

.hero-phones {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--blue-dark);
  box-shadow: 0 6px 24px rgba(245,166,35,.45);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(245,166,35,.6);
}

.btn-secondary {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.35);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-3px);
}

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

.hero-features span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.85);
  font-size: .88rem;
  font-weight: 500;
}

.hero-features i { color: var(--gold); font-size: .9rem; }

/* Slider Controls */
.hero-slider-controls {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
}

.slider-prev, .slider-next {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.4);
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-size: .9rem;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-prev:hover, .slider-next:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--blue-dark);
}

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

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: all var(--transition);
}

.dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 5px;
}

/* Animations */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp .8s ease forwards;
}
.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .3s; }
.delay-3 { animation-delay: .45s; }
.delay-4 { animation-delay: .6s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,.12);
  position: relative;
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
  font-family: 'Playfair Display', serif;
}

.stat-label {
  color: rgba(255,255,255,.8);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .03em;
}

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-badge {
  display: inline-block;
  background: rgba(10,36,99,.08);
  color: var(--blue);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid rgba(10,36,99,.15);
  margin-bottom: 14px;
}

.section-badge.light {
  background: rgba(245,166,35,.15);
  color: var(--gold-light);
  border-color: rgba(245,166,35,.3);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--blue-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title.white { color: var(--white); }

.section-desc {
  color: var(--gray-dark);
  font-size: 1rem;
  line-height: 1.7;
}

/* =============================================
   HİZMETLER
   ============================================= */
.hizmetler { background: var(--off-white); }

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  border: 1px solid rgba(10,36,99,.06);
  transition: all var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(10,36,99,.1);
}

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

.service-card.featured {
  background: linear-gradient(160deg, var(--blue-dark), var(--blue));
  border-color: transparent;
  color: var(--white);
}

.service-card.featured::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--blue-dark);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}

.service-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(10,36,99,.25);
}

.service-card.featured .service-icon-wrap {
  background: rgba(245,166,35,.2);
  box-shadow: 0 8px 20px rgba(0,0,0,.2);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--blue-dark);
}

.service-card.featured h3 { color: var(--white); }

.service-card p {
  font-size: .9rem;
  color: var(--gray-dark);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-card.featured p { color: rgba(255,255,255,.78); }

.service-list {
  margin-bottom: 24px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--gray-dark);
  margin-bottom: 6px;
}

.service-list i {
  color: var(--blue-light);
  font-size: .75rem;
  flex-shrink: 0;
}

.service-card.featured .service-list li { color: rgba(255,255,255,.8); }
.service-card.featured .service-list i { color: var(--gold); }

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  transition: all var(--transition);
}

.service-btn:hover {
  background: var(--gold);
  color: var(--blue-dark);
  transform: translateX(4px);
}

.service-card.featured .service-btn {
  background: var(--gold);
  color: var(--blue-dark);
}

.service-card.featured .service-btn:hover {
  background: var(--white);
}

/* =============================================
   NEDEN BİZ
   ============================================= */
.neden-biz {
  background: linear-gradient(150deg, var(--blue-dark) 0%, var(--blue) 100%);
  position: relative;
  overflow: hidden;
}

.neden-biz::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,.08) 0%, transparent 70%);
  pointer-events: none;
}

.neden-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.neden-desc {
  color: rgba(255,255,255,.78);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.neden-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.neden-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.neden-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(245,166,35,.15);
  border: 1px solid rgba(245,166,35,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
}

.neden-feature h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.neden-feature p {
  font-size: .85rem;
  color: rgba(255,255,255,.68);
  line-height: 1.5;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--blue-dark);
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  transition: all var(--transition);
  box-shadow: 0 6px 24px rgba(245,166,35,.4);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(245,166,35,.55);
}

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

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

.neden-img-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--blue-dark);
  border-radius: var(--radius);
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(245,166,35,.4);
}

.badge-num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  font-family: 'Playfair Display', serif;
}

.badge-text {
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.3;
}

/* =============================================
   GALERİ
   ============================================= */
.galeri { background: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item.gallery-large {
  grid-column: span 2;
  grid-row: span 1;
  aspect-ratio: 16/9;
}

.gallery-item.gallery-wide {
  grid-column: span 2;
  aspect-ratio: 16/7;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,36,99,.85) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay i {
  font-size: 2rem;
  color: var(--white);
  transform: scale(0.8);
  transition: transform var(--transition);
}

.gallery-item:hover .gallery-overlay i { transform: scale(1); }

.gallery-overlay span {
  color: var(--white);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .03em;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.94);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 80px rgba(0,0,0,.6);
}

.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  backdrop-filter: blur(6px);
}

.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev  { left: 20px;  top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 20px; top: 50%; transform: translateY(-50%); }

.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--blue-dark);
}

/* =============================================
   SÜREÇ
   ============================================= */
.surec { background: var(--off-white); }

.surec-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.surec-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 26px;
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  border: 1px solid rgba(10,36,99,.07);
  position: relative;
  transition: all var(--transition);
}

.surec-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.step-number {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  font-size: .72rem;
  font-weight: 800;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .03em;
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(10,36,99,.08), rgba(42,86,212,.12));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--blue);
  margin: 16px auto 16px;
  transition: all var(--transition);
}

.surec-step:hover .step-icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(10,36,99,.3);
}

.surec-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 8px;
}

.surec-step p {
  font-size: .83rem;
  color: var(--gray-dark);
  line-height: 1.5;
}

.surec-arrow {
  font-size: 1.3rem;
  color: var(--gold);
  padding: 0 8px;
  flex-shrink: 0;
}

/* =============================================
   TESTİMONİALS
   ============================================= */
.testimonials { background: var(--white); }

.testimonial-slider {
  overflow: hidden;
  border-radius: var(--radius);
}

.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.testimonial-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 36px 32px;
  min-width: calc(33.333% - 16px);
  border: 1px solid rgba(10,36,99,.06);
  transition: all var(--transition);
  flex-shrink: 0;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: var(--white);
}

.stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-card p {
  color: var(--gray-dark);
  font-size: .92rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

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

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reviewer strong {
  display: block;
  font-size: .9rem;
  color: var(--blue-dark);
}

.reviewer span {
  font-size: .78rem;
  color: var(--gray);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(10,36,99,.2);
  cursor: pointer;
  transition: all var(--transition);
}

.t-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 5px;
}

/* =============================================
   CTA BAND
   ============================================= */
.cta-band {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  padding: 60px 0;
}

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

.cta-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 6px;
}

.cta-text p {
  color: rgba(6,22,64,.75);
  font-size: .95rem;
}

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

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2.5px solid var(--blue-dark);
  color: var(--blue-dark);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  transition: all var(--transition);
}

.btn-outline-white:hover {
  background: var(--blue-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.cta-band .btn-gold {
  background: var(--blue-dark);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(6,22,64,.35);
}

.cta-band .btn-gold:hover {
  background: var(--blue);
}

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

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

.iletisim-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(10,36,99,.06);
  transition: all var(--transition);
}

.contact-card:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(10,36,99,.12);
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}

.contact-icon.whatsapp-icon {
  background: linear-gradient(135deg, #1da851, #25D366);
}

.contact-card h4 {
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.contact-card a {
  font-size: .95rem;
  font-weight: 700;
  color: var(--blue);
  transition: color var(--transition);
}

.contact-card a:hover { color: var(--gold-dark); }

.contact-card p {
  font-size: .95rem;
  font-weight: 600;
  color: var(--blue-dark);
}

/* Contact Form */
.iletisim-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(10,36,99,.06);
}

.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 28px;
}

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

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

.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--gray-dark);
  letter-spacing: .02em;
}

.form-group input,
.form-group textarea {
  border: 1.5px solid rgba(10,36,99,.12);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: 'Inter', sans-serif;
  font-size: .92rem;
  color: var(--dark);
  background: var(--off-white);
  transition: all var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue-light);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(42,86,212,.12);
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all var(--transition);
  box-shadow: 0 6px 24px rgba(10,36,99,.3);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(10,36,99,.4);
}

.form-note {
  text-align: center;
  font-size: .78rem;
  color: var(--gray);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* =============================================
   MAP
   ============================================= */
.map-section {
  width: 100%;
  height: 400px;
  border-top: 4px solid var(--blue);
  border-bottom: 4px solid var(--gold);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: linear-gradient(160deg, var(--blue-dark) 0%, #040e30 100%);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  background: white;
  border-radius: var(--radius-sm);
  padding: 3px;
}

.footer-logo-main {
  display: block;
  font-size: .95rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .06em;
}

.footer-logo-sub {
  display: block;
  font-size: .67rem;
  color: var(--gold-light);
  letter-spacing: .04em;
}

.footer-about {
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  line-height: 1.7;
  margin-bottom: 22px;
}

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

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--blue-dark);
  transform: translateY(-3px);
}

.footer-col-title {
  font-size: .82rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

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

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

.footer-links a i {
  font-size: .7rem;
  color: var(--gold);
}

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

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

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

.footer-contact-list a {
  color: rgba(255,255,255,.75);
  transition: color var(--transition);
}

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

/* Footer Bottom */
.footer-bottom {
  padding: 20px 0;
  background: rgba(0,0,0,.2);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  color: rgba(255,255,255,.45);
  font-size: .8rem;
}

.footer-seo-text a {
  color: rgba(255,255,255,.35);
  font-size: .75rem;
  transition: color var(--transition);
}

.footer-seo-text a:hover { color: var(--gold); }

/* =============================================
   SCROLL REVEAL ANIMATION
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* =============================================
   RESPONSIVE – TABLET (≤1024px)
   ============================================= */
@media (max-width: 1024px) {
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .neden-inner    { grid-template-columns: 1fr; gap: 42px; }
  .neden-right    { display: none; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 32px; }
  .iletisim-grid  { grid-template-columns: 1fr; }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
}

/* =============================================
   RESPONSIVE – MOBILE (≤768px)
   ============================================= */
@media (max-width: 768px) {
  /* Navbar */
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 80vw);
    height: 100vh;
    background: var(--blue-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 90px 28px 40px;
    gap: 4px;
    transition: right var(--transition);
    box-shadow: -10px 0 40px rgba(0,0,0,.4);
    z-index: 2000;
  }

  .nav-links.open { right: 0; }

  .nav-link {
    padding: 14px 16px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }

  .nav-cta { justify-content: center; }

  /* Top bar */
  .top-bar-left { display: none; }
  .top-bar-right { flex-wrap: wrap; gap: 12px; font-size: .8rem; }

  /* Hero */
  .hero { min-height: 560px; }
  .hero-content {
    padding: 0 20px;
    margin: 0 auto;
    text-align: center;
  }
  .hero-phones { justify-content: center; }
  .hero-features { justify-content: center; }
  .hero-btn { padding: 13px 22px; font-size: .9rem; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .stat-item:last-child { border-bottom: none; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item.gallery-large,
  .gallery-item.gallery-wide { grid-column: span 2; }

  /* Surec */
  .surec-steps { flex-direction: column; align-items: stretch; }
  .surec-step  { max-width: 100%; }
  .surec-arrow { transform: rotate(90deg); text-align: center; }

  /* Testimonials */
  .testimonial-card { min-width: 100%; }

  /* CTA */
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-buttons { justify-content: center; }

  /* iletisim */
  .form-row { grid-template-columns: 1fr; }
  .iletisim-form-wrap { padding: 28px 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  /* Section */
  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.gallery-large,
  .gallery-item.gallery-wide { grid-column: span 1; }
  .hero-phones { flex-direction: column; }
  .hero-btn { width: 100%; justify-content: center; }
  .neden-img-badge { left: 10px; bottom: -15px; padding: 12px 16px; }
}
