/* =========================================
   KÜTAHYA GÜVEN NAKLİYAT — ANA STİL DOSYASI
   ========================================= */

/* === VARIABLES === */
:root {
  --navy:      #1B2B5E;
  --navy-dark: #111e45;
  --navy-light:#2a3f80;
  --red:       #E31E24;
  --red-dark:  #c01820;
  --green-wa:  #25D366;
  --green-dark:#1aad52;
  --white:     #ffffff;
  --off-white: #f8f9fc;
  --gray-light:#f1f3f8;
  --gray:      #6b7280;
  --gray-dark: #374151;
  --border:    #e5e7eb;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.16);
  --radius:    10px;
  --radius-lg: 18px;
  --transition: all .28s cubic-bezier(.4,0,.2,1);
  --font-body: 'Inter', sans-serif;
  --font-head: 'Poppins', sans-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(--gray-dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
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; }

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

/* =========================================
   KAYAN DUYURU BANDI (TICKER)
   ========================================= */
.ticker-bar {
  background: var(--navy);
  color: var(--white);
  height: 44px;
  overflow: hidden;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
}
.ticker-inner {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ticker-scroll 45s linear infinite;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .02em;
}
.ticker-track span { padding: 0 14px; }
.ticker-track .sep { color: var(--red); font-weight: 700; padding: 0 2px; }
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-bar:hover .ticker-track { animation-play-state: paused; }

/* =========================================
   HEADER / NAVBAR
   ========================================= */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 44px;
  z-index: 999;
  border-bottom: 3px solid var(--navy);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 16px;
}
.header-logo img { height: 60px; width: auto; object-fit: contain; }

/* Desktop Nav */
.main-nav { display: flex; }
.main-nav ul { display: flex; gap: 4px; align-items: center; }
.main-nav a {
  display: block;
  padding: 8px 14px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  border-radius: 6px;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 1px;
}
.main-nav a:hover { color: var(--red); }
.main-nav a:hover::after { transform: scaleX(1); }

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 10px; }
.btn-header-call {
  display: flex; align-items: center; gap: 7px;
  background: var(--navy);
  color: var(--white);
  padding: 9px 16px;
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-header-call:hover { background: var(--navy-dark); color: var(--white); }
.btn-header-whatsapp {
  display: flex; align-items: center; gap: 7px;
  background: var(--green-wa);
  color: var(--white);
  padding: 9px 16px;
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-header-whatsapp:hover { background: var(--green-dark); color: var(--white); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--navy);
  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(--white);
  border-top: 1px solid var(--border);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.mobile-nav.open { max-height: 500px; }
.mobile-nav ul { padding: 8px 0; }
.mobile-nav li a {
  display: block;
  padding: 13px 24px;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--gray-light);
}
.mobile-nav li a:hover { background: var(--gray-light); color: var(--red); }
.mobile-cta {
  display: flex; gap: 10px;
  padding: 14px 20px;
}
.btn-mobile-call {
  flex: 1; text-align: center;
  background: var(--navy); color: var(--white);
  padding: 12px;
  border-radius: var(--radius);
  font-weight: 600; font-size: .9rem;
}
.btn-mobile-wa {
  flex: 1; text-align: center;
  background: var(--green-wa); color: var(--white);
  padding: 12px;
  border-radius: var(--radius);
  font-weight: 600; font-size: .9rem;
}

/* =========================================
   BUTTONS (Genel)
   ========================================= */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(227,30,36,.35);
}
.btn-primary:hover {
  background: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227,30,36,.45);
}
.btn-whatsapp {
  background: var(--green-wa);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37,211,102,.35);
}
.btn-whatsapp:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-primary-outline {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-primary-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* =========================================
   SECTION GENEL
   ========================================= */
.section { padding: 90px 0; }
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header.light { color: var(--white); }
.section-label {
  display: inline-block;
  background: rgba(227,30,36,.1);
  color: var(--red);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-header.light .section-label {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.2;
}
.section-header.light h2 { color: var(--white); }
.section-header p { font-size: 1.05rem; color: var(--gray); max-width: 560px; margin: 0 auto; }
.section-header.light p { color: rgba(255,255,255,.75); }

/* =========================================
   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.2s ease;
}
.slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(27,43,94,.88) 0%, rgba(27,43,94,.72) 60%, rgba(0,0,0,.55) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 120px 20px 80px;
}
.hero-logo {
  max-width: 300px;
  margin: 0 auto 36px;
  filter: brightness(0) invert(1);
  animation: fadeInDown .8s ease both;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeInUp .8s ease .2s both;
}
.hero-title span { color: #ff6b6b; }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: .9;
  margin-bottom: 38px;
  animation: fadeInUp .8s ease .35s both;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 36px;
  animation: fadeInUp .8s ease .5s both;
}
.hero-btns .btn { font-size: 1.05rem; padding: 15px 32px; }
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center;
  animation: fadeInUp .8s ease .65s both;
}
.badge {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 600;
}
.badge i { color: #ffd700; }

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 3;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.3);
  transition: var(--transition);
}
.slider-btn:hover { background: var(--red); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

/* =========================================
   NEDEN BİZ
   ========================================= */
.why-section { background: var(--off-white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--navy);
}
.feature-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(27,43,94,.25);
}
.feature-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.feature-card p { font-size: .92rem; color: var(--gray); line-height: 1.65; }

/* =========================================
   HİZMETLER
   ========================================= */
.services-section { background: var(--navy); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.service-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  color: var(--white);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured { background: rgba(227,30,36,.15); border-color: rgba(227,30,36,.4); }
.service-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--red); color: var(--white);
  font-size: .72rem; font-weight: 700;
  padding: 4px 10px; border-radius: 20px;
  letter-spacing: .03em;
}
.service-icon {
  width: 58px; height: 58px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--white);
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,.15);
}
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem; font-weight: 700;
  margin-bottom: 10px;
}
.service-card p { font-size: .9rem; opacity: .8; line-height: 1.65; margin-bottom: 18px; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--red);
  font-size: .88rem; font-weight: 600;
}
.service-link:hover { gap: 10px; }
.services-cta { text-align: center; }
.services-cta p { color: rgba(255,255,255,.8); margin-bottom: 16px; font-size: 1.05rem; }

/* =========================================
   GALERİ
   ========================================= */
.gallery-section { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(27,43,94,.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--white);
  font-size: 2rem;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* 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,.9);
}
.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);
}
.lightbox-close {
  position: absolute; top: 20px; right: 20px;
  z-index: 3;
  color: var(--white); font-size: 1.8rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--red); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3;
  color: var(--white);
  font-size: 1.5rem;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lightbox-nav:hover { background: var(--red); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

/* =========================================
   HAKKIMIZDA
   ========================================= */
.about-section { background: var(--off-white); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3; object-fit: cover;
}
.about-img-secondary {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 55%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  aspect-ratio: 4/3; object-fit: cover;
}
.about-stat-badge {
  position: absolute;
  top: 20px; left: -20px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  padding: 14px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.stat-number { display: block; font-family: var(--font-head); font-size: 2rem; font-weight: 900; line-height: 1; }
.stat-label { display: block; font-size: .72rem; opacity: .9; text-transform: uppercase; letter-spacing: .08em; }
.about-content .section-label { color: var(--red); background: rgba(227,30,36,.1); }
.about-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  margin: 14px 0 20px;
}
.about-content p { font-size: .96rem; color: var(--gray); margin-bottom: 14px; }
.about-stats {
  display: flex; gap: 32px;
  margin: 28px 0 32px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat { text-align: center; }
.stat-n {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem; font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-l { display: block; font-size: .78rem; color: var(--gray); }

/* =========================================
   HİZMET BÖLGELERİ
   ========================================= */
.regions-section { background: var(--navy); }
.regions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 36px;
}
.region-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  transition: var(--transition);
}
.region-badge:hover { background: rgba(255,255,255,.15); }
.region-badge.featured {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 4px 16px rgba(227,30,36,.4);
}
.region-badge i { font-size: .85rem; }
.regions-note {
  text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  color: rgba(255,255,255,.7);
  font-size: .92rem;
}
.regions-note a { color: #ffd700; font-weight: 700; }
.regions-note i { font-size: 1.2rem; color: var(--red); }

/* =========================================
   YORUMLAR
   ========================================= */
.reviews-section { background: var(--white); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: var(--transition);
}
.review-card::before {
  content: '"';
  position: absolute; top: 16px; left: 22px;
  font-size: 4rem; line-height: 1;
  color: var(--navy); opacity: .08;
  font-family: Georgia, serif;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-stars { color: #fbbf24; font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-card > p { font-size: .92rem; color: var(--gray-dark); line-height: 1.7; margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 14px; }
.reviewer-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem;
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: .92rem; color: var(--navy); }
.review-author span { font-size: .8rem; color: var(--gray); }

/* =========================================
   İLETİŞİM
   ========================================= */
.contact-section { background: var(--off-white); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info .section-label { color: var(--red); background: rgba(227,30,36,.1); }
.contact-info h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 800;
  color: var(--navy);
  margin: 14px 0 16px;
}
.contact-info > p { font-size: .96rem; color: var(--gray); margin-bottom: 28px; }
.contact-details { display: flex; flex-direction: column; gap: 18px; }
.contact-details li { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.contact-details strong { display: block; font-size: .95rem; color: var(--navy); margin-bottom: 2px; }
.contact-details span { display: block; font-size: .83rem; color: var(--gray); }
.contact-details a { color: var(--navy); font-weight: 600; font-size: .95rem; }
.contact-details a:hover { color: var(--red); }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.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: .85rem; font-weight: 600; color: var(--navy); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .93rem;
  color: var(--gray-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,43,94,.1);
}
.form-group textarea { resize: vertical; }
.form-message {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 600;
  display: none;
}
.form-message.success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; display: block; }
.form-message.error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; display: block; }

/* =========================================
   FOOTER
   ========================================= */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,.85); }
.footer-top { padding: 64px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
}
.footer-col h3 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.footer-logo { max-width: 190px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-about p { font-size: .88rem; opacity: .8; line-height: 1.7; margin-bottom: 10px; }
.footer-about .slogan { font-style: italic; opacity: .7; font-size: .85rem; }
.social-icons { display: flex; gap: 10px; margin-top: 20px; }
.social-icons a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
}
.social-icons a:hover { background: var(--red); border-color: var(--red); transform: translateY(-3px); }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  display: flex; align-items: center; gap: 8px;
  font-size: .88rem;
  opacity: .8;
  transition: var(--transition);
}
.footer-links a i { font-size: .65rem; color: var(--red); }
.footer-links a:hover { opacity: 1; padding-left: 4px; color: var(--white); }
.contact-list li {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 14px;
  font-size: .88rem;
}
.contact-list i { font-size: 1rem; color: var(--red); margin-top: 2px; flex-shrink: 0; }
.contact-list a { opacity: .85; }
.contact-list a:hover { opacity: 1; color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .83rem;
  opacity: .7;
}
.footer-keywords a { color: inherit; opacity: 1; }
.footer-keywords a:hover { color: var(--white); opacity: 1; }

/* =========================================
   FLOATING BUTTONS
   ========================================= */
.floating-btns {
  position: fixed;
  bottom: 28px; right: 20px;
  z-index: 9990;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  border-radius: 50px;
  color: var(--white);
  font-weight: 700; font-size: .9rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  white-space: nowrap;
  overflow: hidden;
  max-width: 58px;
}
.float-btn:hover { max-width: 180px; color: var(--white); }
.float-call { background: var(--red); }
.float-call:hover { background: var(--red-dark); }
.float-whatsapp { background: var(--green-wa); }
.float-whatsapp:hover { background: var(--green-dark); }
.float-label { opacity: 0; transition: var(--transition); white-space: nowrap; }
.float-btn:hover .float-label { opacity: 1; }
.float-btn i { font-size: 1.3rem; flex-shrink: 0; }

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 28px; left: 20px;
  z-index: 9990;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-size: 1rem;
  display: none;
  align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.back-to-top.show { display: flex; }
.back-to-top:hover { background: var(--red); transform: translateY(-3px); }

/* =========================================
   ANİMASYONLAR
   ========================================= */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.05); }
}

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

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

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

  /* Hero */
  .hero-content { padding: 100px 16px 60px; }
  .hero-logo { max-width: 220px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 320px; justify-content: center; }
  .slider-btn { display: none; }

  /* 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 { display: none; }
  .about-stat-badge { top: 10px; left: 10px; }
  .about-stats { flex-direction: row; justify-content: space-between; }

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

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

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

/* =========================================
   RESPONSIVE — KÜÇÜK MOBİL (≤480px)
   ========================================= */
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .about-stats { gap: 16px; }
  .stat-n { font-size: 1.6rem; }
  .hero-badges { gap: 8px; }
  .badge { font-size: .8rem; padding: 6px 12px; }
  .ticker-track { animation-duration: 30s; }
}

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