/* ================================================
   İDİL OTO KURTARMA — PREMIUM STYLESHEET
   ================================================ */

/* ─── TOKENS ─── */
:root {
  --c-bg:          #08080d;
  --c-bg2:         #0e0e16;
  --c-surface:     #13131e;
  --c-surface2:    #1a1a28;
  --c-border:      rgba(255,255,255,0.07);
  --c-red:         #e63946;
  --c-red-glow:    rgba(230, 57, 70, 0.35);
  --c-red-dark:    #b52d38;
  --c-orange:      #f4a261;
  --c-text:        #f0f0f8;
  --c-text-muted:  #8890a4;
  --c-text-dim:    #555a70;
  --c-white:       #ffffff;
  --font-head:     'Montserrat', sans-serif;
  --font-body:     'Inter', sans-serif;
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     22px;
  --radius-xl:     32px;
  --shadow-card:   0 4px 32px rgba(0,0,0,0.45);
  --shadow-red:    0 0 32px var(--c-red-glow);
  --transition:    0.3s cubic-bezier(0.4,0,0.2,1);
}

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

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--c-bg); }
::-webkit-scrollbar-thumb { background: var(--c-surface2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--c-red); }

/* ─── TYPOGRAPHY ─── */
h1,h2,h3,h4 { font-family: var(--font-head); font-weight: 800; line-height: 1.15; }
.accent { color: var(--c-red); }

/* ─── LAYOUT ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 100px 0; }
.section-dark { background: var(--c-bg2); }

/* ─── LOCAL SEO SECTION ─── */
.local-seo-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(230,57,70,0.12), transparent 36%),
    radial-gradient(circle at 80% 10%, rgba(244,162,97,0.08), transparent 35%),
    var(--c-bg2);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.local-seo-header {
  margin-bottom: 26px;
}
.local-seo-content {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}
.local-seo-content p {
  color: var(--c-text-muted);
  font-size: 1.02rem;
}
.local-seo-content strong {
  color: var(--c-text);
  font-weight: 700;
}

/* ─── PRELOADER ─── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--c-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-ring {
  width: 64px;
  height: 64px;
  border: 3px solid var(--c-surface2);
  border-top-color: var(--c-red);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  margin: 0 auto 20px;
}
.preloader-text {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--c-text-muted);
}

/* ─── HEADER ─── */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
#header.scrolled {
  background: rgba(8, 8, 13, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--c-border), 0 8px 32px rgba(0,0,0,0.4);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 120px;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-img {
  height: 200px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
  transition: transform var(--transition), filter var(--transition);
}
.logo:hover .logo-img {
  transform: scale(1.04);
  filter: drop-shadow(0 4px 16px rgba(230,57,70,0.35));
}
.footer .logo-img {
  height: 220px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--c-text-muted);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--c-white);
  background: rgba(255,255,255,0.06);
}

/* Nav CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--c-red);
  color: var(--c-white);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  font-family: var(--font-head);
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  flex-shrink: 0;
}
.nav-cta svg { width: 16px; height: 16px; flex-shrink: 0; }
.nav-cta:hover {
  background: var(--c-red-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-red);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ─── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #08080d 0%, #0d0a18 40%, #110b0e 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(230,57,70,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(244,162,97,0.06) 0%, transparent 60%);
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--c-red);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle linear infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
}
.hero-badge {
  height: 170px;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(230,57,70,0.12);
  border: 1px solid rgba(230,57,70,0.3);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-red);
  letter-spacing: 1px;
  margin-bottom: 28px;
  animation: fade-up 0.8s ease both;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--c-red);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}
.hero-title {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--c-white);
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-title-line {
  display: block;
  animation: fade-up 0.8s ease both;
}
.hero-title-line:nth-child(2) { animation-delay: 0.15s; }
.hero-desc {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.75;
  animation: fade-up 0.8s 0.3s ease both;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fade-up 0.8s 0.45s ease both;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 60px;
  padding: 28px 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  animation: fade-up 0.8s 0.6s ease both;
  flex-wrap: wrap;
  gap: 0;
}
.hero-stat {
  padding: 0 36px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--c-white);
}
.stat-plus {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--c-red);
}
.stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  margin-top: 4px;
  letter-spacing: 0.5px;
}
.hero-stat-divider {
  width: 1px;
  height: 50px;
  background: var(--c-border);
  flex-shrink: 0;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fade-up 1s 1s ease both;
}
.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--c-red);
  border-radius: 2px;
  animation: scroll-wheel 2s ease infinite;
}
.hero-scroll-hint span {
  font-size: 0.7rem;
  color: var(--c-text-dim);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--c-red);
  color: var(--c-white);
  border-radius: var(--radius-md);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary:hover {
  background: var(--c-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(230,57,70,0.45);
}
.btn-xl { padding: 18px 48px; font-size: 1.15rem; border-radius: var(--radius-lg); }
.pulse-btn { position: relative; }
.pulse-btn::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid var(--c-red);
  opacity: 0;
  animation: pulse-ring 2s ease infinite;
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: rgba(255,255,255,0.06);
  color: var(--c-text);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-secondary svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: #25d366;
  color: var(--c-white);
  border-radius: var(--radius-lg);
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-whatsapp svg { width: 22px; height: 22px; flex-shrink: 0; }
.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.35);
}

/* ─── MARQUEE ─── */
.marquee-wrapper {
  background: var(--c-red);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: marquee-scroll 25s linear infinite;
  will-change: transform;
}
.marquee-track span {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 2px;
  text-transform: uppercase;
  flex-shrink: 0;
}
.marquee-track .sep {
  color: rgba(255,255,255,0.4);
  font-size: 0.6rem;
}

/* ─── SECTION HEADER ─── */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(230,57,70,0.12);
  border: 1px solid rgba(230,57,70,0.25);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--c-red);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--c-white);
  margin-bottom: 16px;
}
.section-desc {
  color: var(--c-text-muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

/* ─── ANIMATE ON SCROLL ─── */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}
[data-animate]:nth-child(2) { transition-delay: 0.1s; }
[data-animate]:nth-child(3) { transition-delay: 0.2s; }
[data-animate]:nth-child(4) { transition-delay: 0.3s; }
[data-animate]:nth-child(5) { transition-delay: 0.4s; }
[data-animate]:nth-child(6) { transition-delay: 0.5s; }

/* ─── SERVICES ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-red), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(230,57,70,0.3);
  box-shadow: 0 20px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(230,57,70,0.15);
}
.service-card:hover::before { opacity: 1; }
.service-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(230,57,70,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--c-red);
  transition: background var(--transition);
}
.service-icon-wrap svg { width: 30px; height: 30px; }
.service-card:hover .service-icon-wrap { background: rgba(230,57,70,0.2); }
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}
.service-arrow {
  margin-top: 20px;
  font-size: 1.2rem;
  color: var(--c-red);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity var(--transition), transform var(--transition);
}
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

/* ─── GALLERY ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item-tall {
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-content { display: block; }
.gallery-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--c-red);
  color: var(--c-white);
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.gallery-overlay h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-white);
}
.gallery-zoom {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background var(--transition);
}
.gallery-zoom svg { width: 16px; height: 16px; color: white; }
.gallery-zoom:hover { background: var(--c-red); }

/* ─── NEDEN BİZ ─── */
.neden-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.neden-left .section-tag,
.neden-left .section-title,
.neden-left .section-desc { text-align: left; }
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.feature-check {
  width: 28px;
  height: 28px;
  background: rgba(230,57,70,0.15);
  border: 1px solid rgba(230,57,70,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-red);
  font-size: 0.8rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--c-white);
  margin-bottom: 4px;
}
.feature-item p {
  font-size: 0.85rem;
  color: var(--c-text-muted);
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(230,57,70,0.3);
}
.stat-card-accent {
  background: linear-gradient(135deg, rgba(230,57,70,0.1), rgba(230,57,70,0.05));
  border-color: rgba(230,57,70,0.2);
}
.stat-card-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
}
.stat-card-num {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--c-white);
  display: inline;
}
.stat-card-suffix {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--c-red);
  display: inline;
}
.stat-card-label {
  display: block;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  margin-top: 8px;
}

/* ─── CTA ─── */
.cta-section {
  position: relative;
  overflow: hidden;
  background: var(--c-bg2);
}
.cta-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(230,57,70,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--c-white);
  margin-bottom: 16px;
}
.cta-desc {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  max-width: 500px;
  margin: 0 auto 40px;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.cta-info span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--c-text-muted);
}
.cta-info svg { width: 16px; height: 16px; color: var(--c-red); flex-shrink: 0; }

/* ─── FOOTER ─── */
.footer {
  background: var(--c-bg);
  border-top: 1px solid var(--c-border);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--c-border);
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  margin-top: 16px;
  line-height: 1.7;
  max-width: 280px;
}
.footer-links h4, .footer-contact h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links ul li, .footer-contact ul li {
  margin-bottom: 12px;
}
.footer-links a {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--c-red); }
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--c-text-muted);
}
.footer-contact svg { width: 16px; height: 16px; color: var(--c-red); flex-shrink: 0; }
.footer-contact a { color: var(--c-text-muted); transition: color var(--transition); }
.footer-contact a:hover { color: var(--c-red); }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: var(--c-text-dim);
}

/* ─── LIGHTBOX ─── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox-img-wrap {
  max-width: min(900px, 90vw);
  max-height: 85vh;
  animation: lightbox-in 0.3s ease;
}
.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 32px 80px rgba(0,0,0,0.8);
}
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  color: white;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
}
.lightbox-close:hover { background: var(--c-red); }
.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.08);
  color: white;
  border-radius: 50%;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background var(--transition);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
}
.lightbox-nav:hover { background: var(--c-red); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ─── FLOATING CALL ─── */
.floating-call {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  width: 60px;
  height: 60px;
  background: var(--c-red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(230,57,70,0.5);
  transition: transform var(--transition), box-shadow var(--transition);
}
.floating-call svg { width: 26px; height: 26px; }
.floating-call::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(230,57,70,0.4);
  animation: pulse-ring 2.5s ease infinite;
}
.floating-call:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(230,57,70,0.7);
}
.floating-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--c-surface);
  color: var(--c-white);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  border: 1px solid var(--c-border);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}
.floating-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid var(--c-surface);
}
.floating-call:hover .floating-tooltip { opacity: 1; }

/* ─── KEYFRAMES ─── */
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0);    }
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.8); }
}
@keyframes pulse-ring {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.5); }
}
@keyframes scroll-wheel {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}
@keyframes float-particle {
  0%   { opacity: 0; transform: translateY(0) scale(1); }
  20%  { opacity: 0.8; }
  100% { opacity: 0; transform: translateY(-120px) scale(0.5); }
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes lightbox-in {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .neden-wrapper { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .hero-stats { padding: 20px 24px; }
  .hero-stat { padding: 0 20px; }
}
@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: var(--c-bg2); border-bottom: 1px solid var(--c-border); padding: 16px 0 24px; gap: 2px; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 24px; border-radius: 0; font-size: 1rem; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .logo-img { height: 120px; }
  .nav-container { height: 130px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item-tall { grid-row: span 1; aspect-ratio: 4/3; }
  .hero-stats { gap: 4px; padding: 16px; }
  .hero-stat { padding: 0 12px; }
  .hero-stat-divider { height: 36px; }
  .services-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: 1; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item-tall { aspect-ratio: 4/3; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-stat-divider { width: 60px; height: 1px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn-primary, .hero-actions .btn-secondary { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn-primary, .cta-actions .btn-whatsapp { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .floating-call { bottom: 20px; right: 20px; }
}
