/* ============================================================
   UĞUR KOMBİ SERVİSİ — Premium CSS Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300;0,14..32,400;0,14..32,500;0,14..32,600;0,14..32,700;0,14..32,800;0,14..32,900;1,14..32,400&display=swap');

/* ────────────────────────
   DESIGN TOKENS
──────────────────────── */
:root {
  /* Brand */
  --brand:          #F05A28;
  --brand-light:    #FF7A4D;
  --brand-dark:     #D14010;
  --brand-subtle:   rgba(240, 90, 40, 0.1);

  /* Navy */
  --navy:           #0F1F3D;
  --navy-mid:       #1A2F55;
  --navy-light:     #253D6E;

  /* Neutrals */
  --white:          #FFFFFF;
  --surface:        #F7F8FC;
  --border:         #E8ECF4;
  --muted:          #8896B3;
  --text:           #1A2035;
  --text-soft:      #4B5776;

  /* Utility */
  --gold:           #F5A623;
  --green:          #22C55E;
  --wa:             #25D366;
  --wa-dark:        #128C7E;
  --red:            #EF4444;

  /* Gradients */
  --g-brand:        linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  --g-navy:         linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  --g-dark:         linear-gradient(160deg, #080F1E 0%, #0F1F3D 50%, #152847 100%);
  --g-wa:           linear-gradient(135deg, var(--wa) 0%, var(--wa-dark) 100%);

  /* Shadows */
  --sh-xs:   0 2px 6px rgba(15,31,61,0.06);
  --sh-sm:   0 4px 16px rgba(15,31,61,0.1);
  --sh-md:   0 12px 40px rgba(15,31,61,0.14);
  --sh-lg:   0 24px 72px rgba(15,31,61,0.2);
  --sh-brand:0 8px 32px rgba(240,90,40,0.32);
  --sh-wa:   0 8px 32px rgba(37,211,102,0.32);

  /* Radius */
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-2xl: 40px;

  /* Motion */
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:  cubic-bezier(0, 0, 0.2, 1);
  --t:         0.28s var(--ease);
  --t-slow:    0.55s var(--ease);

  /* Layout */
  --max-w: 1180px;
}

/* ────────────────────────
   RESET
──────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body { font-family: 'Inter', system-ui, sans-serif; background: var(--white); color: var(--text); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ────────────────────────
   DESIGN SYSTEM HELPERS
──────────────────────── */
.gradient-text {
  background: var(--g-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--g-brand);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.18;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-soft);
  max-width: 540px;
  line-height: 1.75;
}

.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-desc { margin: 0 auto; }

/* ────────────────────────
   BUTTONS
──────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--r-2xl);
  font-size: 14px;
  font-weight: 650;
  transition: var(--t);
  white-space: nowrap;
  letter-spacing: 0.1px;
  cursor: pointer;
}

.btn-primary {
  background: var(--g-brand);
  color: var(--white);
  box-shadow: var(--sh-brand);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(240,90,40,0.42); }

.btn-wa {
  background: var(--g-wa);
  color: var(--white);
  box-shadow: var(--sh-wa);
}
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(37,211,102,0.45); }

.btn-white {
  background: var(--white);
  color: var(--brand);
  font-weight: 700;
}
.btn-white:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }

.btn-wa-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-wa-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); transform: translateY(-3px); }

.btn-full { width: 100%; justify-content: center; }

/* ────────────────────────
   TOP ANNOUNCEMENT BAR
──────────────────────── */
.topbar {
  background: var(--navy);
  padding: 10px 24px;
  overflow: hidden;
}
.topbar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  flex-wrap: wrap;
  justify-content: center;
}
.topbar-inner i { color: var(--brand); margin-right: 4px; }
.topbar-sep { color: rgba(255,255,255,0.2); }
.topbar-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--g-brand);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 12px;
  box-shadow: var(--sh-brand);
  transition: var(--t);
  margin-left: auto;
}
.topbar-cta:hover { transform: translateY(-1px); }

/* ────────────────────────
   NAVBAR
──────────────────────── */
.navbar {
  position: fixed;
  top: 36px; /* below topbar */
  left: 0; right: 0;
  z-index: 900;
  padding: 16px 0;
  transition: var(--t-slow);
}
.navbar.scrolled {
  top: 0;
  background: rgba(8, 15, 30, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), var(--sh-md);
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-mark {
  width: 42px; height: 42px;
  background: var(--g-brand);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 20px;
  box-shadow: var(--sh-brand);
  flex-shrink: 0;
}
.logo-texts { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { font-size: 18px; font-weight: 800; color: var(--white); letter-spacing: -0.5px; }
.logo-accent { color: var(--brand); }
.logo-tagline { font-size: 10px; font-weight: 500; color: rgba(255,255,255,0.45); letter-spacing: 0.5px; text-transform: uppercase; }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.nav-link {
  font-size: 13.5px;
  font-weight: 550;
  color: rgba(255,255,255,0.72);
  transition: var(--t);
  position: relative;
  padding-bottom: 3px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--g-brand);
  border-radius: 2px;
  transition: var(--t);
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* Actions */
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-wa {
  width: 38px; height: 38px;
  background: rgba(37,211,102,0.15);
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--wa); font-size: 17px;
  transition: var(--t);
}
.nav-wa:hover { background: var(--g-wa); color: var(--white); border-color: transparent; transform: translateY(-2px); }
.nav-cta {
  display: flex; align-items: center; gap: 8px;
  background: var(--g-brand);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 13px; font-weight: 700;
  box-shadow: var(--sh-brand);
  transition: var(--t);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(240,90,40,0.42); }
.nav-cta span { display: inline; }

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

/* ────────────────────────
   HERO
──────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 160px 24px 100px;
  max-width: 100%;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    rgba(8,15,30,0.93) 0%,
    rgba(15,31,61,0.85) 40%,
    rgba(15,31,61,0.55) 70%,
    rgba(15,31,61,0.3) 100%);
}
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 15% 60%, rgba(240,90,40,0.14) 0%, transparent 55%);
}

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

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  margin: 0 auto 0 calc((100vw - var(--max-w)) / 2 + 24px);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}
.eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--brand);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(240,90,40,0.5); }
  50% { box-shadow: 0 0 0 8px rgba(240,90,40,0); }
}

.hero-heading {
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-highlight {
  font-style: normal;
  background: var(--g-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.68);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.btn-primary.hero-phone-btn {
  padding: 12px 22px;
  gap: 14px;
}
.btn-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.18);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.btn-text { display: flex; flex-direction: column; line-height: 1.25; text-align: left; }
.btn-text small { font-size: 10px; font-weight: 500; opacity: 0.8; }
.btn-text strong { font-size: 16px; font-weight: 700; }

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border-radius: var(--r-lg);
  padding: 14px 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 550;
  color: rgba(255,255,255,0.8);
}
.trust-item i { color: var(--brand); font-size: 14px; }
.trust-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.15); }

/* Hero float cards */
.hero-float-cards {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-right: calc((100vw - var(--max-w)) / 2 + 24px);
  align-self: center;
}

.hero-float-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  border-radius: var(--r-lg);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 188px;
  transition-delay: var(--delay, 0s);
  animation: floatCard 5s ease-in-out infinite;
}
.hero-float-card:nth-child(2) { animation-delay: -1.6s; }
.hero-float-card:nth-child(3) { animation-delay: -3.2s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hfc-icon {
  width: 44px; height: 44px;
  background: var(--g-brand);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 18px;
  flex-shrink: 0;
  box-shadow: var(--sh-brand);
}
.hfc-body { display: flex; flex-direction: column; }
.hfc-body strong, .hfc-body .hfc-num { font-size: 26px; font-weight: 800; color: var(--white); line-height: 1; }
.hfc-body span { font-size: 18px; color: var(--brand); font-weight: 800; }
.hfc-body p { font-size: 11px; color: rgba(255,255,255,0.55); margin-top: 2px; }

.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.4; }
}
.hero-scroll span { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); }



/* ────────────────────────
   ABOUT
──────────────────────── */
.about { padding: 110px 0; }

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Visual side */
.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 420px;
}

.av-main {
  width: 320px; height: 320px;
  background: var(--g-dark);
  border-radius: 40px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: var(--sh-lg);
  border: 1px solid rgba(255,255,255,0.06);
  z-index: 2;
}

.av-glow {
  position: absolute;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(240,90,40,0.35) 0%, transparent 70%);
  border-radius: 50%;
}

.av-flame {
  font-size: 100px;
  background: var(--g-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
  animation: flamePulse 2.5s ease-in-out infinite;
  filter: drop-shadow(0 0 24px rgba(240,90,40,0.4));
}
@keyframes flamePulse {
  0%, 100% { transform: scale(1) translateY(0); }
  50% { transform: scale(1.06) translateY(-4px); }
}

.av-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(240,90,40,0.2);
  animation: ringExpand 4s ease-in-out infinite;
}
.av-ring-1 { width: 380px; height: 380px; animation-delay: 0s; }
.av-ring-2 { width: 440px; height: 440px; animation-delay: -2s; border-color: rgba(240,90,40,0.1); }
@keyframes ringExpand {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.04); opacity: 0.3; }
}

.av-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--sh-md);
  border: 1px solid var(--border);
  z-index: 3;
  animation: floatBadge 4s ease-in-out infinite;
}
.av-badge-1 { top: 20px; right: -10px; animation-delay: 0s; }
.av-badge-2 { bottom: 20px; left: -10px; animation-delay: -2s; }
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.av-badge i {
  font-size: 22px;
  color: var(--brand);
  width: 42px; height: 42px;
  background: var(--brand-subtle);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.av-badge strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); line-height: 1.2; }
.av-badge span { font-size: 11px; color: var(--muted); }

/* Content side */
.about-lead {
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 16px;
}
.about-body {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 36px;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--surface);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  transition: var(--t);
}
.pillar:hover { border-color: var(--brand); background: rgba(240,90,40,0.03); transform: translateY(-2px); }

.pillar-icon {
  width: 36px; height: 36px;
  background: var(--brand-subtle);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand); font-size: 15px;
  flex-shrink: 0;
  transition: var(--t);
}
.pillar:hover .pillar-icon { background: var(--brand); color: var(--white); }

.pillar-body strong { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.pillar-body p { font-size: 12px; color: var(--muted); line-height: 1.4; }

/* ────────────────────────
   SERVICES
──────────────────────── */
.services {
  padding: 110px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(240,90,40,0.1) 0%, transparent 65%);
  top: -200px; right: -200px;
  pointer-events: none;
}
.services .section-title { color: var(--white); }
.services .section-desc { color: rgba(255,255,255,0.6); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 960px;
  margin-inline: auto;
}

.srv {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  padding: 36px 30px;
  transition: var(--t-slow);
  overflow: hidden;
  transition-delay: var(--d, 0s);
}
.srv::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--g-brand);
  opacity: 0;
  transition: var(--t);
  border-radius: inherit;
}
.srv:hover { border-color: rgba(240,90,40,0.3); transform: translateY(-6px); box-shadow: 0 20px 64px rgba(0,0,0,0.4); }

.srv-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--brand);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.srv-icon {
  width: 52px; height: 52px;
  background: var(--brand-subtle);
  border: 1px solid rgba(240,90,40,0.2);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand); font-size: 22px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: var(--t);
}
.srv:hover .srv-icon { background: var(--brand); color: var(--white); border-color: transparent; box-shadow: var(--sh-brand); }

.srv h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.srv p {
  font-size: 13px;
  color: rgba(255,255,255,0.58);
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.srv-list {
  display: flex; flex-direction: column; gap: 7px;
  margin-bottom: 28px;
  position: relative; z-index: 1;
}
.srv-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
}
.srv-list li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--brand);
  border-radius: 50%;
  flex-shrink: 0;
}

.srv-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-light);
  transition: var(--t);
  position: relative;
  z-index: 1;
}
.srv-link:hover { gap: 10px; }

.srv-bg-icon {
  position: absolute;
  bottom: -16px; right: -16px;
  font-size: 100px;
  color: rgba(255,255,255,0.02);
  pointer-events: none;
  z-index: 0;
}

.srv--accent {
  background: var(--g-brand);
  border-color: rgba(240,90,40,0.3);
}
.srv--accent:hover { transform: translateY(-6px); border-color: rgba(240,90,40,0.5); }
.srv--accent .srv-icon { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.25); color: var(--white); }
.srv--accent:hover .srv-icon { background: rgba(255,255,255,0.3); }
.srv--accent .srv-num { color: rgba(255,255,255,0.7); }
.srv--accent p { color: rgba(255,255,255,0.78); }
.srv--accent .srv-list li { color: rgba(255,255,255,0.75); }
.srv--accent .srv-link { color: var(--white); }
.srv--accent .srv-bg-icon { color: rgba(255,255,255,0.05); }

/* Wide (full-width) acil servis kartı */
.srv--wide {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px 44px;
}
.srv-wide-left {
  flex: 1;
  min-width: 0;
}
.srv-wide-right {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}
.srv-wide-cta {
  white-space: nowrap;
  font-size: 15px;
  padding: 14px 28px;
  background: rgba(255,255,255,0.15) !important;
  border: 1.5px solid rgba(255,255,255,0.35) !important;
  color: #fff !important;
  backdrop-filter: blur(8px);
}
.srv-wide-cta:hover {
  background: rgba(255,255,255,0.25) !important;
  transform: translateY(-2px);
}
.srv--wide .srv-list { gap: 10px; }
.srv--wide .srv-list li { color: rgba(255,255,255,0.85); font-size: 15px; }
@media (max-width: 640px) {
  .srv--wide { flex-direction: column; align-items: flex-start; gap: 20px; padding: 28px 24px; }
  .srv-wide-right { align-items: flex-start; width: 100%; }
  .srv-wide-cta { width: 100%; justify-content: center; }
}


/* ────────────────────────
   PROCESS
──────────────────────── */
.process { padding: 110px 0; background: var(--surface); }

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-line {
  position: absolute;
  top: 36px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 1px;
  background: linear-gradient(to right, var(--brand) 0%, transparent 100%);
  background: repeating-linear-gradient(to right, var(--brand), var(--brand) 8px, transparent 8px, transparent 16px);
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  transition-delay: var(--d, 0s);
}

.ps-num {
  width: 72px; height: 72px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: var(--t);
}
.process-step:hover .ps-num {
  background: var(--g-brand);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--sh-brand);
}

.ps-icon {
  font-size: 20px;
  color: var(--brand);
  margin-bottom: 14px;
  transition: var(--t);
}
.process-step:hover .ps-icon { transform: scale(1.2); }

.process-step h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ────────────────────────
   STATS SECTION
──────────────────────── */
.stats-section {
  background: var(--g-dark);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(240,90,40,0.1) 0%, transparent 60%);
  top: -200px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.stats-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03) 50%, transparent);
  pointer-events: none;
}

.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition-delay: var(--d, 0s);
}
.stat-block:last-child { border-right: none; }

.stat-icon {
  width: 48px; height: 48px;
  background: var(--brand-subtle);
  border: 1px solid rgba(240,90,40,0.2);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand); font-size: 20px;
  margin-bottom: 14px;
}

.stat-val {
  font-size: 40px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -1px;
}
.stat-val span { font-size: 20px; color: var(--brand); font-weight: 700; }
.stat-val .count { display: inline; }

.stat-block p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* ────────────────────────
   REVIEWS
──────────────────────── */
.reviews { padding: 110px 0; }

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

.review {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: var(--t-slow);
  transition-delay: var(--d, 0s);
}
.review:hover { border-color: rgba(240,90,40,0.25); box-shadow: var(--sh-md); transform: translateY(-4px); }

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.review-avatar {
  width: 44px; height: 44px;
  background: var(--g-brand);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--white);
  flex-shrink: 0;
  box-shadow: var(--sh-brand);
}
.review-header strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); }
.review-header span { font-size: 12px; color: var(--muted); }
.review-rating { margin-left: auto; color: var(--gold); font-size: 14px; letter-spacing: 1px; }

.review p {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 18px;
  font-style: italic;
}
.review p::before { content: '\201C'; color: var(--brand); font-size: 20px; font-style: normal; }
.review p::after { content: '\201D'; color: var(--brand); font-size: 20px; font-style: normal; }

.review-service {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-subtle);
  color: var(--brand);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  border: 1px solid rgba(240,90,40,0.15);
}
.review-service i { font-size: 10px; }

/* ────────────────────────
   CTA BANNER
──────────────────────── */
.cta-banner {
  position: relative;
  padding: 72px 0;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background: var(--g-brand);
}
.cta-banner-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-banner-text h2 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}
.cta-banner-text p { font-size: 15px; color: rgba(255,255,255,0.8); }
.cta-banner-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ────────────────────────
   CONTACT
──────────────────────── */
.contact { padding: 110px 0; background: var(--surface); }

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

.contact-desc {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-methods { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }

.cm {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px 18px;
  transition: var(--t);
  cursor: pointer;
}
.cm:hover { border-color: var(--brand); transform: translateX(4px); box-shadow: var(--sh-sm); }
.cm--nolink { cursor: default; }
.cm--nolink:hover { transform: none; }

.cm-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; flex-shrink: 0;
  transition: var(--t);
}
.cm-icon--orange { background: var(--brand-subtle); color: var(--brand); }
.cm-icon--wa { background: rgba(37,211,102,0.1); color: var(--wa); }
.cm-icon--mail { background: rgba(15,31,61,0.06); color: var(--navy); }
.cm-icon--loc { background: rgba(239,68,68,0.08); color: var(--red); }
.cm-icon--insta { background: rgba(225,48,108,0.1); color: #E1306C; }
.cm:hover .cm-icon--insta { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: var(--white); }
.cm:hover .cm-icon--orange { background: var(--brand); color: var(--white); }
.cm:hover .cm-icon--wa { background: var(--wa); color: var(--white); }

.cm-body { flex: 1; }
.cm-body strong { display: block; font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.cm-body span { font-size: 14px; font-weight: 600; color: var(--navy); }
.cm-arr { color: var(--muted); font-size: 12px; transition: var(--t); }
.cm:hover .cm-arr { color: var(--brand); transform: translateX(3px); }

/* Working hours */
.contact-hours {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.ch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.ch-row:last-child { border-bottom: none; }
.ch-row span { color: var(--text-soft); }
.ch-row strong { font-weight: 700; color: var(--navy); }
.ch-row--accent { background: var(--brand-subtle); }
.ch-row--accent span { color: var(--brand); font-weight: 600; }
.ch-row--accent strong { color: var(--brand-dark); }
.ch-row--accent i { margin-right: 6px; }

/* Form card */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-md);
}
.cfc-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 32px;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cfc-header i { font-size: 22px; color: var(--brand); }
.cfc-header h3 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.cfc-header p { font-size: 12px; color: rgba(255,255,255,0.5); }

.cform { padding: 32px; }

.cform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.cform-group { margin-bottom: 18px; }
.cform-group label {
  display: block;
  font-size: 12px; font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.optional { font-weight: 400; color: var(--muted); text-transform: none; letter-spacing: 0; }

.cform-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.cform-input-wrap i {
  position: absolute;
  left: 14px;
  color: var(--muted);
  font-size: 14px;
  pointer-events: none;
  transition: var(--t);
}
.cform-input-wrap input,
.cform-input-wrap select,
.cform-input-wrap textarea {
  width: 100%;
  padding: 13px 14px 13px 40px;
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  font-size: 14px;
  color: var(--text);
  background: var(--surface);
  outline: none;
  transition: var(--t);
  appearance: auto;
}
.cform-input-wrap input:focus,
.cform-input-wrap select:focus,
.cform-input-wrap textarea:focus {
  border-color: var(--brand);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(240,90,40,0.08);
}
.cform-input-wrap:focus-within i { color: var(--brand); }

.cform-input-wrap--ta { align-items: flex-start; }
.cform-input-wrap--ta i { top: 14px; position: absolute; }
.cform-input-wrap--ta textarea { resize: vertical; min-height: 100px; }

.cform-input-wrap input.err,
.cform-input-wrap select.err { border-color: var(--red); }
.cform-err { display: block; font-size: 11px; color: var(--red); margin-top: 4px; min-height: 16px; }

.cform-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.cform-note i { font-size: 10px; }

/* Form success */
.cform-success {
  display: none;
  text-align: center;
  padding: 64px 32px;
}
.cfs-icon { font-size: 64px; color: var(--wa); margin-bottom: 18px; display: block; animation: popIn 0.5s var(--ease-out); }
.cform-success h4 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.cform-success p { font-size: 15px; color: var(--text-soft); line-height: 1.6; }
.cform-success.show { display: block; animation: fadeUp 0.5s var(--ease); }
.cfs-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
.btn-outline { background: transparent; border: 2px solid var(--border-strong, #CBD5E1); color: var(--navy-mid); border-radius: var(--r-btn); padding: 12px 24px; font-size: 14px; font-weight: 700; cursor: pointer; display: inline-flex; align-items: center; gap: 8px; transition: var(--t); }
.btn-outline:hover { border-color: var(--brand); color: var(--brand); background: rgba(240,90,40,0.05); }

@keyframes popIn { from { transform: scale(0.4); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ────────────────────────
   FOOTER
──────────────────────── */
.footer { background: var(--navy); }

.footer-top { padding: 80px 0 56px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-brand .footer-logo { display: flex; margin-bottom: 20px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 24px; }

.footer-socials { display: flex; gap: 10px; }
.fsoc {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: rgba(255,255,255,0.6);
  transition: var(--t);
}
.fsoc:hover { background: var(--brand); color: var(--white); border-color: transparent; transform: translateY(-3px); box-shadow: var(--sh-brand); }
.fsoc--wa:hover { background: var(--wa); box-shadow: var(--sh-wa); }
.fsoc--phone:hover { background: var(--brand); box-shadow: var(--sh-brand); }

.footer-col h5 {
  font-size: 12px; font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 22px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: var(--t);
  display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a::before { content: '→'; font-size: 12px; opacity: 0; transform: translateX(-4px); transition: var(--t); }
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-col ul li a:hover::before { opacity: 0.6; transform: translateX(0); }

.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,0.5);
}
.footer-contact-list li i { color: var(--brand); width: 14px; }
.footer-contact-list a { color: rgba(255,255,255,0.5); transition: var(--t); }
.footer-contact-list a:hover { color: var(--brand); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 8px;
}

/* ────────────────────────
   FLOATING WHATSAPP
──────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: var(--g-wa);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--white);
  z-index: 999;
  box-shadow: var(--sh-wa);
  transition: var(--t);
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 16px 48px rgba(37,211,102,0.55); }

.wa-float-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--wa);
  animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}

.wa-tooltip {
  position: absolute;
  right: 68px;
  background: var(--navy);
  color: var(--white);
  font-size: 12px; font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--t);
  box-shadow: var(--sh-sm);
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -5px; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right: none;
  border-left-color: var(--navy);
}
.wa-float:hover .wa-tooltip { opacity: 1; right: 74px; }

/* ────────────────────────
   ANIMATIONS
──────────────────────── */
.particle {
  position: absolute;
  border-radius: 50%;
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0% { transform: translateY(110vh) rotate(0deg); opacity: 0; }
  5% { opacity: var(--op, 0.12); }
  95% { opacity: var(--op, 0.12); }
  100% { transform: translateY(-20px) rotate(360deg); opacity: 0; }
}

/* Scroll reveal */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal-up { transform: translateY(36px); }
.reveal-left { transform: translateX(-44px); }
.reveal-right { transform: translateX(44px); }

.reveal-up.vis, .reveal-left.vis, .reveal-right.vis {
  opacity: 1;
  transform: translate(0, 0);
}

/* Staggered children */
.srv.reveal-up,
.review.reveal-up,
.hero-float-card.reveal-up,
.process-step.reveal-up,
.stat-block.reveal-up {
  transition-delay: var(--d, 0s);
}

/* ────────────────────────
   RESPONSIVE
──────────────────────── */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero-content { margin: 0 auto; }
  .hero-float-cards { display: none; }
  .about-layout { grid-template-columns: 1fr; gap: 56px; }
  .about-visual { height: 280px; }
  .av-ring-1 { width: 280px; height: 280px; }
  .av-ring-2 { width: 340px; height: 340px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .process-track { grid-template-columns: repeat(2, 1fr); }
  .process-line { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-block { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .stat-block:nth-child(2n) { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Topbar */
  .topbar-sep { display: none; }
  .topbar-inner { gap: 12px; font-size: 11px; }

  /* Navbar */
  .navbar { top: 0; }
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(8,15,30,0.97);
    backdrop-filter: blur(24px);
    padding: 20px 24px 28px;
    border-top: 1px solid rgba(255,255,255,0.07);
    box-shadow: var(--sh-lg);
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 12px 0; font-size: 15px; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-link::after { display: none; }
  .nav-cta span { display: none; }
  .hamburger { display: flex; }
  .nav-actions { gap: 8px; }

  /* Hero */
  .hero { padding: 110px 24px 80px; }
  .hero-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; padding: 14px; }
  .trust-divider { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; max-width: 340px; }

  /* General */
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .cform-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .cta-banner-inner { flex-direction: column; text-align: center; }
  .cta-banner-actions { justify-content: center; }

  /* Topbar on mobile */
  .topbar { display: none; }

  .wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 22px; }
}

@media (max-width: 500px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: 1fr; }
  .section-title { font-size: 24px; }
}

/* ────────────────────────
   NAVBAR LOGO IMAGE
──────────────────────── */
.nav-logo-img {
  height: 52px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  filter: brightness(1);
  transition: opacity 0.3s ease;
}
.nav-logo-img:hover { opacity: 0.85; }
.navbar.scrolled .nav-logo-img { height: 44px; }

/* ────────────────────────
   GALERİ SECTION
──────────────────────── */
.galeri-section { padding: var(--section-gap) 0; background: var(--bg); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}
@media (max-width: 640px) { .gallery-grid { grid-template-columns: 1fr; } }

.gal-item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--sh-md);
}
.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.gal-item:hover img { transform: scale(1.07); }

.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,31,61,0.85) 0%, rgba(15,31,61,0.1) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gal-item:hover .gal-overlay { opacity: 1; }

.gal-info {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}
.gal-info i { color: var(--brand); font-size: 16px; }

.gal-zoom {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.gal-zoom:hover { background: var(--brand); }

.gallery-cta { text-align: center; margin-top: 40px; }
.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 10px;
  border: 2px solid var(--navy-mid);
  color: var(--navy-mid);
  border-radius: var(--r-btn);
  padding: 14px 32px;
  font-size: 15px; font-weight: 700;
  text-decoration: none;
  transition: var(--t);
  background: transparent;
}
.btn-outline-dark:hover {
  background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366);
  border-color: transparent;
  color: var(--white);
}

/* ────────────────────────
   LIGHTBOX
──────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.94);
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.25s ease;
}
.lightbox.open { display: flex; }
.lb-img-wrap {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
}
.lb-img-wrap img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: var(--r-lg);
  object-fit: contain;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6);
}
.lb-caption {
  position: absolute;
  bottom: -44px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.lb-close, .lb-prev, .lb-next {
  position: fixed;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  cursor: pointer;
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: background 0.2s;
  backdrop-filter: blur(8px);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--brand); }
.lb-close { top: 24px; right: 24px; font-size: 22px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ────────────────────────
   TERMOSTAT SHOWCASE
──────────────────────── */
.thermo-section {
  padding: var(--section-gap) 0;
  background: linear-gradient(135deg, #0F1F3D 0%, #1A2F55 100%);
}
.thermo-section .section-label { color: rgba(255,255,255,0.5); }
.thermo-section .section-title { color: var(--white); }
.thermo-section .section-desc { color: rgba(255,255,255,0.65); }

.thermo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
@media (max-width: 768px) { .thermo-grid { grid-template-columns: 1fr; } }

.thermo-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  backdrop-filter: blur(8px);
}
.thermo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.thermo-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.thermo-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.thermo-card:hover .thermo-img-wrap img { transform: scale(1.04); }

.thermo-body { padding: 32px; }

.thermo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(240,90,40,0.15);
  color: var(--brand);
  border: 1px solid rgba(240,90,40,0.3);
  border-radius: 40px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}
.thermo-badge--wifi {
  background: rgba(37,211,102,0.12);
  color: var(--wa);
  border-color: rgba(37,211,102,0.25);
}

.thermo-body h3 {
  font-size: 24px; font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.thermo-body > p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 20px;
}

.thermo-features {
  list-style: none;
  padding: 0; margin: 0 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.thermo-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}
.thermo-features li i { color: var(--wa); font-size: 12px; }

/* ────────────────────────
   FOOTER BOTTOM — NEDDEM IT
──────────────────────── */
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom-left p { margin: 2px 0; }
.neddem-credit {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.3px;
  transition: color 0.3s;
}
.neddem-credit strong {
  color: rgba(255,255,255,0.6);
  font-weight: 700;
  letter-spacing: 1px;
}
.neddem-credit:hover { color: rgba(255,255,255,0.6); }

/* ────────────────────────
   ABOUT — LOGO VISUAL
──────────────────────── */
.av-main--logo {
  width: 100%;
  max-width: 420px;
  aspect-ratio: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.06);
  background: #0d1a35;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.av-logo-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.av-main--logo:hover .av-logo-img {
  transform: scale(1.03);
}

/* ────────────────────────
   NAV LOGO IMAGE — Generated PNG
──────────────────────── */
.nav-logo-img {
  height: 50px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  display: block;
  border-radius: 8px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.nav-logo-img:hover {
  opacity: 0.88;
  transform: scale(1.02);
}
.navbar.scrolled .nav-logo-img { height: 42px; }

/* nav logo override — bigger */
.nav-logo-img {
  height: 72px !important;
  max-width: 280px;
}
.navbar.scrolled .nav-logo-img { height: 58px !important; }

/* navbar height override for bigger logo */
.navbar { min-height: 80px; }
.nav-container { padding-top: 8px; padding-bottom: 8px; }

/* logo daha büyük */
.nav-logo-img {
  height: 90px !important;
  max-width: 320px;
}
.navbar.scrolled .nav-logo-img { height: 72px !important; }

/* navbar sticky değil, sayfayla kaybolsun */
.navbar {
  position: relative !important;
  top: auto !important;
}

/* navbar fixed/sticky geri */
.navbar {
  position: fixed !important;
  top: 0 !important;
}

/* ────────────────────────
   NAVBAR — YENİDEN TASARIM
   İki satırlı: ince bilgi şeridi + ana nav
──────────────────────── */
.navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0; right: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  background: rgba(10, 22, 50, 0.97) !important;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 2px 32px rgba(0,0,0,0.3);
}

/* Slim info strip */
.nav-strip {
  background: rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 6px 0;
  font-size: 11.5px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.3px;
}
.nav-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.nav-strip-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.nav-strip-left span { display: flex; align-items: center; gap: 5px; }
.nav-strip-left i { color: var(--brand); font-size: 10px; }
.nav-strip-right a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 11.5px;
  display: flex; align-items: center; gap: 5px;
  transition: color 0.2s;
}
.nav-strip-right a:hover { color: #e1306c; }
.nav-strip-right i { font-size: 13px; }
.topbar-sep { opacity: 0.25; }

/* Navbar body paddingi güncelle */
body { padding-top: 0 !important; }

/* ──────────────────────────────
   UGUR TEKNİK LOGO — navbar & about
────────────────────────────── */
.nav-logo-img {
  height: 68px !important;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  border-radius: 10px;
  display: block;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.nav-logo-img:hover { opacity: 0.9; transform: scale(1.02); }
.navbar.scrolled .nav-logo-img { height: 54px !important; }

/* ──────────────────────────────
   LOGO IMAGE — Navbar & Footer oranlı
────────────────────────────── */

/* Navbar logosu */
.nav-logo-img {
  height: 80px !important;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  border-radius: 10px;
  display: block;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.nav-logo-img:hover { opacity: 0.88; transform: scale(1.02); }
.navbar.scrolled .nav-logo-img { height: 64px !important; }

/* Navbar yüksekliği logoya uygun */
.navbar { min-height: 0 !important; }
.nav-container { padding-top: 6px !important; padding-bottom: 6px !important; }

/* Footer logosu */
.footer-logo-link { display: inline-block; margin-bottom: 16px; }
.footer-logo-img {
  height: 80px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  border-radius: 10px;
  display: block;
  transition: opacity 0.3s ease;
}
.footer-logo-img:hover { opacity: 0.85; }

/* =====================================================
   KAPSAMLI RESPONSIVE — Mobile · Tablet · iOS · Android
   Breakpoints:
     480px  → küçük telefon (iPhone SE vb.)
     640px  → büyük telefon
     768px  → tablet dikey
     1024px → tablet yatay / küçük laptop
   ===================================================== */

/* ── Tüm boyutlarda düzgün box model ── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
img  { max-width: 100%; height: auto; }

/* ══════════════════════════════════════
   ≤ 1024px  — Tablet yatay
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .hero { padding: 130px 28px 80px; }
  .hero-title { font-size: clamp(28px, 5vw, 52px); }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .brands-track { gap: 28px; }
  .thermo-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ══════════════════════════════════════
   ≤ 768px  — Tablet dikey / büyük tel.
══════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --section-gap: 64px; }
  .container { padding: 0 20px; }

  /* — Navbar — */
  .nav-strip { display: none; }
  .nav-container { padding: 8px 20px !important; }
  .nav-logo-img { height: 56px !important; max-width: 200px; }
  .navbar.scrolled .nav-logo-img { height: 46px !important; }

  /* Mobil menü — tam ekran overlay */
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(7, 14, 32, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding: 80px 32px 32px;
    z-index: 998;
    display: none;
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }

  /* Linklerin görünümü */
  .nav-links li { width: 100%; max-width: 320px; }
  .nav-link {
    font-size: 18px;
    font-weight: 600;
    padding: 14px 0;
    width: 100%;
    text-align: center;
    display: block;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    letter-spacing: 0.2px;
    color: rgba(255,255,255,0.9);
    transition: color 0.2s;
  }
  .nav-link:hover, .nav-link:active { color: var(--brand); }
  .nav-links li:last-child .nav-link { border-bottom: none; }
  .nav-link::after { display: none; }

  /* Aksiyonlar */
  .nav-cta span { display: none; }
  .nav-actions { gap: 8px; }

  /* Hamburger */
  .hamburger {
    display: flex;
    z-index: 1000;
    position: relative;
  }
  .hamburger.open {
    position: fixed;
    top: 18px;
    right: 20px;
  }


  /* — Hero — */
  .hero {
    padding: 100px 20px 64px;
    min-height: auto;
    text-align: center;
  }
  .hero-eyebrow { justify-content: center; }
  .hero-title { font-size: clamp(26px, 7vw, 42px); }
  .hero-sub { font-size: 15px; }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .hero-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .trust-divider { display: none; }
  .hero-float-cards { display: none; }

  /* — Hakkımızda — */
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-left { order: -1; }
  .about-visual { height: auto; min-height: 260px; }
  .av-main--logo { max-width: 100%; }
  .av-badge { display: none; }
  .about-pillars { grid-template-columns: 1fr 1fr; }

  /* — Stats — */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-block { border-right: none; padding: 24px 16px; }

  /* — Hizmetler — */
  .services-grid { grid-template-columns: 1fr; gap: 16px; max-width: 480px; margin-inline: auto; }
  .section-title { font-size: clamp(22px, 5vw, 36px); }

  /* — Süreç — */
  .process-track { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .process-line { display: none; }

  /* — Galeri — */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* — Termostat — */
  .thermo-grid { grid-template-columns: 1fr; gap: 20px; }
  .thermo-features { grid-template-columns: 1fr; }

  /* — Yorumlar — */
  .reviews-grid { grid-template-columns: 1fr; }

  /* — CTA Banner — */
  .cta-banner-inner { flex-direction: column; text-align: center; gap: 24px; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .cta-banner-actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* — İletişim — */
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
  .cform-row { grid-template-columns: 1fr; }

  /* — Footer — */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-logo-img { height: 64px !important; }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  /* — Lightbox — */
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lb-close { top: 16px; right: 16px; }

  /* — WhatsApp float — */
  .wa-float { bottom: 20px; right: 16px; width: 52px; height: 52px; font-size: 22px; }
}

/* ══════════════════════════════════════
   ≤ 640px  — Telefon büyük
══════════════════════════════════════ */
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .hero-trust { grid-template-columns: 1fr; }
  .nav-logo-img { height: 48px !important; max-width: 170px; }
  .thermo-body { padding: 20px; }
  .thermo-body h3 { font-size: 20px; }
  .footer-brand p { font-size: 14px; }
}

/* ══════════════════════════════════════
   ≤ 480px  — Küçük telefon (iPhone SE)
══════════════════════════════════════ */
@media (max-width: 480px) {
  :root { --section-gap: 52px; }
  .container { padding: 0 16px; }

  .nav-container { padding: 6px 16px !important; }
  .nav-logo-img { height: 44px !important; max-width: 160px; }

  .hero { padding: 90px 16px 56px; }
  .hero-title { font-size: clamp(22px, 8vw, 32px); }
  .hero-badge { font-size: 11px; padding: 5px 12px; }

  .section-title { font-size: 20px; }
  .section-desc { font-size: 14px; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 32px; }

  .process-track { grid-template-columns: 1fr; }
  .process-step { padding: 20px; }

  .review { padding: 20px; }

  .srv { padding: 24px; }
  .srv h3 { font-size: 18px; }

  .cta-banner { padding: 48px 16px; }
  .cta-banner h2 { font-size: 22px; }

  .contact-info-card { padding: 20px; }
  .cform-wrap { padding: 20px; }

  .footer-brand { text-align: center; }
  .footer-logo-img { height: 56px !important; margin: 0 auto; }
  .footer-socials { justify-content: center; }
  .footer-col h5 { font-size: 13px; }

  .lb-prev, .lb-next { width: 38px; height: 38px; font-size: 14px; }
}

/* ══════════════════════════════════════
   iOS Safe Area (iPhone notch/home bar)
══════════════════════════════════════ */
@supports (padding: env(safe-area-inset-bottom)) {
  .wa-float {
    bottom: calc(20px + env(safe-area-inset-bottom));
    right: 16px;
  }
  .navbar {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
  body {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
}

/* ══════════════════════════════════════
   Touch cihazlar — hover efektleri kapat
══════════════════════════════════════ */
@media (hover: none) and (pointer: coarse) {
  .gal-overlay { opacity: 0; }
  .gal-item:active .gal-overlay { opacity: 1; }
  .nav-link::after { display: none; }
  .srv:hover { transform: none; }
  .review:hover { transform: none; }
  .thermo-card:hover { transform: none; }
  .btn:hover { transform: none; }
}
