/* ============================================================
   İREM TAKSİ — ULTRA PREMIUM THEME
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Colors */
  --gold-dark:    #9A7B2F;
  --gold:         #C9A84C;
  --gold-mid:     #D4AF37;
  --gold-light:   #E8D5A3;
  --gold-shine:   #FFF3C4;
  --bg-void:      #050505;
  --bg-main:      #0A0A0A;
  --bg-card:      #111111;
  --bg-card-2:    #161616;
  --bg-glass:     rgba(255,255,255,0.03);
  --border-dim:   rgba(255,255,255,0.06);
  --border-gold:  rgba(212,175,55,0.25);
  --border-gold-h:rgba(212,175,55,0.6);
  --text-white:   #FFFFFF;
  --text-light:   #E8E8E8;
  --text-mid:     #B8B8B8;
  --text-muted:   #787878;
  --text-faint:   #444444;
  --purple-glow:  rgba(100, 0, 140, 0.35);
  --whatsapp:     #25D366;

  /* Gradients */
  --grad-gold:    linear-gradient(135deg, var(--gold-dark), var(--gold-mid), var(--gold-light));
  --grad-gold-r:  linear-gradient(135deg, var(--gold-light), var(--gold-mid), var(--gold-dark));
  --grad-dark:    linear-gradient(180deg, #0A0A0A 0%, #050505 100%);
  --grad-card:    linear-gradient(145deg, #141414, #0e0e0e);

  /* Shadows */
  --shadow-card:  0 8px 40px rgba(0,0,0,0.6);
  --shadow-gold:  0 0 30px rgba(212,175,55,0.15);
  --shadow-gold-h:0 0 50px rgba(212,175,55,0.3);
  --shadow-btn:   0 12px 35px -8px rgba(212,175,55,0.4);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', -apple-system, sans-serif;

  /* Transitions */
  --ease-smooth:  cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:     cubic-bezier(0, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-light);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

section { padding: 110px 0; position: relative; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--text-white);
  font-weight: 600;
  line-height: 1.15;
}

h1 { font-size: clamp(2.8rem, 5vw, 4.5rem); margin-bottom: 28px; }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.75rem); margin-bottom: 14px; }
h4 { font-size: 1.15rem; margin-bottom: 10px; font-family: var(--font-body); font-weight: 600; letter-spacing: 0.03em; color: var(--text-light); }

p {
  color: var(--text-mid);
  font-size: 1.05rem;
  margin-bottom: 24px;
  font-weight: 300;
  line-height: 1.9;
}

.highlight {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.section-title {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 1px;
  background: var(--grad-gold);
  margin: 22px auto 0;
  position: relative;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 500;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 3px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease-smooth);
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::before { opacity: 1; }

/* Gold Button */
.btn-gold {
  background: var(--grad-gold);
  color: #080808;
  box-shadow: var(--shadow-btn);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px -10px rgba(212,175,55,0.55);
}

/* Outline Button */
.btn-outline {
  background: transparent;
  color: var(--gold-light);
  border: 1px solid var(--border-gold-h);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(212,175,55,0.08);
  border-color: var(--gold-mid);
  transform: translateY(-3px);
  color: var(--gold-shine);
}

/* Dark Button */
.btn-dark {
  background: var(--bg-main);
  color: var(--gold-mid);
  border: 1px solid var(--border-gold);
}

.btn-dark:hover {
  background: rgba(212,175,55,0.1);
  border-color: var(--gold-mid);
  transform: translateY(-3px);
}

/* Shimmer animation on btn-gold */
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.btn-gold {
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold-mid) 30%, var(--gold-shine) 50%, var(--gold-mid) 70%, var(--gold-dark) 100%);
  background-size: 200% auto;
  animation: shimmer 4s linear infinite;
}

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
  transition: all 0.4s var(--ease-smooth);
}

.header-inner {
  background: rgba(5,5,5,0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-gold);
  padding: 20px 0;
  transition: all 0.4s var(--ease-smooth);
}

header.scrolled .header-inner {
  background: rgba(5,5,5,0.95);
  padding: 14px 0;
  border-bottom-color: rgba(212,175,55,0.4);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-white);
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 6px;
  transition: opacity 0.3s;
}

.logo:hover { opacity: 0.85; }

.logo span {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-badge {
  font-family: var(--font-body);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border-gold-h);
  padding: 2px 7px;
  border-radius: 2px;
  margin-left: 6px;
  vertical-align: middle;
  -webkit-text-fill-color: var(--gold);
}

/* Nav */
nav ul {
  list-style: none;
  display: flex;
  gap: 0;
  align-items: center;
}

nav ul li { position: relative; }

nav a {
  text-decoration: none;
  color: var(--text-mid);
  font-weight: 500;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 8px 18px;
  display: block;
  transition: color 0.3s;
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 18px;
  right: 18px;
  height: 1px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-smooth);
}

nav a:hover,
nav a.active {
  color: var(--gold-light);
}

nav a:hover::after,
nav a.active::after {
  transform: scaleX(1);
}

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

/* Animated mesh background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(80,0,120,0.5) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(150,100,0,0.15) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(80,0,100,0.1) 0%, transparent 50%),
    var(--bg-void);
  z-index: 0;
}

/* Grain texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 120px 0 100px;
}

/* Floating eyebrow badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212,175,55,0.08);
  border: 1px solid var(--border-gold-h);
  border-radius: 50px;
  padding: 8px 22px;
  margin-bottom: 40px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  backdrop-filter: blur(10px);
  animation: fadeInDown 0.8s var(--ease-out) both;
}

.hero-badge i {
  color: var(--gold-mid);
  font-size: 0.85rem;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  margin-bottom: 30px;
  animation: fadeInUp 0.9s 0.1s var(--ease-out) both;
  letter-spacing: -0.01em;
}

.hero h1 strong {
  font-weight: 700;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 48px;
  line-height: 1.85;
  animation: fadeInUp 0.9s 0.2s var(--ease-out) both;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s 0.3s var(--ease-out) both;
}

/* Stats strip below hero */
.hero-stats {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
  background: rgba(10,10,10,0.8);
  backdrop-filter: blur(20px);
}

.hero-stats .container {
  display: flex;
  justify-content: center;
  gap: 0;
}

.stat-item {
  flex: 1;
  max-width: 240px;
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid var(--border-dim);
  transition: background 0.3s;
}

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

.stat-item:hover {
  background: rgba(212,175,55,0.04);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Floating particles */
.particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.6), transparent);
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.5; }
  100% { transform: translateY(-20vh) scale(1); opacity: 0; }
}

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% -20%, rgba(80,0,120,0.55) 0%, transparent 65%),
    var(--bg-void);
  z-index: 0;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold-h), transparent);
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  margin-bottom: 24px;
  animation: fadeInUp 0.8s var(--ease-out) both;
}

.page-header p {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: var(--text-muted);
  animation: fadeInUp 0.8s 0.1s var(--ease-out) both;
}

/* ============================================================
   FEATURES SECTION (Why Choose Us / How It Works)
   ============================================================ */
.features {
  background: var(--bg-main);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

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

/* Feature Card */
.feature-card {
  background: var(--grad-card);
  border: 1px solid var(--border-dim);
  border-radius: 4px;
  padding: 44px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-spring), border-color 0.4s, box-shadow 0.4s;
  cursor: default;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(212,175,55,0.04), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-smooth);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold-h);
  box-shadow: var(--shadow-card), var(--shadow-gold-h);
}

.feature-card:hover::before { opacity: 1; }
.feature-card:hover::after  { transform: scaleX(1); }

.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 28px;
  background: rgba(212,175,55,0.08);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold-mid);
  transition: all 0.4s var(--ease-spring);
  position: relative;
}

.feature-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid transparent;
  background: var(--grad-gold) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
}

.feature-card:hover .feature-icon {
  background: rgba(212,175,55,0.15);
  color: var(--gold-light);
  transform: scale(1.1) rotate(-5deg);
}

.feature-card:hover .feature-icon::before { opacity: 1; }

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-light);
}

.feature-card p {
  font-size: 0.97rem;
  margin-bottom: 0;
  color: var(--text-muted);
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
  background: var(--bg-card);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold), transparent);
}

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

.service-card {
  background: var(--bg-main);
  border: 1px solid var(--border-dim);
  border-radius: 4px;
  padding: 36px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--grad-gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s var(--ease-smooth);
}

.service-card:hover {
  border-color: var(--border-gold);
  transform: translateX(4px);
  box-shadow: var(--shadow-card);
  background: var(--bg-card-2);
}

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

.service-card > i {
  font-size: 2.2rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 4px;
  transition: all 0.4s var(--ease-spring);
  filter: drop-shadow(0 0 8px rgba(212,175,55,0.3));
}

.service-card:hover > i {
  color: var(--gold-light);
  filter: drop-shadow(0 0 14px rgba(212,175,55,0.5));
  transform: scale(1.1);
}

.service-content h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.service-content p {
  font-size: 0.97rem;
  margin-bottom: 0;
}

/* ============================================================
   CTA SECTION (Premium Dark)
   ============================================================ */
.cta {
  background: var(--bg-void);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 50%, rgba(80,0,120,0.3) 0%, transparent 70%),
    radial-gradient(ellipse 100% 40% at 50% 100%, rgba(150,100,0,0.12) 0%, transparent 60%);
  z-index: 0;
}

.cta::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold-h), transparent);
}

.cta .container {
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 20px;
  color: var(--text-white);
}

.cta > .container > p,
.cta p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 44px;
}

.cta-divider {
  width: 50px;
  height: 1px;
  background: var(--grad-gold);
  margin: 0 auto 44px;
}

/* ============================================================
   ADVANTAGES SECTION
   ============================================================ */
.advantages-section {
  background: var(--bg-card);
}

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

.advantage-card {
  background: var(--bg-main);
  border: 1px solid var(--border-dim);
  border-radius: 4px;
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-smooth);
}

.advantage-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--grad-gold);
  opacity: 0.5;
  transition: opacity 0.3s, width 0.3s;
}

.advantage-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-card), var(--shadow-gold);
  transform: translateY(-4px);
}

.advantage-card:hover::before {
  width: 3px;
  opacity: 1;
}

.advantage-card > i {
  font-size: 2rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 4px;
  transition: all 0.3s var(--ease-spring);
}

.advantage-card:hover > i {
  color: var(--gold-light);
  filter: drop-shadow(0 0 10px rgba(212,175,55,0.4));
  transform: scale(1.15) rotate(-5deg);
}

.advantage-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.advantage-card p { margin-bottom: 0; font-size: 0.97rem; }

/* ============================================================
   PRICING FEATURES
   ============================================================ */
.content-section { background: var(--bg-main); }

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 40px;
  padding: 28px 32px;
  background: var(--grad-card);
  border: 1px solid var(--border-dim);
  border-radius: 4px;
  transition: all 0.4s var(--ease-smooth);
}

.pricing-feature:hover {
  border-color: var(--border-gold);
  transform: translateX(6px);
  box-shadow: var(--shadow-gold);
}

.pricing-feature > i {
  font-size: 2rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 4px;
  min-width: 40px;
  text-align: center;
}

.pricing-feature h4 { color: var(--text-light); font-size: 1.1rem; }
.pricing-feature p { margin-bottom: 0; font-size: 0.97rem; }

/* ============================================================
   SERVICE DETAIL SECTION (hizmetlerimiz)
   ============================================================ */
.service-detail-section {
  background: var(--bg-card);
  padding-bottom: 80px;
}

.service-detail-item {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
  position: relative;
}

.service-detail-item:last-child { margin-bottom: 0; }

.service-detail-item:nth-child(even) {
  grid-template-columns: 2.2fr 1fr;
}

.service-detail-item:nth-child(even) .service-icon-wrapper { order: 2; }

.service-icon-wrapper {
  text-align: center;
}

.service-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  background: rgba(212,175,55,0.05);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  font-size: 4.5rem;
  color: var(--gold);
  transition: all 0.5s var(--ease-spring);
  filter: drop-shadow(0 0 20px rgba(212,175,55,0.2));
  position: relative;
}

.service-icon-box::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 6px;
  border: 1px solid var(--border-gold);
  opacity: 0.4;
}

.service-detail-item:hover .service-icon-box {
  transform: scale(1.05) rotate(3deg);
  filter: drop-shadow(0 0 30px rgba(212,175,55,0.4));
  background: rgba(212,175,55,0.08);
}

.service-detail-content h3 {
  font-size: 1.9rem;
  margin-bottom: 18px;
  color: var(--gold-light);
}

.service-detail-content p { font-size: 1rem; }

/* ============================================================
   CONTENT SECTION (korsan-taksi / şehirlerarası)
   ============================================================ */
.content-section ul {
  list-style: none;
  padding: 0;
  max-width: 820px;
  margin: 0 auto;
}

.content-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
  padding: 24px;
  background: var(--grad-card);
  border: 1px solid var(--border-dim);
  border-radius: 4px;
  font-size: 1rem;
  color: var(--text-mid);
  transition: all 0.3s var(--ease-smooth);
}

.content-section ul li:hover {
  border-color: var(--border-gold);
  transform: translateX(6px);
}

.content-section ul li i {
  color: var(--gold);
  margin-top: 4px;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.content-section ul li strong {
  color: var(--text-light);
}

.content-section > .container > p,
.content-section p {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   SEHIRLERARASI specifics
   ============================================================ */
.intercity-features {
  margin-top: 60px;
}

.intercity-features .feature-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 28px;
  border: 1px solid var(--border-dim);
  border-radius: 4px;
  background: var(--grad-card);
  margin-bottom: 16px;
  transition: all 0.3s var(--ease-smooth);
}

.intercity-features .feature-row:hover {
  border-color: var(--border-gold);
  transform: translateX(6px);
  box-shadow: var(--shadow-gold);
}

.intercity-features .feature-row i {
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  background: var(--bg-card);
}

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

.contact-info h3 {
  font-size: 1.6rem;
  margin-bottom: 30px;
  color: var(--gold-light);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
  padding: 22px;
  background: var(--bg-main);
  border: 1px solid var(--border-dim);
  border-radius: 4px;
  transition: all 0.3s var(--ease-smooth);
}

.contact-item:hover {
  border-color: var(--border-gold);
  transform: translateX(4px);
}

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

.contact-item h4 {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  font-family: var(--font-body);
}

.contact-item p {
  margin-bottom: 0;
  font-size: 1rem;
  color: var(--text-light);
}

.contact-item a {
  color: var(--text-light);
  transition: color 0.3s;
}

.contact-item a:hover { color: var(--gold-light); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--bg-void);
  color: var(--text-muted);
  padding: 80px 0 30px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold-h), transparent);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.footer-brand p {
  font-size: 0.92rem;
  max-width: 280px;
  margin-top: 16px;
  color: var(--text-faint);
}

.footer-links-col h5 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.92rem;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--border-gold);
  transition: width 0.3s, background 0.3s;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-links a:hover::before {
  width: 24px;
  background: var(--gold);
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 14px;
  transition: color 0.3s;
}

.footer-contact a i {
  color: var(--gold);
  width: 18px;
  text-align: center;
}

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

.footer-bottom {
  border-top: 1px solid var(--border-dim);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-faint);
  margin-bottom: 0;
}

/* ============================================================
   MOBILE STICKY BAR
   ============================================================ */
.mobile-sticky {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  background: rgba(5,5,5,0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-gold);
}

.mobile-sticky a {
  flex: 1;
  padding: 18px 20px;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.3s;
}

.btn-wa-sticky {
  background: rgba(37,211,102,0.12);
  color: var(--whatsapp);
  border-right: 1px solid var(--border-dim);
}

.btn-wa-sticky:hover { background: rgba(37,211,102,0.2); }

.btn-call-sticky {
  background: rgba(212,175,55,0.1);
  color: var(--gold-light);
}

.btn-call-sticky:hover { background: rgba(212,175,55,0.2); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   DIVIDER ORNAMENT
   ============================================================ */
.ornament {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 80px;
}

.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-gold));
}

.ornament::after {
  background: linear-gradient(90deg, var(--border-gold), transparent);
}

.ornament i {
  color: var(--gold);
  font-size: 0.75rem;
  opacity: 0.7;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .features-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  .service-detail-item,
  .service-detail-item:nth-child(even) {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .service-detail-item:nth-child(even) .service-icon-wrapper { order: 1; }
  .footer-top { flex-direction: column; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  nav { display: none; }
  section { padding: 80px 0; }
  .hero-content { padding: 100px 0 80px; }
  .page-header { padding: 100px 0 70px; }

  .hero-stats .container { flex-wrap: wrap; }
  .stat-item { min-width: 50%; border-right: none; border-bottom: 1px solid var(--border-dim); }

  .mobile-sticky { display: flex; }
  body { padding-bottom: 60px; }

  .container { padding: 0 20px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 320px; justify-content: center; }
}

@media (max-width: 480px) {
  .section-title { font-size: 2rem; }
  .feature-card { padding: 32px 24px; }
  .service-card { padding: 24px; }
  .advantage-card { padding: 22px; }
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-void); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-mid); }

/* ============================================================
   SELECTION
   ============================================================ */
::selection {
  background: rgba(212,175,55,0.25);
  color: var(--text-white);
}
