/* Diyarbakır Teknik Servis - Design System */

:root {
  --navy: #0B1F3A;
  --navy-2: #102a4d;
  --blue: #0A4DBF;
  --blue-2: #1e63d6;
  --blue-soft: #e8f0ff;
  --orange: #FF7A00;
  --orange-2: #ff9133;
  --white: #ffffff;
  --gray-50: #f7f9fc;
  --gray-100: #eef2f7;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --shadow-sm: 0 1px 2px rgba(11,31,58,.06), 0 1px 3px rgba(11,31,58,.04);
  --shadow-md: 0 4px 16px rgba(11,31,58,.08), 0 2px 4px rgba(11,31,58,.04);
  --shadow-lg: 0 16px 48px rgba(11,31,58,.12), 0 4px 12px rgba(11,31,58,.06);
  --shadow-orange: 0 8px 24px rgba(255,122,0,.28);
  --shadow-blue: 0 8px 24px rgba(10,77,191,.28);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

* { box-sizing: border-box; }

body, html {
  margin: 0;
  padding: 0;
  font-family: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* === SITE WRAPPER === */
.site {
  width: 1280px;
  max-width: 100%;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* === HEADER === */
.header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 8px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(11,31,58,.55) 0%, rgba(11,31,58,0) 100%);
  backdrop-filter: blur(8px);
  transition: all .3s;
}
.header.sticky-mode {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}
.brand-mark {
  width: 100px; height: 100px;
  border-radius: 0;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  box-shadow: none;
  position: relative;
}
.brand-mark img { width: 100px; height: 100px; object-fit: contain; }
.brand-text { line-height: 1.05; }
.brand-text .b1 { font-weight: 800; font-size: 17px; letter-spacing: -.01em; }
.brand-text .b2 { font-size: 11px; opacity: .75; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.header.sticky-mode .brand { color: var(--navy); }
.header.sticky-mode .brand-text .b2 { color: var(--gray-500); }

.nav {
  display: flex; align-items: center; gap: 4px;
}
.nav a {
  color: rgba(255,255,255,.92);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 10px;
  position: relative;
  display: flex; align-items: center; gap: 4px;
  transition: all .2s;
}
.nav a:hover { background: rgba(255,255,255,.1); color: var(--white); }
.header.sticky-mode .nav a { color: var(--gray-700); }
.header.sticky-mode .nav a:hover { background: var(--gray-100); color: var(--navy); }

.nav-dropdown { position: relative; }
.nav-dropdown:hover .dropdown-menu { opacity: 1; transform: translateY(0); pointer-events: auto; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translate(-50%, -8px);
  background: var(--white);
  min-width: 240px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: all .2s;
  border: 1px solid var(--gray-100);
}
.dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  color: var(--gray-700) !important;
  padding: 10px 12px;
  font-size: 13.5px;
  font-weight: 500;
  border-radius: 8px;
}
.dropdown-menu a:hover { background: var(--blue-soft) !important; color: var(--blue) !important; }
.dropdown-menu a .di { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); flex: 0 0 auto; }

.header-cta {
  display: flex; gap: 10px; align-items: center;
}
.btn-phone, .btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  font-weight: 700;
  font-size: 13.5px;
  border-radius: 999px;
  text-decoration: none;
  transition: all .2s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-phone {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.25);
}
.btn-phone:hover { background: rgba(255,255,255,.2); transform: translateY(-1px); }
.header.sticky-mode .btn-phone { background: var(--gray-100); color: var(--navy); border-color: var(--gray-200); }
.btn-wa {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 6px 18px rgba(37,211,102,.35);
}
.btn-wa:hover { background: #1eb858; transform: translateY(-1px); box-shadow: 0 10px 24px rgba(37,211,102,.42); }

/* === HERO === */
.hero {
  position: relative;
  height: 720px;
  overflow: hidden;
  background: var(--navy);
}
.hero-slide {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity .8s ease;
}
.hero-slide.active { opacity: 1; }

.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0B1F3A 0%, #0A4DBF 100%);
}
.hero-bg.bg-1 { background: linear-gradient(135deg, #061226 0%, #0B1F3A 50%, #0A4DBF 100%); }
.hero-bg.bg-2 { background: linear-gradient(135deg, #0A4DBF 0%, #0B1F3A 60%, #061226 100%); }
.hero-bg.bg-3 { background: linear-gradient(135deg, #0B1F3A 0%, #1a3a6b 50%, #0A4DBF 100%); }

/* decorative circuit / pattern overlay */
.hero-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,122,0,.18) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(10,77,191,.4) 0%, transparent 50%);
  opacity: .9;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  width: 100%;
  padding: 0 56px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: rgba(255,122,0,.15);
  border: 1px solid rgba(255,122,0,.4);
  border-radius: 999px;
  color: var(--orange-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-eyebrow .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,122,0,.3);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(255,122,0,.3); }
  50% { box-shadow: 0 0 0 8px rgba(255,122,0,0); }
}
.hero h1 {
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -.025em;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 20px;
  text-wrap: balance;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--orange) 0%, #ffb070 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,.85);
  margin: 0 0 32px;
  max-width: 540px;
  text-wrap: pretty;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary, .btn-ghost, .btn-orange, .btn-wa-lg {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 14px;
  text-decoration: none;
  transition: all .25s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-orange {
  background: linear-gradient(135deg, var(--orange) 0%, #ff9133 100%);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}
.btn-orange:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(255,122,0,.4); }
.btn-wa-lg {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
}
.btn-wa-lg:hover { transform: translateY(-2px); background: #1eb858; }
.btn-ghost {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.18); }

.hero-meta {
  display: flex; gap: 24px; margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-meta .m {
  color: rgba(255,255,255,.85);
  font-size: 13px;
  display: flex; align-items: center; gap: 8px;
}
.hero-meta .m .check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,122,0,.2);
  display: flex; align-items: center; justify-content: center;
}

/* hero visual */
.hero-visual {
  position: relative;
  height: 540px;
}
.hero-card-stack {
  position: absolute;
  inset: 0;
}
.tech-photo {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.tech-photo.main {
  inset: 20px 40px 80px 0;
  background:
    linear-gradient(180deg, rgba(11,31,58,0) 50%, rgba(11,31,58,.7) 100%),
    repeating-linear-gradient(45deg, #1a3a6b 0 12px, #234781 12px 24px);
}
.tech-photo.main::after {
  content: "TEKNİSYEN FOTOĞRAFI";
  position: absolute; bottom: 20px; left: 24px;
  color: rgba(255,255,255,.55);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .12em;
}

.float-card {
  position: absolute;
  background: var(--white);
  padding: 16px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
}
.float-card .ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.float-card .v1 { font-size: 12px; color: var(--gray-500); font-weight: 600; }
.float-card .v2 { font-size: 18px; color: var(--navy); font-weight: 800; letter-spacing: -.01em; }

.float-card.fc-1 { top: 80px; right: -10px; animation: float 6s ease-in-out infinite; }
.float-card.fc-2 { bottom: 110px; left: -20px; animation: float 6s ease-in-out infinite .5s; }
.float-card.fc-3 { bottom: 30px; right: 20px; animation: float 6s ease-in-out infinite 1s; }

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

/* hero pagination */
.hero-pager {
  position: absolute;
  bottom: 40px;
  left: 56px;
  z-index: 3;
  display: flex; gap: 8px; align-items: center;
}
.hero-pager button {
  width: 40px; height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all .3s;
}
.hero-pager button.active {
  background: var(--orange);
  width: 60px;
}
.hero-arrows {
  position: absolute;
  bottom: 32px;
  right: 56px;
  z-index: 3;
  display: flex; gap: 8px;
}
.hero-arrows button {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.hero-arrows button:hover { background: var(--orange); border-color: var(--orange); }

/* === SECTION CHROME === */
section { padding: 96px 56px; position: relative; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.kicker {
  display: inline-block;
  font-size: 12px; font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
h2.section-title {
  font-size: 42px;
  line-height: 1.12;
  letter-spacing: -.02em;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 16px;
  text-wrap: balance;
}
.section-sub {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0;
  text-wrap: pretty;
}

/* === SERVICES === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all .3s cubic-bezier(.2,.7,.3,1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
}
.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover .sc-icon { background: var(--navy); color: var(--orange); }
.sc-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: var(--blue-soft);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: all .3s;
}
.service-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 8px;
  letter-spacing: -.01em;
}
.service-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.55;
  margin: 0 0 18px;
}
.sc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
}
.sc-link svg { transition: transform .2s; }
.service-card:hover .sc-link svg { transform: translateX(4px); }

/* === WHY US === */
.why-us {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--gray-100);
  transition: all .3s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.why-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.why-icon.blue { background: linear-gradient(135deg, var(--blue) 0%, #1e63d6 100%); color: var(--white); box-shadow: var(--shadow-blue); }
.why-icon.orange { background: linear-gradient(135deg, var(--orange) 0%, #ff9133 100%); color: var(--white); box-shadow: var(--shadow-orange); }
.why-icon.navy { background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 100%); color: var(--orange); }
.why-card h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 6px;
  letter-spacing: -.01em;
}
.why-card p {
  font-size: 13.5px;
  color: var(--gray-500);
  line-height: 1.5;
  margin: 0;
}

/* === ABOUT === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.about-img {
  border-radius: var(--radius-xl);
  height: 520px;
  background-size: cover;
  background-position: center top;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img .badge {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--white);
  padding: 12px 16px;
  border-radius: 12px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-md);
}
.about-img .badge .yr {
  font-size: 28px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -.02em;
}
.about-img .badge .lbl {
  font-size: 11px;
  color: var(--gray-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1.3;
}
.about-stats {
  position: absolute;
  bottom: -28px; right: -28px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex; gap: 28px;
  box-shadow: var(--shadow-lg);
}
.about-stats .s .n {
  font-size: 32px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -.02em;
  line-height: 1;
}
.about-stats .s .l {
  font-size: 12px;
  color: rgba(255,255,255,.7);
  margin-top: 4px;
}
.about-stats .div { width: 1px; background: rgba(255,255,255,.15); }

.about-content h2 { text-align: left; margin-bottom: 20px; }
.about-content .kicker { display: block; }
.about-content p {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.7;
  margin: 0 0 16px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0 32px;
}
.af {
  display: flex; align-items: center; gap: 12px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--navy);
}
.af .ck {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
}

/* === PROCESS === */
.process {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(10,77,191,.4) 0%, transparent 40%),
    radial-gradient(circle at 90% 30%, rgba(255,122,0,.15) 0%, transparent 35%);
}
.process .section-head { position: relative; }
.process h2.section-title { color: var(--white); }
.process .section-sub { color: rgba(255,255,255,.7); }
.process .kicker { color: var(--orange-2); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 40px; left: 12%; right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.25) 0 6px, transparent 6px 14px);
}
.proc-step {
  position: relative;
  text-align: center;
}
.proc-num {
  width: 80px; height: 80px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-2) 100%);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  position: relative;
  box-shadow: var(--shadow-blue);
  border: 4px solid var(--navy);
}
.proc-step:nth-child(1) .proc-num { background: linear-gradient(135deg, var(--orange) 0%, var(--orange-2) 100%); box-shadow: var(--shadow-orange); }
.proc-step:nth-child(4) .proc-num { background: linear-gradient(135deg, #25D366 0%, #1eb858 100%); box-shadow: 0 8px 24px rgba(37,211,102,.4); }

.proc-step h4 {
  font-size: 19px;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 8px;
  letter-spacing: -.01em;
}
.proc-step p {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  line-height: 1.55;
  margin: 0;
  max-width: 220px;
  margin-left: auto; margin-right: auto;
}

/* === TESTIMONIALS === */
.testimonials { background: var(--gray-50); }
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.test-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-100);
  position: relative;
  transition: all .3s;
}
.test-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.test-card .stars {
  display: flex; gap: 2px; margin-bottom: 16px;
}
.test-card blockquote {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--gray-700);
  margin: 0 0 24px;
  font-weight: 500;
}
.test-meta {
  display: flex; align-items: center; gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-100);
}
.test-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 15px;
}
.test-meta .name { font-weight: 700; color: var(--navy); font-size: 14.5px; }
.test-meta .loc { font-size: 12.5px; color: var(--gray-500); margin-top: 2px; }

/* === FAQ === */
.faq-grid {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all .25s;
}
.faq-item.open { border-color: var(--blue); box-shadow: var(--shadow-md); }
.faq-q {
  width: 100%;
  padding: 22px 26px;
  background: transparent;
  border: none;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  text-align: left;
  letter-spacing: -.005em;
}
.faq-q .ic {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
  transition: all .25s;
}
.faq-item.open .faq-q .ic { background: var(--blue); color: var(--white); transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-item.open .faq-a { max-height: 220px; }
.faq-a-inner {
  padding: 0 26px 22px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-500);
}

/* === CTA BANNER === */
.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 0 56px;
  margin: 0;
}
.cta-banner-inner {
  background: linear-gradient(135deg, var(--navy) 0%, #102a4d 50%, var(--blue) 100%);
  border-radius: var(--radius-xl);
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-banner-inner::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,122,0,.3) 0%, transparent 70%);
}
.cta-banner-inner::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(135deg, black 0%, transparent 60%);
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 14px;
  letter-spacing: -.02em;
  line-height: 1.15;
}
.cta-content p {
  font-size: 16.5px;
  color: rgba(255,255,255,.85);
  margin: 0 0 28px;
  max-width: 480px;
  line-height: 1.55;
}
.cta-actions { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 14px; }
.cta-action {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  text-decoration: none;
  color: var(--white);
  transition: all .25s;
  backdrop-filter: blur(8px);
}
.cta-action:hover { background: rgba(255,255,255,.14); transform: translateX(4px); }
.cta-action .ic-big {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
}
.cta-action.wa .ic-big { background: #25D366; }
.cta-action.tel .ic-big { background: var(--orange); }
.cta-action .l1 { font-size: 12px; opacity: .7; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.cta-action .l2 { font-size: 18px; font-weight: 800; letter-spacing: -.01em; margin-top: 2px; }

/* === MAP === */
.map-section { padding: 0 56px 96px; }
.map-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}
.map-info { padding: 48px; }
.map-info h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 24px;
  letter-spacing: -.02em;
}
.map-info .row { display: flex; gap: 14px; margin-bottom: 22px; }
.map-info .row .ic {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
}
.map-info .row .lbl { font-size: 12px; color: var(--gray-500); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.map-info .row .val { font-size: 15px; color: var(--navy); font-weight: 600; margin-top: 4px; line-height: 1.45; }

.map-vis {
  position: relative;
  background:
    radial-gradient(circle at 50% 50%, #d9e4f0 0%, #c1d2e6 100%);
  min-height: 420px;
  overflow: hidden;
}
.map-vis::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px);
  background-size: 60px 60px;
}
.map-vis::after {
  content: "";
  position: absolute;
  top: 30%; left: 0; right: 0; height: 30px;
  background: linear-gradient(90deg, transparent 10%, #a8b9d0 30%, #a8b9d0 70%, transparent 90%);
  transform: rotate(-3deg);
}
.map-pin {
  position: absolute;
  top: 45%; left: 52%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.map-pin .dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--orange);
  border: 4px solid var(--white);
  box-shadow: 0 4px 12px rgba(255,122,0,.5);
  position: relative;
}
.map-pin .ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  animation: ring 2s infinite;
}
@keyframes ring {
  0% { transform: scale(.8); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}
.map-pin .label {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  margin-top: 12px;
  background: var(--navy);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

/* === FOOTER === */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 64px 56px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer .brand-text .b1 { color: var(--white); }
.footer .brand-text .b2 { color: rgba(255,255,255,.5); }
.footer p.fp {
  font-size: 14px;
  line-height: 1.65;
  margin: 18px 0 24px;
}
.social {
  display: flex; gap: 8px;
}
.social a {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transition: all .2s;
}
.social a:hover { background: var(--orange); color: var(--white); }
.footer h5 {
  font-size: 13px;
  color: var(--white);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 0 0 22px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer ul a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: 14px;
  transition: color .2s;
  display: inline-flex; align-items: center; gap: 6px;
}
.footer ul a:hover { color: var(--orange); }
.footer-contact .row { display: flex; gap: 12px; margin-bottom: 14px; }
.footer-contact .row .ic { color: var(--orange); flex: 0 0 auto; padding-top: 2px; }
.footer-contact .row span { font-size: 13.5px; line-height: 1.5; }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}

/* === FLOATING WHATSAPP === */
.float-wa {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 100;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.4);
  animation: ringWA 2s infinite;
  transition: transform .25s;
}
.float-wa:hover { transform: scale(1.08); }
@keyframes ringWA {
  0%,100% { box-shadow: 0 12px 32px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.4); }
  50% { box-shadow: 0 12px 32px rgba(37,211,102,.5), 0 0 0 18px rgba(37,211,102,0); }
}
.float-wa-tooltip {
  position: absolute;
  right: 80px;
  background: var(--white);
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 13px;
  color: var(--navy);
  font-weight: 700;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}
.float-wa-tooltip::after {
  content: "";
  position: absolute;
  top: 50%; right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--white);
}

/* === BREADCRUMB (mini) === */
.breadcrumb {
  position: absolute;
  top: 110px; left: 56px;
  z-index: 3;
  display: flex; align-items: center; gap: 8px;
  font-size: 12.5px;
  color: rgba(255,255,255,.7);
}
.breadcrumb a { color: rgba(255,255,255,.7); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { opacity: .4; }

/* === CONTACT / FORM GRID HELPERS === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* === HAMBURGER BUTTON === */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  padding: 6px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 10px;
  cursor: pointer;
  z-index: 200;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .25s;
  transform-origin: center;
}
.header.sticky-mode .nav-burger { background: var(--gray-100); border-color: var(--gray-200); }
.header.sticky-mode .nav-burger span { background: var(--navy); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === NAV OVERLAY === */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 99;
}
.nav-overlay.show { display: block; }

/* === RESPONSIVE: TABLET (≤1024px) === */
@media (max-width: 1024px) {
  section { padding: 72px 32px; }
  .header { padding: 8px 32px; }
  .hero-inner { padding: 0 32px; gap: 32px; }
  .hero-pager { left: 32px; }
  .hero-arrows { right: 32px; }
  .breadcrumb { left: 32px; }
  .cta-banner { padding: 0 32px; }
  .map-section { padding: 0 32px 72px; }
  .footer { padding: 56px 32px 28px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .test-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

/* === RESPONSIVE: MOBILE (≤900px) === */
@media (max-width: 900px) {
  /* — Hamburger nav — */
  .nav-burger { display: flex; }
  .header-cta { display: none; }
  .header { padding: 10px 20px; position: fixed; }
  .brand-mark, .brand-mark img { width: 64px; height: 64px; }

  .nav {
    position: fixed;
    top: 0; right: -100%;
    width: min(300px, 85vw);
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 80px 16px 24px;
    z-index: 150;
    overflow-y: auto;
    box-shadow: -4px 0 24px rgba(0,0,0,.18);
    transition: right .3s cubic-bezier(.4,0,.2,1);
  }
  .nav.open { right: 0; }
  .nav a {
    color: var(--gray-700);
    font-size: 15px;
    padding: 13px 16px;
    border-radius: 10px;
    border-bottom: 1px solid var(--gray-100);
  }
  .nav a:last-child { border-bottom: none; }
  .nav a:hover { background: var(--blue-soft); color: var(--blue); }
  .nav-dropdown { width: 100%; }
  .nav-dropdown > a { justify-content: space-between; }
  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown.open .dropdown-menu { opacity: 1; transform: none; pointer-events: auto; }
  .dropdown-menu {
    position: static;
    box-shadow: none; border: none;
    background: var(--gray-50);
    border-radius: 10px;
    margin-top: 4px; padding: 6px 8px;
    display: none;
  }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .nav-randevu {
    margin-top: 12px;
    background: var(--orange) !important;
    color: var(--white) !important;
    text-align: center; font-weight: 700;
    border-bottom: none !important;
    border-radius: 999px !important;
  }

  /* — Layout — */
  section { padding: 56px 20px; }
  .breadcrumb { top: 80px; left: 20px; }

  /* — Hero — */
  .hero { height: auto; min-height: 100svh; padding-top: 84px; }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 40px 20px 80px;
    gap: 40px;
  }
  .hero h1 { font-size: 34px; }
  .hero p.lead { font-size: 15px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas a { width: 100%; justify-content: center; }
  .hero-meta { flex-wrap: wrap; gap: 14px; }
  .hero-visual { display: none; }
  .hero-pager { left: 20px; bottom: 24px; }
  .hero-arrows { right: 20px; bottom: 20px; }

  /* — Section titles — */
  h2.section-title { font-size: 28px; }
  .section-sub { font-size: 15px; }

  /* — Services — */
  .services-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

  /* — Why Us — */
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* — About — */
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-img { height: 260px; }
  .about-stats { position: static; margin-top: 16px; border-radius: var(--radius-md); }
  .about-features { grid-template-columns: 1fr; }
  .about-content h2 { font-size: 26px; }

  /* — Process — */
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .process-grid::before { display: none; }

  /* — Testimonials — */
  .test-grid { grid-template-columns: 1fr; }

  /* — FAQ — */
  .faq-q { font-size: 14px; padding: 18px 18px; }

  /* — CTA Banner — */
  .cta-banner { padding: 0 20px; }
  .cta-banner-inner { grid-template-columns: 1fr; padding: 36px 24px; gap: 28px; }
  .cta-content h2 { font-size: 26px; }

  /* — Map — */
  .map-section { padding: 0 20px 56px; }
  .map-card { grid-template-columns: 1fr; }
  .map-info { padding: 28px 24px; }
  .map-vis { min-height: 240px; }

  /* — Footer — */
  .footer { padding: 48px 20px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* — Contact / Form grids — */
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row-2 { grid-template-columns: 1fr; }

  /* — Float WA — */
  .float-wa { position: fixed; bottom: 20px; right: 20px; }
  .float-wa-tooltip { display: none; }
}

/* === RESPONSIVE: SMALL MOBILE (≤480px) === */
@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn-primary, .btn-ghost, .btn-orange, .btn-wa-lg { padding: 14px 20px; font-size: 14px; }
  h2.section-title { font-size: 24px; }
}

.breadcrumb .cur { color: var(--orange); font-weight: 600; }
