﻿/* ============================================================
   MERSIN ALO NAKLIYE - MAIN STYLESHEET
   Color Palette:
   --navy:    #1B2A4A
   --orange:  #FF6B00
   --orange2: #F39C12
   --white:   #FFFFFF
   --gray:    #F8F9FA
   --dark:    #0F1B30
============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #1B2A4A;
  --navy2:   #243560;
  --navy3:   #0F1B30;
  --orange:  #FF6B00;
  --orange2: #F39C12;
  --orange3: #FF8C2A;
  --white:   #FFFFFF;
  --gray:    #F8F9FA;
  --gray2:   #E9ECEF;
  --gray3:   #6C757D;
  --dark:    #0F1B30;
  --success: #25D366;
  --font-primary: 'Outfit', sans-serif;
  --font-secondary: 'Inter', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 4px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: var(--font-primary);
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
  padding-bottom: 72px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; border-radius: var(--radius-md); }
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,107,0,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,107,0,.45);
  background: linear-gradient(135deg, var(--orange3), var(--orange));
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,.35);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,.45);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--orange);
  color: var(--orange);
}
.btn-outline:hover { background: var(--orange); color: var(--white); }

/* ── TOP BAR ── */
.top-bar {
  background: var(--navy3);
  padding: 9px 0;
  font-size: 0.82rem;
  font-family: var(--font-secondary);
  position: relative;
  z-index: 1001;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.top-bar-left {
  display: flex;
  gap: 20px;
  color: rgba(255,255,255,.75);
}
.top-bar-left span { display: flex; align-items: center; gap: 6px; }
.top-bar-left i { color: var(--orange); }
.top-bar-right { display: flex; gap: 10px; flex-shrink: 0; }
.top-bar-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--white);
  transition: var(--transition);
}
.top-bar-btn.call-btn {
  background: var(--orange);
}
.top-bar-btn.call-btn:hover { background: var(--orange3); transform: scale(1.04); }
.top-bar-btn.wa-btn { background: #25D366; }
.top-bar-btn.wa-btn:hover { background: #1ebe5a; transform: scale(1.04); }

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(27,42,74,.1);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(27,42,74,.18);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
}
.logo-img-sm { width: 36px; height: 36px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.3px;
}
.logo-sub {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
  transition: var(--transition);
}
.nav-link:hover { color: var(--orange); background: rgba(255,107,0,.06); }
.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 22px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: var(--white);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 3px 12px rgba(255,107,0,.3);
  margin-left: 8px;
}
.nav-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,107,0,.4); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Nav */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 1099;
  opacity: 0;
  transition: opacity .3s;
}
.mobile-overlay.visible { opacity: 1; }
.mobile-nav {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 300px;
  background: var(--white);
  z-index: 1100;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-close {
  align-self: flex-end;
  background: var(--gray2);
  border: none;
  border-radius: 50%;
  width: 38px; height: 38px;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--navy);
  margin-bottom: 8px;
}
.mobile-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--gray2);
}
.mobile-logo img { width: 40px; height: 40px; border-radius: 8px; object-fit: cover; }
.mobile-logo span { font-weight: 700; font-size: 1rem; color: var(--navy); }
.mobile-nav-link {
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  border-bottom: 1px solid var(--gray2);
}
.mobile-nav-link:hover { color: var(--orange); background: rgba(255,107,0,.05); }
.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.mob-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  text-align: center;
}
.mob-btn.call-btn { background: linear-gradient(135deg, var(--orange), var(--orange2)); }
.mob-btn.wa-btn { background: linear-gradient(135deg, #25D366, #128C7E); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(.45);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,27,48,.92) 0%, rgba(27,42,74,.75) 50%, rgba(255,107,0,.18) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 20px 80px;
  max-width: 820px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,.18);
  border: 1px solid rgba(255,107,0,.4);
  color: var(--orange3);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero-title .highlight {
  background: linear-gradient(90deg, var(--orange), var(--orange2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 400;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  width: fit-content;
  flex-wrap: wrap;
  gap: 8px;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}
.stat-num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--orange3);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,.7);
  margin-top: 3px;
  font-weight: 500;
  white-space: nowrap;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.2);
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: rgba(255,255,255,.8);
  font-weight: 500;
}
.hero-trust i { color: var(--orange3); }
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-dot {
  width: 28px; height: 44px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 14px;
  position: relative;
}
.scroll-dot::before {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 5px; height: 10px;
  background: var(--orange);
  border-radius: 3px;
  animation: scrollAnim 1.8s ease infinite;
}
@keyframes scrollAnim {
  0% { top: 6px; opacity: 1; }
  100% { top: 24px; opacity: 0; }
}

/* ── SECTION HEADER ── */
.section-header { text-align: center; margin-bottom: 52px; }
.section-tag {
  display: inline-block;
  background: rgba(255,107,0,.1);
  color: var(--orange);
  border: 1px solid rgba(255,107,0,.25);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--gray3);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-header.light .section-tag {
  background: rgba(255,255,255,.15);
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.3);
}
.section-header.light .section-title { color: var(--white); }
.section-header.light .section-desc { color: rgba(255,255,255,.75); }

/* ── ABOUT / ADVANTAGES ── */
.about-strip {
  padding: 90px 0;
  background: var(--gray);
}
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.adv-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 4px solid transparent;
}
.adv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--orange);
}
.adv-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(255,107,0,.12), rgba(243,156,18,.08));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--orange);
  margin-bottom: 18px;
}
.adv-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.adv-card p {
  font-size: 0.9rem;
  color: var(--gray3);
  line-height: 1.65;
}

/* ── SERVICES ── */
.services {
  padding: 90px 0;
  background: linear-gradient(160deg, var(--navy3) 0%, var(--navy) 60%, var(--navy2) 100%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 24px;
}
.service-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  backdrop-filter: blur(8px);
}
.service-card:hover {
  background: rgba(255,255,255,.09);
  transform: translateY(-5px);
  border-color: rgba(255,107,0,.4);
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}
.service-card.featured {
  border-color: var(--orange);
  background: rgba(255,107,0,.08);
  box-shadow: 0 0 0 1px rgba(255,107,0,.3), 0 12px 40px rgba(255,107,0,.15);
}
.featured-badge {
  position: absolute;
  top: -12px; left: 24px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.service-icon {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  flex-shrink: 0;
}
.service-body { flex: 1; }
.service-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.service-body p {
  font-size: 0.88rem;
  color: rgba(255,255,255,.68);
  line-height: 1.65;
  margin-bottom: 14px;
}
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: rgba(255,255,255,.8);
}
.service-list i { color: var(--orange3); font-size: 0.7rem; }
.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255,107,0,.15);
  border: 1px solid rgba(255,107,0,.4);
  color: var(--orange3);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  align-self: flex-start;
  transition: var(--transition);
}
.service-cta:hover { background: var(--orange); color: var(--white); border-color: var(--orange); }
.service-cta.wa-cta {
  background: rgba(37,211,102,.12);
  border-color: rgba(37,211,102,.35);
  color: #25D366;
}
.service-cta.wa-cta:hover { background: #25D366; color: var(--white); border-color: #25D366; }

/* ── PROCESS ── */
.process-section {
  padding: 90px 0;
  background: var(--gray);
}
.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 20px;
}
.process-step {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}
.process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: var(--white);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, rgba(255,107,0,.12), rgba(243,156,18,.08));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--orange);
  margin: 16px auto 16px;
}
.process-step h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.process-step p { font-size: 0.82rem; color: var(--gray3); line-height: 1.6; }
.process-arrow {
  display: flex;
  align-items: center;
  color: var(--orange);
  font-size: 1.2rem;
  margin-top: 52px;
  flex-shrink: 0;
}

/* ── CTA BANNER ── */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange2) 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: 5%;
  width: 280px;
  height: 280px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cta-text h2 {
  font-size: clamp(1.4rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.cta-text p {
  font-size: 1rem;
  color: rgba(255,255,255,.85);
}
.cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-banner .btn-primary {
  background: var(--white);
  color: var(--orange);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.cta-banner .btn-primary:hover { background: var(--navy); color: var(--white); }

/* ── CONTACT ── */
.contact-section {
  padding: 90px 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--gray);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--gray2);
  transition: var(--transition);
}
.contact-card:hover { border-color: var(--orange); }
.contact-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}
.contact-card h4 { font-size: 0.85rem; font-weight: 600; color: var(--gray3); margin-bottom: 3px; }
.contact-card a { font-size: 1rem; font-weight: 700; color: var(--navy); }
.contact-card a:hover { color: var(--orange); }
.contact-card span { font-size: 0.9rem; font-weight: 500; color: var(--navy); }
.contact-wa-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: linear-gradient(135deg, rgba(37,211,102,.08), rgba(18,140,126,.06));
  border: 1px solid rgba(37,211,102,.25);
  border-radius: var(--radius-md);
  padding: 20px;
}
.contact-wa-box > i {
  font-size: 2.4rem;
  color: #25D366;
  flex-shrink: 0;
  margin-top: 3px;
}
.contact-wa-box h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.contact-wa-box p { font-size: 0.84rem; color: var(--gray3); margin-bottom: 12px; }
.map-container { display: flex; flex-direction: column; gap: 10px; }
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.88rem;
}
.map-link:hover { text-decoration: underline; }

/* ── FOOTER ── */
.footer { background: var(--navy3); }
.footer-top { padding: 72px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,.58);
  line-height: 1.7;
  margin: 16px 0 20px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.75);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}
.footer-contact a:hover { color: var(--orange); }
.footer-links-group h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 18px;
}
.footer-links-group ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links-group ul a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.87rem;
  color: rgba(255,255,255,.58);
  transition: var(--transition);
}
.footer-links-group ul a i { font-size: 0.65rem; color: var(--orange); }
.footer-links-group ul a:hover { color: var(--orange); padding-left: 4px; }
.footer-map-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange3);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 0;
}
.footer-map-link a:hover { text-decoration: underline; }
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,107,0,.12);
  border: 1px solid rgba(255,107,0,.25);
  color: var(--orange3);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 12px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,.38);
}

/* ── STICKY BOTTOM BAR ── */
.sticky-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  height: 62px;
  background: var(--navy);
  box-shadow: 0 -4px 24px rgba(0,0,0,.25);
}
.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}
.sticky-btn i { font-size: 1.3rem; }
.sticky-call { background: linear-gradient(135deg, var(--orange), var(--orange2)); }
.sticky-call:hover { background: var(--orange3); }
.sticky-wa { background: linear-gradient(135deg, #25D366, #128C7E); }
.sticky-wa:hover { background: #1ebe5a; }
.sticky-divider { width: 1px; background: rgba(255,255,255,.2); align-self: stretch; margin: 10px 0; }

/* ── SCROLL TO TOP ── */
.scroll-top {
  position: fixed;
  bottom: 84px; right: 20px;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(255,107,0,.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 998;
  transition: var(--transition);
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(255,107,0,.5); }

/* ── ANIMATIONS ── */
.animate-fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp .7s ease forwards;
}
.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .3s; }
.delay-3 { animation-delay: .45s; }
.delay-4 { animation-delay: .6s; }
.delay-5 { animation-delay: .75s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  body { padding-bottom: 62px; }
  .top-bar-left { display: none; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-overlay { display: block; }
  .hero { min-height: 95vh; }
  .hero-content { padding: 100px 16px 60px; }
  .hero-stats { padding: 12px 16px; gap: 6px; }
  .stat-item { padding: 0 10px; }
  .stat-num { font-size: 1.2rem; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .advantages-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; align-items: center; }
  .process-step { max-width: 100%; width: 100%; }
  .process-arrow { transform: rotate(90deg); margin: 0; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-buttons { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .sticky-bottom-bar { display: flex; }
  .scroll-top { bottom: 74px; right: 14px; }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.5rem; }
  .hero-title { font-size: 1.75rem; }
  .top-bar-right { gap: 6px; }
  .top-bar-btn { padding: 4px 10px; font-size: 0.76rem; }
  .hero-trust { gap: 10px; }
  .stat-divider { display: block; height: 30px; opacity: .9; }
}
