/* =========================================
   KÜTAHYA GÜVEN NAKLİYAT — PREMIUM DARK TEMA
   kutahyaguvennakliyat.info
   ========================================= */

/* === CSS VARIABLES === */
:root {
  /* Dark luxury palette */
  --black:      #0A0A0A;
  --dark-1:     #111111;
  --dark-2:     #181818;
  --dark-3:     #222222;
  --dark-4:     #2A2A2A;
  --dark-5:     #333333;

  /* Gold palette */
  --gold:       #C9A84C;
  --gold-light: #E2C47A;
  --gold-bright:#F5D78E;
  --gold-dark:  #A07830;
  --gold-dim:   rgba(201,168,76,.15);
  --gold-border:rgba(201,168,76,.3);

  /* Text */
  --text-primary:  #F0EAD6;
  --text-secondary:#B0A88A;
  --text-muted:    #6B6454;

  /* Accents */
  --green-wa:  #25D366;
  --green-dark:#1aad52;
  --white:     #FFFFFF;

  /* Gradients */
  --gradient-gold: linear-gradient(135deg, #C9A84C 0%, #E2C47A 50%, #C9A84C 100%);
  --gradient-dark: linear-gradient(135deg, #111111 0%, #1A1A1A 100%);
  --gradient-hero: linear-gradient(135deg, rgba(10,10,10,.92) 0%, rgba(20,15,5,.80) 100%);

  /* Shadows */
  --shadow-gold: 0 4px 20px rgba(201,168,76,.25);
  --shadow-gold-lg: 0 8px 40px rgba(201,168,76,.35);
  --shadow-dark: 0 4px 24px rgba(0,0,0,.6);
  --shadow-dark-lg: 0 12px 48px rgba(0,0,0,.8);

  /* Sizes */
  --radius:    10px;
  --radius-lg: 18px;
  --radius-xl: 24px;

  /* Transitions */
  --transition: all .3s cubic-bezier(.4,0,.2,1);
  --transition-slow: all .5s cubic-bezier(.4,0,.2,1);

  /* Fonts */
  --font-body:    'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
  --font-accent:  'Cormorant Garamond', serif;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--black);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }

/* === CONTAINER === */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

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

/* =========================================
   TICKER / KAYAN DUYURU
   ========================================= */
.ticker-bar {
  background: var(--gradient-gold);
  color: var(--black);
  height: 42px;
  overflow: hidden;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
}
.ticker-inner { width: 100%; overflow: hidden; }
.ticker-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-run 50s linear infinite;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--dark-1);
}
.ticker-track span { padding: 0 16px; }
.ticker-track .sep { color: var(--dark-1); opacity: .5; }
.ticker-track strong { font-weight: 900; }
@keyframes ticker-run {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-bar:hover .ticker-track { animation-play-state: paused; }

/* =========================================
   SITE HEADER
   ========================================= */
.site-header {
  background: rgba(10,10,10,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gold-border);
  position: sticky;
  top: 42px;
  z-index: 999;
  transition: var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 16px;
}
.header-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
}

/* Desktop Nav */
.main-nav { display: flex; }
.main-nav ul { display: flex; gap: 2px; align-items: center; }
.main-nav a {
  display: block;
  padding: 8px 13px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: 6px;
  letter-spacing: .02em;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 13px; right: 13px;
  height: 1px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.main-nav a:hover { color: var(--gold-light); }
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: var(--gold); }

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 10px; }
.btn-header-call {
  display: flex; align-items: center; gap: 8px;
  background: transparent;
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  padding: 9px 16px;
  border-radius: var(--radius);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .03em;
  transition: var(--transition);
}
.btn-header-call:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold-bright);
}
.btn-header-wa {
  display: flex; align-items: center; gap: 8px;
  background: var(--green-wa);
  color: var(--white);
  padding: 9px 16px;
  border-radius: var(--radius);
  font-size: .82rem;
  font-weight: 700;
  transition: var(--transition);
}
.btn-header-wa:hover { background: var(--green-dark); color: var(--white); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  background: var(--dark-1);
  border-top: 1px solid var(--gold-border);
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.mobile-nav.open { max-height: 520px; }
.mobile-nav ul { padding: 8px 0; }
.mobile-nav li a {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 24px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(201,168,76,.08);
}
.mobile-nav li a i { color: var(--gold); width: 16px; }
.mobile-nav li a:hover { color: var(--gold-light); background: var(--gold-dim); }
.mobile-cta {
  display: flex; gap: 10px;
  padding: 14px 20px;
  border-top: 1px solid var(--gold-border);
}
.btn-mobile-call {
  flex: 1; text-align: center;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  padding: 12px;
  border-radius: var(--radius);
  font-weight: 700; font-size: .88rem;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.btn-mobile-wa {
  flex: 1; text-align: center;
  background: var(--green-wa);
  color: var(--white);
  padding: 12px;
  border-radius: var(--radius);
  font-weight: 700; font-size: .88rem;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}

/* =========================================
   BUTTONS (Global)
   ========================================= */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .03em;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-gold {
  background: var(--gradient-gold);
  color: var(--dark-1);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg);
  color: var(--dark-1);
}
.btn-gold::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,.15);
  opacity: 0;
  transition: var(--transition);
}
.btn-gold:hover::before { opacity: 1; }
.btn-outline-gold {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold-light);
}
.btn-outline-gold:hover {
  background: var(--gold-dim);
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: var(--green-wa);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.btn-whatsapp:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-lg { padding: 17px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }
.mt-4 { margin-top: 28px; }

/* =========================================
   SECTION GENEL
   ========================================= */
.section { padding: 96px 0; }
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-label {
  display: inline-block;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-header h2 em { color: var(--gold); font-style: normal; }
.section-header p { font-size: 1rem; color: var(--text-secondary); max-width: 560px; margin: 0 auto; }

/* =========================================
   HERO
   ========================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-slider { position: absolute; inset: 0; }
.slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 130px 24px 90px;
  max-width: 900px;
  margin: 0 auto;
}
.hero-logo {
  max-width: 280px;
  margin: 0 auto 32px;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 60px rgba(201,168,76,.2);
  animation: fadeInDown .9s ease both;
}
.hero-eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  animation: fadeInUp .8s ease .1s both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 22px;
  animation: fadeInUp .8s ease .25s both;
}
.hero-title .gold { color: var(--gold-light); }
.hero-sub {
  font-size: clamp(.95rem, 1.8vw, 1.15rem);
  color: var(--text-secondary);
  margin-bottom: 40px;
  animation: fadeInUp .8s ease .4s both;
}
.hero-btns {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
  margin-bottom: 44px;
  animation: fadeInUp .8s ease .55s both;
}
.hero-btns .btn { font-size: 1rem; }
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  animation: fadeInUp .8s ease .7s both;
}
.badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gold-border);
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 600;
}
.badge i { color: var(--gold); }

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 3;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(201,168,76,.12);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: .95rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.slider-btn:hover { background: var(--gold); color: var(--dark-1); }
.slider-prev { left: 24px; }
.slider-next { right: 24px; }

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.scroll-dot {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* =========================================
   STATS BAND
   ========================================= */
.stats-band {
  background: var(--dark-2);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 36px 0;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  flex: 1; min-width: 140px;
  text-align: center;
  padding: 0 24px;
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-plus {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 8px;
}
.stat-divider {
  width: 1px; height: 60px;
  background: var(--gold-border);
}

/* =========================================
   NEDEN BİZ
   ========================================= */
.why-section { background: var(--dark-1); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--dark-2);
  border: 1px solid rgba(201,168,76,.12);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.feature-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 22px;
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: var(--gradient-gold);
  color: var(--dark-1);
  border-color: transparent;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.feature-card p { font-size: .9rem; color: var(--text-secondary); line-height: 1.7; }

/* =========================================
   ASANSÖRLÜ NAKLİYAT (ÖZEL)
   ========================================= */
.asansorlu-section { background: var(--dark-2); }
.asansorlu-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.asansorlu-content .section-label { margin-bottom: 14px; }
.asansorlu-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 14px 0 20px;
  line-height: 1.2;
}
.asansorlu-content .lead {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.75;
}
.asansorlu-list { margin-bottom: 36px; }
.asansorlu-list li {
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--text-secondary);
  font-size: .93rem;
  margin-bottom: 12px;
  line-height: 1.5;
}
.asansorlu-list li i { color: var(--gold); margin-top: 2px; flex-shrink: 0; font-size: 1rem; }
.asansorlu-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.asansorlu-visual { position: relative; }
.asansorlu-img-wrap {
  position: relative;
  margin-bottom: 16px;
}
.asansorlu-img-wrap img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-dark-lg);
}
.asansorlu-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--gradient-gold);
  color: var(--dark-1);
  padding: 14px 20px;
  border-radius: var(--radius);
  display: flex; align-items: center; gap: 10px;
  font-weight: 800;
  font-size: .95rem;
  line-height: 1.2;
  box-shadow: var(--shadow-gold-lg);
}
.asansorlu-badge i { font-size: 1.8rem; }
.asansorlu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.asansorlu-grid img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-dark);
  transition: var(--transition);
}
.asansorlu-grid img:hover { border-color: var(--gold); transform: scale(1.02); }

/* =========================================
   HİZMETLER
   ========================================= */
.services-section { background: var(--black); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
  margin-bottom: 52px;
}
.service-card {
  background: var(--dark-2);
  border: 1px solid rgba(201,168,76,.1);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.service-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card.featured {
  border-color: var(--gold-border);
  background: linear-gradient(135deg, rgba(201,168,76,.08) 0%, var(--dark-2) 100%);
}
.service-badge {
  position: absolute; top: 18px; right: 18px;
  background: var(--gradient-gold);
  color: var(--dark-1);
  font-size: .7rem; font-weight: 800;
  padding: 4px 10px; border-radius: 20px;
  letter-spacing: .04em;
}
.service-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius);
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--gold);
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--gradient-gold);
  color: var(--dark-1);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.service-card p { font-size: .88rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.service-link {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--gold);
  font-size: .85rem; font-weight: 700;
  letter-spacing: .03em;
  transition: var(--transition);
}
.service-link:hover { gap: 12px; color: var(--gold-bright); }
.services-cta { text-align: center; }
.services-cta p { color: var(--text-muted); margin-bottom: 18px; font-size: 1rem; }

/* =========================================
   GALERİ
   ========================================= */
.gallery-section { background: var(--dark-1); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 14px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  border: 1px solid rgba(201,168,76,.08);
  transition: var(--transition);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,.7) 0%, rgba(10,10,10,.7) 100%);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--white);
  font-size: 1.8rem;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover { border-color: var(--gold-border); box-shadow: var(--shadow-gold); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.95); }
.lightbox-content {
  position: relative; z-index: 2;
  max-width: 90vw; max-height: 90vh;
}
.lightbox-content img {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-gold-lg);
}
.lightbox-close {
  position: absolute; top: 20px; right: 20px; z-index: 3;
  color: var(--gold);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(201,168,76,.15);
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--gold); color: var(--dark-1); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  color: var(--gold);
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(201,168,76,.12);
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.lightbox-nav:hover { background: var(--gold); color: var(--dark-1); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

/* =========================================
   HAKKIMIZDA
   ========================================= */
.about-section { background: var(--dark-2); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  width: 100%; border-radius: var(--radius-xl);
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-dark-lg);
  aspect-ratio: 4/3; object-fit: cover;
}
.about-img-secondary {
  position: absolute;
  bottom: -28px; right: -28px;
  width: 52%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dark-lg);
  border: 3px solid var(--dark-2);
  outline: 1px solid var(--gold-border);
  aspect-ratio: 4/3; object-fit: cover;
}
.about-exp-badge {
  position: absolute;
  top: 20px; left: -20px;
  background: var(--gradient-gold);
  color: var(--dark-1);
  border-radius: var(--radius);
  padding: 16px 22px;
  text-align: center;
  box-shadow: var(--shadow-gold-lg);
}
.exp-num { display: block; font-family: var(--font-display); font-size: 2.2rem; font-weight: 900; line-height: 1; }
.exp-label { display: block; font-size: .72rem; font-weight: 700; opacity: .85; text-transform: uppercase; letter-spacing: .06em; }
.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.5vw, 2.3rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 14px 0 20px;
  line-height: 1.2;
}
.about-content p { font-size: .93rem; color: var(--text-secondary); margin-bottom: 16px; line-height: 1.75; }
.about-stats {
  display: flex; gap: 0;
  margin: 32px 0;
  padding: 24px 0;
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}
.about-stat { flex: 1; text-align: center; padding: 0 12px; }
.about-stat + .about-stat { border-left: 1px solid var(--gold-border); }
.as-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem; font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1; margin-bottom: 6px;
}
.as-lbl { display: block; font-size: .75rem; color: var(--text-muted); }
.about-values {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 8px;
}
.value-item {
  display: flex; align-items: center; gap: 7px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  padding: 7px 14px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
}
.value-item i { color: var(--gold); font-size: .75rem; }

/* =========================================
   SÜREÇ ADIMLAR
   ========================================= */
.process-section { background: var(--black); }
.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.process-step {
  flex: 1; min-width: 200px; max-width: 260px;
  text-align: center;
  padding: 36px 24px;
  position: relative;
}
.step-num {
  font-family: var(--font-accent);
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold-border);
  line-height: 1;
  margin-bottom: -12px;
  position: relative;
  z-index: 0;
}
.step-icon {
  width: 66px; height: 66px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 2px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--gold);
  margin: 0 auto 18px;
  position: relative; z-index: 1;
  transition: var(--transition);
}
.process-step:hover .step-icon {
  background: var(--gradient-gold);
  color: var(--dark-1);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.process-step p { font-size: .85rem; color: var(--text-secondary); line-height: 1.65; }
.process-arrow {
  color: var(--gold-border);
  font-size: 1.2rem;
  padding: 0 8px;
  flex-shrink: 0;
}

/* =========================================
   BÖLGELER
   ========================================= */
.regions-section { background: var(--dark-2); }
.regions-group { margin-bottom: 36px; }
.regions-group-title {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .05em;
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gold-border);
}
.regions-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.rbadge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,.12);
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  transition: var(--transition);
}
.rbadge:hover { border-color: var(--gold-border); color: var(--gold-light); }
.rbadge.featured {
  background: var(--gradient-gold);
  color: var(--dark-1);
  border-color: transparent;
  font-weight: 800;
  box-shadow: var(--shadow-gold);
}
.rbadge.hot {
  background: var(--gold-dim);
  border-color: var(--gold-border);
  color: var(--gold-light);
  font-weight: 700;
}
.regions-cta {
  display: flex; align-items: center; gap: 14px;
  padding: 24px 28px;
  background: var(--dark-3);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  margin-top: 32px;
  font-size: .93rem;
  color: var(--text-secondary);
}
.regions-cta i { font-size: 1.8rem; color: var(--gold); flex-shrink: 0; }
.regions-cta a { color: var(--gold); font-weight: 700; }
.regions-cta a:hover { color: var(--gold-bright); }

/* =========================================
   YORUMLAR
   ========================================= */
.reviews-section { background: var(--black); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
  margin-bottom: 52px;
}
.review-card {
  background: var(--dark-2);
  border: 1px solid rgba(201,168,76,.1);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.review-card::before {
  content: '"';
  position: absolute; top: 12px; right: 22px;
  font-size: 6rem; line-height: 1;
  color: var(--gold);
  opacity: .05;
  font-family: Georgia, serif;
}
.review-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 3px; }
.review-card > p { font-size: .9rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--dark-1);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .82rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-gold);
}
.review-author strong { display: block; font-size: .9rem; color: var(--text-primary); }
.review-author span { font-size: .78rem; color: var(--text-muted); }
/* Rating Summary */
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 36px 40px;
  background: var(--dark-2);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  flex-wrap: wrap;
}
.summary-score { text-align: center; }
.score-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.score-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 3px; margin: 6px 0; }
.score-label { font-size: .75rem; color: var(--text-muted); font-weight: 600; letter-spacing: .06em; }
.summary-bars { flex: 1; min-width: 200px; }
.bar-row {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 8px;
  font-size: .8rem; color: var(--text-muted);
}
.bar-row span:first-child { width: 32px; text-align: right; }
.bar { flex: 1; height: 6px; background: var(--dark-4); border-radius: 3px; overflow: hidden; }
.bar-fill { height: 100%; background: var(--gradient-gold); border-radius: 3px; }
.bar-row span:last-child { width: 32px; }
.summary-total { text-align: center; }
.total-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 700;
  color: var(--gold);
}
.total-lbl { font-size: .78rem; color: var(--text-muted); }

/* =========================================
   FAQ
   ========================================= */
.faq-section { background: var(--dark-1); }
.faq-grid { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid rgba(201,168,76,.12);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--gold-border); }
.faq-item.open { border-color: var(--gold-border); }
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px;
  text-align: left;
  background: var(--dark-2);
  color: var(--text-primary);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.faq-question:hover { color: var(--gold-light); background: var(--dark-3); }
.faq-item.open .faq-question { color: var(--gold); }
.faq-question i { color: var(--gold); flex-shrink: 0; transition: var(--transition); }
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  background: var(--dark-3);
}
.faq-answer p { padding: 20px 24px; font-size: .9rem; color: var(--text-secondary); line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 200px; }

/* =========================================
   İLETİŞİM
   ========================================= */
.contact-section { background: var(--dark-2); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 14px 0 16px;
}
.contact-info > p { font-size: .93rem; color: var(--text-secondary); margin-bottom: 32px; }
.contact-cards { display: flex; flex-direction: column; gap: 14px; }
.contact-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,.12);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  transition: var(--transition);
}
.contact-card:hover { border-color: var(--gold-border); background: var(--dark-4); transform: translateX(4px); }
.contact-card.wa .cc-icon { background: rgba(37,211,102,.15); border-color: rgba(37,211,102,.3); color: var(--green-wa); }
.cc-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.contact-card strong { display: block; font-size: .85rem; color: var(--text-muted); margin-bottom: 2px; font-weight: 600; }
.contact-card span { display: block; font-size: .95rem; color: var(--text-primary); font-weight: 600; }
.contact-card small { display: block; font-size: .78rem; color: var(--text-muted); margin-top: 2px; }
.contact-card.no-link { cursor: default; }
.contact-card.no-link:hover { transform: none; }
/* Form */
.contact-form-wrap {
  background: var(--dark-1);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-dark-lg);
}
.form-header { margin-bottom: 28px; }
.form-header h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  display: flex; align-items: center; gap: 10px;
}
.form-header h3 i { color: var(--gold); }
.form-header p { font-size: .85rem; color: var(--text-muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: .8rem; font-weight: 700; color: var(--gold); letter-spacing: .04em; text-transform: uppercase; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  background: var(--dark-3);
  border: 1.5px solid rgba(201,168,76,.2);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--text-primary);
  outline: none;
  transition: var(--transition);
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: var(--dark-4);
  box-shadow: 0 0 0 3px var(--gold-dim);
}
.form-group select option { background: var(--dark-3); color: var(--text-primary); }
.form-group textarea { resize: vertical; }
.form-message {
  margin-top: 14px;
  padding: 13px 18px;
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 600;
  display: none;
}
.form-message.success { background: rgba(37,211,102,.1); color: #6EE7B7; border: 1px solid rgba(110,231,183,.3); display: block; }
.form-message.error   { background: rgba(239,68,68,.1); color: #FCA5A5; border: 1px solid rgba(252,165,165,.3); display: block; }
.form-note { margin-top: 12px; font-size: .78rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; justify-content: center; }
.form-note i { color: var(--gold); }

/* =========================================
   404 PAGE
   ========================================= */
.page-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: var(--dark-1);
}
.error-404-inner { text-align: center; padding: 80px 0; }
.err-number {
  font-family: var(--font-display);
  font-size: 10rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}
.error-404-inner h1 { font-family: var(--font-display); font-size: 2rem; color: var(--text-primary); margin-bottom: 16px; }
.error-404-inner p { color: var(--text-secondary); margin-bottom: 36px; }
.err-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--dark-1);
  border-top: 1px solid var(--gold-border);
}
.footer-top { padding: 72px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
}
.footer-logo {
  max-width: 180px;
  margin-bottom: 20px;
  border-radius: var(--radius);
}
.footer-about p { font-size: .87rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 8px; }
.slogan { font-style: italic; color: var(--text-muted) !important; font-size: .83rem !important; }
.social-icons { display: flex; gap: 10px; margin-top: 22px; }
.social-icons a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: .95rem;
  transition: var(--transition);
}
.social-icons a:hover {
  background: var(--gradient-gold);
  color: var(--dark-1);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.footer-col h3 {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gold-border);
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  display: flex; align-items: center; gap: 8px;
  font-size: .86rem;
  color: var(--text-secondary);
  transition: var(--transition);
}
.footer-links a i { font-size: .55rem; color: var(--gold); }
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.contact-list li {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px;
  font-size: .86rem;
}
.contact-list i { font-size: .95rem; color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.contact-list span, .contact-list a { color: var(--text-secondary); }
.contact-list a:hover { color: var(--gold-light); }
.footer-seo-bar {
  background: var(--dark-2);
  border-top: 1px solid rgba(201,168,76,.1);
  padding: 14px 0;
}
.seo-keywords {
  text-align: center;
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 2;
}
.seo-keywords a { color: var(--text-muted); transition: var(--transition); margin: 0 2px; }
.seo-keywords a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(201,168,76,.1);
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
  font-size: .8rem;
  color: var(--text-muted);
}
.footer-bottom-inner strong { color: var(--gold); }
.footer-bottom-inner a { color: var(--gold); }

/* =========================================
   FLOATING BUTTONS
   ========================================= */
.floating-btns {
  position: fixed;
  bottom: 28px; right: 22px;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 18px;
  border-radius: 50px;
  color: var(--dark-1);
  font-weight: 800; font-size: .88rem;
  box-shadow: var(--shadow-dark-lg);
  transition: var(--transition);
  white-space: nowrap;
  overflow: hidden;
  max-width: 60px;
  border: none;
  cursor: pointer;
}
.float-btn:hover { max-width: 200px; }
.float-whatsapp { background: var(--green-wa); }
.float-whatsapp:hover { background: var(--green-dark); }
.float-call { background: var(--gradient-gold); box-shadow: var(--shadow-gold-lg); }
.float-call:hover { transform: scale(1.02); }
.float-label { opacity: 0; transition: opacity .3s ease; white-space: nowrap; font-size: .82rem; }
.float-btn:hover .float-label { opacity: 1; }
.float-btn i { font-size: 1.3rem; flex-shrink: 0; }
.float-whatsapp i, .float-whatsapp .float-label { color: var(--white); }

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 28px; left: 22px;
  z-index: 9990;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: .95rem;
  display: none;
  align-items: center; justify-content: center;
  box-shadow: var(--shadow-dark);
  transition: var(--transition);
}
.back-to-top.show { display: flex; }
.back-to-top:hover {
  background: var(--gradient-gold);
  color: var(--dark-1);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

/* =========================================
   ANİMASYONLAR
   ========================================= */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Reveal (scroll animate) */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   RESPONSIVE — TABLET (≤1024px)
   ========================================= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-inner { gap: 40px; }
  .contact-inner { gap: 40px; }
  .asansorlu-inner { gap: 40px; }
  .process-steps { gap: 4px; }
}

/* =========================================
   RESPONSIVE — MOBİL (≤768px)
   ========================================= */
@media (max-width: 768px) {
  .section { padding: 64px 0; }

  /* Header */
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .btn-header-call span,
  .btn-header-wa span { display: none; }
  .btn-header-call,
  .btn-header-wa { padding: 10px 12px; }

  /* Hero */
  .hero-logo { max-width: 200px; }
  .hero-content { padding: 110px 16px 70px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 340px; justify-content: center; }
  .slider-btn { display: none; }
  .hero-badges { gap: 8px; }

  /* Stats */
  .stats-grid { gap: 4px; }
  .stat-divider { display: none; }
  .stat-item { min-width: 130px; }

  /* Grids */
  .features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid  { grid-template-columns: 1fr; }
  .gallery-grid  { grid-template-columns: repeat(2, 1fr); }

  /* About */
  .about-inner { grid-template-columns: 1fr; }
  .about-img-secondary,
  .about-exp-badge { display: none; }

  /* Asansörlü */
  .asansorlu-inner { grid-template-columns: 1fr; }
  .asansorlu-btns { flex-direction: column; }
  .asansorlu-btns .btn { justify-content: center; }

  /* Process */
  .process-steps { flex-direction: column; gap: 0; }
  .process-arrow { transform: rotate(90deg); }

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

  /* Reviews summary */
  .reviews-summary { flex-direction: column; align-items: flex-start; gap: 28px; padding: 28px; }

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

  /* Floating */
  .float-btn { padding: 18px; max-width: none; border-radius: 50%; }
  .float-label { display: none; }
}

/* =========================================
   RESPONSIVE — KÜÇÜK (≤480px)
   ========================================= */
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .ticker-track { animation-duration: 32s; }
  .hero-badges { flex-direction: column; align-items: center; }
  .about-stats { flex-direction: column; gap: 20px; }
  .about-stat + .about-stat { border-left: none; border-top: 1px solid var(--gold-border); padding-top: 20px; }
  .stat-item { min-width: 100px; }
}

/* =========================================
   WP ADMIN BAR
   ========================================= */
body.admin-bar .ticker-bar { top: 32px; }
body.admin-bar .site-header { top: calc(42px + 32px); }
@media screen and (max-width: 782px) {
  body.admin-bar .ticker-bar { top: 46px; }
  body.admin-bar .site-header { top: calc(42px + 46px); }
}
