/* ============================================
   TEKNİK SERVİS DESTEĞİ — CSS v2
   Fonts: Exo 2 (headings) + Inter (body)
   Full Turkish character support
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@600;700;800;900&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --white:       #f5f6f7;
  --white-pure:  #ffffff;
  --blue-pale:   #dde8ea;
  --blue-mid:    #b8cdd1;
  --red:         #d42b2b;
  --red-dark:    #b01f1f;
  --red-light:   #e84040;
  --gray-dark:   #1e2a2d;
  --gray-mid:    #3d5257;
  --gray-light:  #6b8a90;
  --gray-xlight: #e8eeef;
  --shadow-sm:   0 2px 8px rgba(30,42,45,0.08);
  --shadow-md:   0 4px 20px rgba(30,42,45,0.13);
  --shadow-lg:   0 8px 40px rgba(30,42,45,0.17);
  --radius:      10px;
  --radius-lg:   16px;
  --font-head:   'Exo 2', sans-serif;
  --font-body:   'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--gray-dark);
  background: var(--white-pure);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TOPBAR ── */
.topbar {
  background: var(--gray-dark);
  color: #fff;
  font-size: 13px;
  padding: 7px 0;
  border-bottom: 3px solid var(--red);
}
.topbar-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.topbar-left { opacity: .7; font-size: 12px; }
.topbar-phone a {
  display: flex; align-items: center; gap: 8px;
  color: #fff; font-weight: 700; font-size: 15px;
  font-family: var(--font-body);
  transition: opacity .2s;
}
.topbar-phone a:hover { opacity: .8; }
.topbar-phone .cta-text {
  background: var(--red); color: white;
  padding: 2px 10px; border-radius: 4px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
}

/* ── HEADER ── */
.main-header {
  background: var(--white-pure);
  box-shadow: var(--shadow-sm);
  position: sticky; top: 0; z-index: 1000;
  border-bottom: 2px solid var(--blue-pale);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: space-between; align-items: center;
  height: 68px;
}
.logo {
  font-family: var(--font-head);
  font-size: 20px; font-weight: 800;
  color: var(--gray-dark);
  display: flex; align-items: center; gap: 10px;
  letter-spacing: .3px;
}
.logo span { color: var(--red); }
.logo-icon { width: 36px; height: 36px; border-radius: 7px; overflow: hidden; flex-shrink: 0; }
.logo-icon img { width: 100%; height: 100%; object-fit: cover; }

.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 12px;
  font-family: var(--font-body); font-weight: 600; font-size: 14px;
  color: var(--gray-dark);
  border-radius: 6px; transition: background .2s, color .2s;
}
.main-nav > li > a:hover,
.main-nav > li > a.active { background: var(--blue-pale); color: var(--red-dark); }
.main-nav > li > a .arrow { font-size: 10px; transition: transform .2s; }
.main-nav > li:hover > a .arrow { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: white; min-width: 230px;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  border: 1px solid var(--blue-pale); border-top: 3px solid var(--red);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all .25s ease; z-index: 999;
}
.dropdown.sub-dropdown { left: 100%; top: -8px; }
.dropdown li { position: relative; }
.dropdown li a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 18px; font-size: 14px; font-weight: 600;
  color: var(--gray-dark); transition: background .15s, color .15s;
}
.dropdown li a:hover { background: var(--blue-pale); color: var(--red-dark); }
.main-nav > li:hover > .dropdown,
.dropdown li:hover > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.nav-cta-btn {
  background: var(--red) !important; color: white !important;
  padding: 9px 18px !important; border-radius: 7px !important;
  font-weight: 700 !important; transition: background .2s !important;
}
.nav-cta-btn:hover { background: var(--red-dark) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span {
  display: block; width: 26px; height: 3px;
  background: var(--gray-dark); border-radius: 2px; transition: all .3s;
}

/* ── HERO ── */
.hero {
  background: var(--gray-dark);
  color: white; padding: 80px 24px 70px;
  position: relative; overflow: hidden;
}
/* Dot pattern overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px; background: var(--red);
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr; gap: 48px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--red); border-radius: 4px;
  padding: 5px 14px; font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 20px; font-family: var(--font-body);
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900; line-height: 1.08;
  margin-bottom: 20px; letter-spacing: -.5px;
  max-width: 700px;
}
.hero h1 em { font-style: normal; color: var(--red-light); }
.hero > .hero-inner > .hero-content > p {
  font-size: 17px; opacity: .85; margin-bottom: 36px;
  max-width: 560px; line-height: 1.8;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 48px; }
.hero-phone-btn {
  display: flex; align-items: center; gap: 12px;
  background: var(--red); color: white;
  padding: 14px 28px; border-radius: 6px;
  font-weight: 700; font-size: 17px;
  box-shadow: 0 4px 20px rgba(212,43,43,.4);
  transition: transform .2s, box-shadow .2s, background .2s;
  font-family: var(--font-body);
}
.hero-phone-btn:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(212,43,43,.45); }
.hero-phone-btn .phone-icon { font-size: 20px; }
.hero-phone-small { font-size: 11px; font-weight: 600; opacity: .85; display: block; text-transform: uppercase; letter-spacing: .5px; }
.hero-number { font-size: 20px; font-weight: 800; font-family: var(--font-body); }
.hero-secondary-btn {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,.35); color: white;
  padding: 13px 24px; border-radius: 6px;
  font-weight: 600; font-size: 15px;
  transition: background .2s, border-color .2s;
  font-family: var(--font-body);
}
.hero-secondary-btn:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }

/* Hero stats — horizontal strip */
.hero-stats {
  display: flex; gap: 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 520px;
}
.hero-stat {
  flex: 1; padding: 16px 20px;
  border-right: 1px solid rgba(255,255,255,.12);
  border-left: 3px solid var(--red);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(4px);
}
.hero-stat:last-child { border-right: none; }
.hero-stat .num {
  font-family: var(--font-head);
  font-size: 28px; font-weight: 900; display: block; line-height: 1;
  margin-bottom: 4px;
}
.hero-stat .lbl { font-size: 11px; opacity: .65; text-transform: uppercase; letter-spacing: .8px; font-family: var(--font-body); }

/* ── BREADCRUMB ── */
.breadcrumb-bar { background: var(--blue-pale); border-bottom: 1px solid var(--blue-mid); padding: 10px 24px; }
.breadcrumb { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--gray-mid); font-family: var(--font-body); }
.breadcrumb a { color: var(--red-dark); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { color: var(--blue-mid); }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--gray-dark); color: white; padding: 60px 24px;
  position: relative; border-bottom: 4px solid var(--red); overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1200px; margin: 0 auto; position: relative;
  display: grid; grid-template-columns: 1fr 400px; gap: 48px; align-items: center;
}
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px); font-weight: 900;
  line-height: 1.1; margin-bottom: 14px; letter-spacing: -.3px;
}
.page-hero p { font-size: 16px; opacity: .85; max-width: 560px; font-family: var(--font-body); }
.page-hero-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/9; background: rgba(255,255,255,.05); }
.page-hero-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── SECTION ── */
.section { padding: 80px 24px; }
.section-alt { background: var(--white); }
/* Subtle diagonal line pattern for alt sections */
.section-alt {
  background-color: var(--white);
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(184,205,209,.15) 20px,
    rgba(184,205,209,.15) 21px
  );
}
.section-pale {
  background-color: var(--blue-pale);
  background-image: radial-gradient(circle, rgba(30,42,45,.06) 1px, transparent 1px);
  background-size: 20px 20px;
}
.container { max-width: 1200px; margin: 0 auto; }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 38px); font-weight: 800;
  color: var(--gray-dark); margin-bottom: 10px; letter-spacing: -.2px;
}
.section-sub { font-size: 16px; color: var(--gray-light); margin-bottom: 48px; max-width: 620px; font-family: var(--font-body); }
.section-header { margin-bottom: 48px; }
.section-header .line { width: 48px; height: 4px; background: var(--red); border-radius: 2px; margin-bottom: 14px; }

/* ── CARDS ── */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.card {
  background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  overflow: hidden; transition: transform .25s, box-shadow .25s;
  border: 1px solid var(--gray-xlight); border-top: 3px solid transparent;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-top-color: var(--red); }
.card-img { aspect-ratio: 16/9; overflow: hidden; background: var(--blue-pale); position: relative; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 22px 24px; }
.card-title { font-family: var(--font-head); font-size: 19px; font-weight: 800; color: var(--gray-dark); margin-bottom: 8px; }
.card-text { font-size: 14px; color: var(--gray-light); line-height: 1.7; margin-bottom: 16px; font-family: var(--font-body); }
.card-link { display: inline-flex; align-items: center; gap: 6px; color: var(--red-dark); font-weight: 700; font-size: 14px; transition: gap .2s; font-family: var(--font-body); }
.card-link:hover { gap: 10px; }

/* ── FEATURES ── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.feature-box {
  background: white; border-radius: var(--radius-lg); padding: 26px 22px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-xlight);
  transition: transform .25s, box-shadow .25s; position: relative;
}
.feature-box::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--red); border-radius: 4px 0 0 4px;
  opacity: 0; transition: opacity .2s;
}
.feature-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-box:hover::before { opacity: 1; }
.feature-icon { width: 50px; height: 50px; background: var(--blue-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 14px; }
.feature-title { font-family: var(--font-head); font-size: 16px; font-weight: 800; color: var(--gray-dark); margin-bottom: 7px; }
.feature-text { font-size: 14px; color: var(--gray-light); font-family: var(--font-body); }

/* ── SERVICE DETAIL ── */
.service-content { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; }
.service-body h2 { font-family: var(--font-head); font-size: 26px; font-weight: 800; color: var(--gray-dark); margin: 32px 0 12px; }
.service-body h2:first-child { margin-top: 0; }
.service-body p { margin-bottom: 16px; color: var(--gray-mid); font-family: var(--font-body); }
.service-body ul { margin: 0 0 20px; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.service-body ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--gray-mid); font-family: var(--font-body); }
.service-body ul li::before { content: '✓'; color: var(--red); font-weight: 800; margin-top: 1px; flex-shrink: 0; }
.service-sidebar { position: sticky; top: 90px; }
.sidebar-cta {
  background: var(--gray-dark); color: white;
  border-radius: var(--radius-lg); padding: 28px 24px; margin-bottom: 24px;
  text-align: center; border-top: 4px solid var(--red);
}
.sidebar-cta h3 { font-family: var(--font-head); font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.sidebar-cta p { font-size: 14px; opacity: .8; margin-bottom: 20px; font-family: var(--font-body); }
.sidebar-phone-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: var(--red); color: white; padding: 14px 20px; border-radius: 6px;
  font-weight: 800; font-size: 16px; transition: background .2s, transform .2s; font-family: var(--font-body);
}
.sidebar-phone-btn:hover { background: var(--red-dark); transform: scale(1.02); }
.sidebar-links { background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-xlight); overflow: hidden; }
.sidebar-links h4 { background: var(--blue-pale); color: var(--gray-dark); font-family: var(--font-head); font-weight: 800; font-size: 14px; padding: 14px 20px; border-bottom: 2px solid var(--red); text-transform: uppercase; letter-spacing: .5px; }
.sidebar-links ul { padding: 8px 0; }
.sidebar-links ul li a { display: flex; align-items: center; gap: 8px; padding: 10px 20px; font-size: 14px; font-weight: 600; color: var(--gray-dark); transition: background .15s, color .15s; font-family: var(--font-body); }
.sidebar-links ul li a:hover, .sidebar-links ul li a.active { background: var(--blue-pale); color: var(--red-dark); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid var(--gray-xlight); border-radius: var(--radius); overflow: hidden; background: white; }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 15px 20px; background: none; border: none; cursor: pointer; font-family: var(--font-body); font-weight: 700; font-size: 14px; color: var(--gray-dark); text-align: left; transition: background .2s; }
.faq-q:hover { background: var(--blue-pale); }
.faq-q.open { background: var(--blue-pale); color: var(--red-dark); }
.faq-icon { font-size: 20px; color: var(--red); transition: transform .3s; flex-shrink: 0; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s; padding: 0 20px; font-size: 14px; color: var(--gray-mid); line-height: 1.8; font-family: var(--font-body); }
.faq-a.open { max-height: 400px; padding: 14px 20px 18px; }

/* ── CITIES ── */
.cities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(175px, 1fr)); gap: 14px; }
.city-card { background: white; border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 18px; text-align: center; border: 1px solid var(--gray-xlight); border-bottom: 3px solid transparent; transition: transform .2s, box-shadow .2s, border-color .2s; }
.city-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-bottom-color: var(--red); }
.city-card .city-icon { font-size: 28px; margin-bottom: 8px; }
.city-card .city-name { font-family: var(--font-head); font-size: 16px; font-weight: 800; color: var(--gray-dark); }
.city-card .city-sub { font-size: 11px; color: var(--gray-light); margin-top: 3px; font-family: var(--font-body); }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: var(--blue-pale); }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-text h2 { font-family: var(--font-head); font-size: 30px; font-weight: 800; color: var(--gray-dark); margin-bottom: 16px; }
.about-text p { color: var(--gray-mid); margin-bottom: 16px; font-family: var(--font-body); }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.about-stat { background: var(--blue-pale); border-radius: var(--radius); padding: 16px; text-align: center; border-bottom: 3px solid var(--red); }
.about-stat .num { font-family: var(--font-head); font-size: 26px; font-weight: 900; color: var(--gray-dark); display: block; }
.about-stat .lbl { font-size: 11px; color: var(--gray-light); text-transform: uppercase; letter-spacing: .5px; font-family: var(--font-body); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--red); color: white; padding: 60px 24px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.cta-band .container { position: relative; }
.cta-band h2 { font-family: var(--font-head); font-size: clamp(24px, 3.5vw, 38px); font-weight: 900; margin-bottom: 12px; }
.cta-band p { font-size: 16px; opacity: .9; margin-bottom: 28px; font-family: var(--font-body); }
.cta-band-btn { display: inline-flex; align-items: center; gap: 12px; background: white; color: var(--red-dark); padding: 15px 36px; border-radius: 6px; font-weight: 800; font-size: 18px; box-shadow: 0 4px 20px rgba(0,0,0,.2); transition: transform .2s; font-family: var(--font-body); }
.cta-band-btn:hover { transform: scale(1.03); }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card { background: white; border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-xlight); border-top: 3px solid var(--red); }
.testimonial-stars { color: #e8a000; font-size: 17px; margin-bottom: 12px; }
.testimonial-text { font-size: 14px; color: var(--gray-mid); font-style: italic; margin-bottom: 14px; line-height: 1.8; font-family: var(--font-body); }
.testimonial-author { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--gray-dark); }
.testimonial-city { font-size: 11px; color: var(--gray-light); text-transform: uppercase; letter-spacing: .5px; font-family: var(--font-body); }

/* ── DISCLAIMER ── */
.disclaimer-box { background: #fff8e1; border: 1.5px solid #ffe082; border-radius: var(--radius); padding: 16px 20px; font-size: 14px; color: #5d4037; display: flex; gap: 10px; align-items: flex-start; line-height: 1.7; font-family: var(--font-body); }
.disclaimer-box .disc-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }

/* ── CONTACT PAGE ── */
.contact-hero-cta {
  background: var(--gray-dark); color: white;
  border-radius: var(--radius-lg); padding: 48px 40px;
  border-top: 5px solid var(--red); text-align: center;
  position: relative; overflow: hidden;
}
.contact-hero-cta::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 22px 22px;
}
.contact-hero-cta .inner { position: relative; }
.contact-hero-cta h2 { font-family: var(--font-head); font-size: 32px; font-weight: 900; margin-bottom: 10px; }
.contact-hero-cta p { font-size: 16px; opacity: .8; margin-bottom: 28px; max-width: 480px; margin-left: auto; margin-right: auto; font-family: var(--font-body); }
.contact-big-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  background: var(--red); color: white; padding: 18px 44px;
  border-radius: 8px; font-weight: 800; font-size: 22px;
  box-shadow: 0 4px 24px rgba(212,43,43,.45);
  transition: transform .2s, background .2s; font-family: var(--font-body);
}
.contact-big-btn:hover { background: var(--red-dark); transform: scale(1.03); }
.contact-big-btn-sub { font-size: 12px; font-weight: 600; opacity: .85; display: block; text-transform: uppercase; letter-spacing: .5px; }
.contact-big-btn-num { font-size: 26px; font-weight: 800; font-family: var(--font-body); }
.contact-info-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; margin-top: 40px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; background: white; padding: 20px 22px; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--gray-xlight); border-left: 4px solid var(--red); }
.contact-item-icon { width: 44px; height: 44px; background: var(--blue-pale); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-item-body h4 { font-family: var(--font-head); font-weight: 700; font-size: 12px; color: var(--gray-light); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 4px; }
.contact-item-body p { font-size: 15px; font-weight: 600; color: var(--gray-dark); font-family: var(--font-body); }
.contact-item-body a { color: var(--red-dark); }

/* ── FOOTER ── */
.footer {
  background: var(--gray-dark); color: rgba(255,255,255,.8);
  padding: 60px 24px 0; border-top: 4px solid var(--red);
  position: relative;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 200px;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 24px 24px; pointer-events: none;
}
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); position: relative; }
.footer-brand .logo { color: white; margin-bottom: 14px; }
.footer-brand .logo span { color: var(--red-light); }
.footer-brand p { font-size: 13.5px; opacity: .7; line-height: 1.7; margin-bottom: 18px; font-family: var(--font-body); }
.footer-col h4 { font-family: var(--font-head); font-weight: 800; font-size: 14px; letter-spacing: .5px; color: white; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--red); display: inline-block; text-transform: uppercase; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 13.5px; opacity: .7; transition: opacity .2s, color .2s; font-family: var(--font-body); }
.footer-col ul li a:hover { opacity: 1; color: var(--red-light); }
.footer-phone { display: flex; align-items: center; gap: 10px; background: var(--red); padding: 12px 18px; border-radius: 6px; font-weight: 800; font-size: 16px; color: white; transition: background .2s; font-family: var(--font-body); }
.footer-phone:hover { background: var(--red-dark); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 12px; opacity: .5; flex-wrap: wrap; gap: 8px; position: relative; font-family: var(--font-body); }

/* ── MOBILE FIXED PHONE ── */
.mobile-phone-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: #1a7a2e; color: white; z-index: 9999; padding: 13px 20px; }
.mobile-phone-bar a { display: flex; align-items: center; justify-content: center; gap: 10px; color: white; font-weight: 800; font-size: 17px; font-family: var(--font-body); }
.mobile-phone-bar .pulse-ring { width: 36px; height: 36px; background: rgba(255,255,255,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; animation: pulse-green 1.8s infinite; flex-shrink: 0; }
@keyframes pulse-green {
  0%   { transform: scale(1);    box-shadow: 0 0 0 0 rgba(255,255,255,.4); }
  50%  { transform: scale(1.08); box-shadow: 0 0 0 10px rgba(255,255,255,0); }
  100% { transform: scale(1);    box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.mobile-phone-bar .cta-label { font-size: 11px; font-weight: 600; opacity: .85; text-transform: uppercase; letter-spacing: .5px; }
.mobile-phone-bar .num { font-size: 19px; font-family: var(--font-body); }

/* ── MOBILE NAV ── */
.mobile-nav-header { display: none; align-items: center; justify-content: space-between; padding: 18px 20px 14px; border-bottom: 2px solid var(--blue-pale); margin-bottom: 8px; width: 100%; }
.mobile-nav-logo { font-size: 17px !important; }
.mobile-nav-phone-item { display: none; padding: 14px 16px 0; width: 100%; }
.mobile-nav-phone-btn { display: flex !important; align-items: center !important; justify-content: center !important; gap: 8px !important; background: #1a7a2e !important; color: white !important; padding: 14px 20px !important; border-radius: 8px !important; font-weight: 800 !important; font-size: 15px !important; text-align: center !important; transition: background .2s !important; border-bottom: none !important; font-family: var(--font-body) !important; }
.mobile-nav-phone-btn:hover { background: #145e23 !important; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-content { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-img { display: none; }
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .hamburger { display: flex; }
  .main-nav {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: white; flex-direction: column; align-items: flex-start;
    padding: 0 0 24px; gap: 0; overflow-y: auto; z-index: 999;
  }
  .main-nav.open { display: flex; }
  .main-nav > li { width: 100%; }
  .main-nav > li > a { padding: 14px 20px; font-size: 16px; border-bottom: 1px solid var(--gray-xlight); border-radius: 0; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; border-top: none; padding-left: 16px; display: none; }
  .dropdown.mobile-open { display: block; }
  .mobile-nav-header { display: flex; }
  .mobile-close-btn { position: static !important; font-size: 20px !important; background: var(--blue-pale) !important; border: none; width: 36px; height: 36px; border-radius: 50%; display: flex !important; align-items: center; justify-content: center; cursor: pointer; color: var(--gray-dark); flex-shrink: 0; }
  .mobile-phone-bar { display: block; }
  .mobile-nav-phone-item { display: block; }
  body { padding-bottom: 65px; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar-left { display: none; }
  .hero-stats { max-width: 100%; flex-direction: column; }
  .hero-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
  .hero-stat:last-child { border-bottom: none; }
  .contact-info-grid { grid-template-columns: 1fr; }
}

/* ── SERVİS SÜRECİMİZ — 4 ADIM ── */
.process-section {
  background: var(--gray-dark);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}
.process-section::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--red);
}
.process-section .section-title { color: white; }
.process-section .section-sub { color: rgba(255,255,255,.6); }
.process-section .line { background: var(--red); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 8px;
}
/* Connecting line between steps */
.process-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: calc(12.5% + 8px);
  right: calc(12.5% + 8px);
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--red) 0, var(--red) 10px,
    transparent 10px, transparent 22px
  );
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px 32px;
  position: relative;
  z-index: 1;
}
.process-step-num {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--gray-dark);
  border: 3px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  position: relative;
  transition: transform .3s, background .3s;
  flex-shrink: 0;
}
.process-step:hover .process-step-num {
  background: var(--red);
  transform: scale(1.08);
}
.process-step-num .num-text {
  font-family: var(--font-head);
  font-size: 28px; font-weight: 900;
  color: var(--red);
  line-height: 1;
  transition: color .3s;
}
.process-step:hover .process-step-num .num-text { color: white; }
.process-step-num .step-icon {
  position: absolute;
  bottom: -4px; right: -4px;
  width: 28px; height: 28px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  border: 2px solid var(--gray-dark);
  transition: background .3s;
}
.process-step:hover .process-step-num .step-icon { background: white; }
.process-step-title {
  font-family: var(--font-head);
  font-size: 17px; font-weight: 800;
  color: white; margin-bottom: 10px;
  letter-spacing: .2px;
}
.process-step-text {
  font-size: 13.5px; color: rgba(255,255,255,.6);
  line-height: 1.7; font-family: var(--font-body);
}

/* SSS 2-col grid küçük ekranlarda */
@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .faq-two-col { grid-template-columns: 1fr !important; }
}
@media (max-width: 500px) {
  .process-steps { grid-template-columns: 1fr; }
}
