/* =============================================
   MLS SERVİS — SHARED STYLESHEET
   Fonts: Outfit (headings/UI) + Lora italic (accents)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Lora:ital,wght@1,400;1,600&display=swap');

/* =============================================
   VARIABLES
   ============================================= */
:root {
  --white:   #ffffff;
  --off:     #f7f6f3;
  --dark:    #141414;
  --mid:     #6b6b6b;
  --light:   #d4d0c8;
  --blue:    #1a4fcb;
  --blue2:   #0e38a0;
  --blue-bg: #eef2fc;
  --border:  #e8e5de;
  --radius:  12px;
  --nav-h:   68px;
  --f-head:  'Outfit', sans-serif;
  --f-body:  'Outfit', sans-serif;
  /* --f-em:    'Lora', serif; */
  --max-w:   1200px;
  --pad-x:   48px;
}

/* =============================================
   RESET
   ============================================= */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--white);
  color: var(--dark);
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* =============================================
   NAVIGATION
   ============================================= */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
}
.nav-logo {
  font-family: var(--f-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
  display: flex;
  align-items: baseline;
  gap: 4px;
  z-index: 1001;
  position: relative;
}
.nav-logo sup {
  font-size: 8px;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-center {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-center a {
  font-size: 13px;
  font-weight: 500;
  color: var(--mid);
  transition: color 0.2s;
}
.nav-center a:hover,
.nav-center a.active { color: var(--dark); }
.nav-center a.active { font-weight: 600; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-phone {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
}
.nav-cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--blue2); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
  position: relative;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.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); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  padding: calc(var(--nav-h) + 24px) 24px 40px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu-links {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.mobile-menu-links li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--f-head);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.8px;
  color: var(--dark);
}
.mobile-menu-links li a span { font-size: 16px; color: var(--light); font-weight: 400; }
.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.mm-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  font-family: var(--f-head);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--dark);
}
.mm-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  border-radius: var(--radius);
  padding: 16px;
  font-family: var(--f-head);
  font-size: 15px;
  font-weight: 600;
  color: white;
}

/* =============================================
   PAGE WRAPPER
   ============================================= */
.page-wrap {
  padding-top: var(--nav-h);
  min-height: 100vh;
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: var(--off);
  border-bottom: 1px solid var(--border);
  padding: 72px var(--pad-x) 64px;
}
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 12px;
  color: var(--mid);
}
.breadcrumb a { color: var(--blue); transition: opacity .2s; }
.breadcrumb a:hover { opacity: .7; }
.breadcrumb-sep { color: var(--light); }
.page-hero-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.page-hero-title {
  font-family: var(--f-head);
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 16px;
}
.page-hero-title em {
  font-family: var(--f-em);
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
  letter-spacing: -1px;
}
.page-hero-desc p{
  font-size: 16px;
  color: var(--mid);
  max-width: 90%;
  line-height: 1.8;
  font-weight: 300;
}

/* =============================================
   SECTION UTILITIES
   ============================================= */
.section { padding: 88px var(--pad-x); }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-bg-off { background: var(--off); }
.section-bg-dark { background: var(--dark); }

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  gap: 24px;
}
.eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.eyebrow-dark {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--f-head);
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  color: var(--dark);
}
.section-title em {
  font-family: var(--f-em);
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
  letter-spacing: -0.5px;
}
.section-title-dark {
  font-family: var(--f-head);
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  color: white;
}
.section-title-dark em {
  font-family: var(--f-em);
  font-style: italic;
  font-weight: 400;
  color: #60a5fa;
  letter-spacing: -0.5px;
}
.section-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--mid);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: all 0.2s;
  flex-shrink: 0;
  align-self: flex-end;
}
.section-link:hover { color: var(--dark); border-color: var(--dark); }

/* =============================================
   BUTTONS
   ============================================= */
.btn { display: inline-flex; align-items: center; gap: 8px; border-radius: 6px; font-family: var(--f-head); font-weight: 600; text-decoration: none; transition: all .2s; white-space: nowrap; }
.btn-sm  { padding: 9px 18px;  font-size: 13px; }
.btn-md  { padding: 13px 24px; font-size: 14px; }
.btn-lg  { padding: 16px 32px; font-size: 15px; }

.btn-primary  { background: var(--blue);  color: white; }
.btn-primary:hover  { background: var(--blue2); transform: translateY(-1px); }
.btn-outline  { border: 1.5px solid var(--border); color: var(--dark); }
.btn-outline:hover  { border-color: var(--dark); }
.btn-white    { background: white; color: var(--blue); }
.btn-white:hover    { background: #f0f0f0; }
.btn-ghost-white { border: 2px solid rgba(255,255,255,.3); color: white; }
.btn-ghost-white:hover { border-color: white; background: rgba(255,255,255,.1); }
.btn-dark { background: var(--dark); color: white; }
.btn-dark:hover { background: #2a2a2a; }

/* =============================================
   CARDS
   ============================================= */
/* Service Card */
.svc-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  background: var(--white);
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,79,203,.03), transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.svc-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(26,79,203,.1); }
.svc-card:hover::before { opacity: 1; }
.svc-icon-wrap {
  width: 44px; height: 44px;
  background: var(--off);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
  transition: background .2s;
}
.svc-card:hover .svc-icon-wrap { background: rgba(26,79,203,.08); }
.svc-title {
  font-family: var(--f-head);
  font-size: 18px; font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 8px; color: var(--dark); line-height: 1.25;
}
.svc-desc { font-size: 13px; color: var(--mid); line-height: 1.7; margin-bottom: 20px; font-weight: 300; }
.svc-link { font-size: 13px; font-weight: 600; color: var(--blue); display: inline-flex; align-items: center; gap: 5px; transition: gap .2s; }
.svc-card:hover .svc-link { gap: 9px; }

/* Blog Card */
.blog-card { cursor: pointer; }
.blog-img {
  background: var(--off);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  aspect-ratio: 16/9;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  margin-bottom: 18px;
  overflow: hidden;
  transition: transform .3s;
}
.blog-card:hover .blog-img { transform: scale(1.02); }
.blog-cat {
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 8px;
}
.blog-title {
  font-family: var(--f-head);
  font-size: 20px; font-weight: 700;
  letter-spacing: -0.8px; color: var(--dark);
  line-height: 1.25; margin-bottom: 8px;
}
.blog-excerpt { font-size: 13px; color: var(--mid); line-height: 1.7; font-weight: 300; margin-bottom: 12px; }
.blog-date { font-size: 11px; color: var(--light); font-weight: 500; }

/* Testimonial Card */
.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.stars { color: #f59e0b; font-size: 13px; margin-bottom: 18px; letter-spacing: 2px; }
.testimonial-text {
  font-family: var(--f-em);
  font-size: 17px; font-style: italic; font-weight: 400;
  color: var(--dark); line-height: 1.65; margin-bottom: 22px;
}
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 40px; height: 40px;
  background: var(--blue); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-head); font-size: 15px; color: white; font-weight: 700;
  flex-shrink: 0;
}
.t-name { font-family: var(--f-head); font-size: 13px; font-weight: 600; color: var(--dark); }
.t-loc  { font-size: 11px; color: var(--mid); }

/* =============================================
   GRIDS
   ============================================= */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.grid-blog { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 28px; }

/* =============================================
   BRANDS STRIP
   ============================================= */
.brands-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--off);
  padding: 20px var(--pad-x);
  display: flex;
  align-items: center;
  gap: 40px;
  overflow-x: auto;
  scrollbar-width: none;
}
.brands-strip::-webkit-scrollbar { display: none; }
.brands-strip-label { font-size: 10px; font-weight: 600; color: var(--light); letter-spacing: 2px; text-transform: uppercase; white-space: nowrap; flex-shrink: 0; }
.brands-sep { width: 1px; height: 28px; background: var(--border); flex-shrink: 0; }
.brands-list { display: flex; gap: 36px; align-items: center; flex-shrink: 0; }
.brand-name { font-family: var(--f-head); font-size: 12px; font-weight: 600; color: var(--light); letter-spacing: 1px; text-transform: uppercase; white-space: nowrap; }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  padding: 100px var(--pad-x);
  background: var(--blue);
  text-align: center;
}
.cta-inner { max-width: var(--max-w); margin: 0 auto; }
.cta-eyebrow { font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 18px; }
.cta-title {
  font-family: var(--f-head);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 800; letter-spacing: -2.5px;
  color: white; margin-bottom: 18px; line-height: 1.05;
}
.cta-title em { font-family: var(--f-em); font-style: italic; font-weight: 400; letter-spacing: -1px; }
.cta-sub { font-size: 15px; color: rgba(255,255,255,.6); max-width: 460px; margin: 0 auto 44px; line-height: 1.7; font-weight: 300; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--dark);
  padding: 64px var(--pad-x) 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  max-width: var(--max-w);
  margin: 0 auto 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo { font-family: var(--f-head); font-size: 20px; font-weight: 800; color: white; letter-spacing: -0.5px; margin-bottom: 14px; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.8; font-weight: 300; max-width: 280px; }
.footer-col-title { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.4); font-weight: 300; transition: color .2s; }
.footer-links a:hover { color: white; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  max-width: var(--max-w); margin: 0 auto;
  font-size: 12px; color: rgba(255,255,255,.2);
  flex-wrap: wrap; gap: 8px;
}

/* =============================================
   MOBILE STICKY BAR
   ============================================= */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: white;
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  gap: 10px;
  box-shadow: 0 -4px 24px rgba(0,0,0,.08);
}
.mobile-cta-bar a {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  gap: 8px; padding: 13px; border-radius: 8px;
  font-family: var(--f-head); font-size: 14px; font-weight: 600;
}
.mcb-call { background: var(--blue); color: white; }
.mcb-form { background: var(--off); color: var(--dark); border: 1.5px solid var(--border); }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-1 { animation: fadeUp .5s      ease both; }
.anim-2 { animation: fadeUp .5s .1s  ease both; }
.anim-3 { animation: fadeUp .5s .2s  ease both; }
.anim-4 { animation: fadeUp .5s .3s  ease both; }

/* =============================================
   TABLET (≤1024px)
   ============================================= */
@media (max-width: 1024px) {
  :root { --pad-x: 32px; }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .grid-blog { grid-template-columns: 1fr 1fr; }
  .grid-blog .blog-card:first-child { grid-column: span 2; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

/* =============================================
   MOBILE (≤768px)
   ============================================= */
@media (max-width: 768px) {
  :root { --nav-h: 60px; --pad-x: 20px; }
  nav { padding: 0 20px; }
  .nav-center, .nav-right { display: none; }
  .hamburger { display: flex; }
  .mobile-cta-bar { display: flex; }
  footer { padding-bottom: 100px; }

  .page-hero { padding: 48px 20px 40px; }
  .page-hero-title { font-size: 36px; letter-spacing: -1.5px; }

  .section { padding: 56px 20px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 36px; }
  .section-title { font-size: 28px; letter-spacing: -1px; }
  .section-title-dark { font-size: 28px; letter-spacing: -1px; }

  .grid-3 { grid-template-columns: 1fr; gap: 12px; }
  .grid-2 { grid-template-columns: 1fr; gap: 12px; }
  .grid-blog { grid-template-columns: 1fr; gap: 24px; }
  .grid-blog .blog-card:first-child { grid-column: auto; }
  .blog-title { font-size: 18px !important; }

  .svc-card:hover { transform: none; }

  .cta-section { padding: 64px 20px; }
  .cta-title { font-size: 34px; letter-spacing: -1.5px; }
  .cta-actions { flex-direction: column; }
  .cta-actions a { width: 100%; justify-content: center; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .brands-strip { padding: 16px 20px; }
}

@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* =============================================
   HOMEPAGE — INDEX SPECIFIC
   ============================================= */

/* Hero */
.hero {
  min-height: 100svh;
  padding-top: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.hero-left {
  background: var(--off);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 56px 72px 48px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 6px 14px 6px 8px;
  border-radius: 100px;
  width: fit-content;
  margin-bottom: 36px;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.35} }
.hero-badge-text {
  font-size: 11px; font-weight: 600;
  color: var(--dark); letter-spacing: 0.3px;
}
.hero-title {
  font-family: var(--f-head);
  font-size: clamp(40px, 4.5vw, 76px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -2.5px;
  color: var(--dark);
  margin-bottom: 24px;
}
.hero-title em {
  font-family: var(--f-em);
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
  letter-spacing: -1px;
}
.hero-desc {
  font-size: 15px; color: var(--mid);
  max-width: 400px; line-height: 1.8;
  margin-bottom: 40px; font-weight: 300;
}
.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-primary {
  background: var(--blue); color: var(--white);
  padding: 13px 24px; font-family: var(--f-head);
  font-size: 14px; font-weight: 600;
  text-decoration: none; border-radius: 6px;
  transition: all .2s;
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--blue2); transform: translateY(-1px); }
.btn-outline {
  border: 1.5px solid var(--border); color: var(--dark);
  padding: 13px 24px; font-family: var(--f-head);
  font-size: 14px; font-weight: 500;
  text-decoration: none; border-radius: 6px;
  transition: all .2s; white-space: nowrap;
}
.btn-outline:hover { border-color: var(--dark); }

/* Hero Right */
.hero-right {
  background: var(--dark);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 48px 40px; gap: 12px;
}
.hero-right-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(26,79,203,.3) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(26,79,203,.15) 0%, transparent 60%);
}
.hero-right-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}
.hero-emergency {
  position: relative; z-index: 2;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 32px; backdrop-filter: blur(8px);
}
.emergency-eyebrow {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 10px; font-weight: 600;
}
.emergency-heading {
  font-family: var(--f-head);
  font-size: 30px; font-weight: 800;
  color: white; letter-spacing: -1.5px;
  line-height: 1.1; margin-bottom: 8px;
}
.emergency-heading em {
  font-family: var(--f-em);
  font-style: italic; font-weight: 400;
  color: #60a5fa; letter-spacing: -0.5px;
}
.emergency-sub {
  font-size: 13px; color: rgba(255,255,255,.45);
  margin-bottom: 24px; line-height: 1.6; font-weight: 300;
}
.emergency-phone-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: white; color: var(--dark);
  padding: 15px 20px; border-radius: 8px;
  text-decoration: none; font-family: var(--f-head);
  font-weight: 700; font-size: 17px; letter-spacing: -0.5px;
  transition: all .2s;
}
.emergency-phone-btn:hover { background: #f0f0f0; }
.phone-icon-badge {
  width: 30px; height: 30px; background: var(--blue);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 13px; flex-shrink: 0;
}
.hero-chips {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.chip {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px; padding: 13px 14px;
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; transition: all .2s;
}
.chip:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }
.chip-icon { font-size: 17px; }
.chip-label { font-size: 12px; color: rgba(255,255,255,.75); font-weight: 500; }

/* Services section */
.services { padding: 88px var(--pad-x, 48px); }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

/* Why Us */
.why-us {
  padding: 88px var(--pad-x, 48px);
  background: var(--dark);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.why-eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 14px;
}
.why-title {
  font-family: var(--f-head);
  font-size: clamp(36px, 3.5vw, 56px);
  font-weight: 800; letter-spacing: -2.5px;
  color: white; line-height: 1.05; margin-bottom: 20px;
}
.why-title em {
  font-family: var(--f-em); font-style: italic;
  font-weight: 400; color: #60a5fa; letter-spacing: -0.5px;
}
.why-desc { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.8; font-weight: 300; }
.why-items { display: flex; flex-direction: column; gap: 8px; }
.why-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 24px 28px;
  display: flex; align-items: flex-start; gap: 18px;
  cursor: pointer; transition: all .2s; border-radius: 10px;
}
.why-item:hover { background: rgba(255,255,255,.08); border-color: rgba(26,79,203,.4); }
.why-item-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.why-item-title { font-family: var(--f-head); font-size: 15px; font-weight: 600; color: white; margin-bottom: 4px; }
.why-item-desc { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.6; font-weight: 300; }

/* Testimonials */
.testimonials { padding: 88px var(--pad-x, 48px); background: var(--off); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 56px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px; height: 40px; background: var(--blue); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-head); font-size: 15px; color: white; font-weight: 700; flex-shrink: 0;
}
.author-name { font-family: var(--f-head); font-size: 13px; font-weight: 600; color: var(--dark); }
.author-loc { font-size: 11px; color: var(--mid); }

/* Blog section */
.blog-section { padding: 88px var(--pad-x, 48px); }
.blog-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 28px; margin-top: 56px; }

/* CTA */
.cta-section { padding: 100px var(--pad-x, 48px); background: var(--blue); text-align: center; }
.cta-eyebrow { font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 18px; }
.cta-title {
  font-family: var(--f-head);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 800; letter-spacing: -2.5px;
  color: white; margin-bottom: 18px; line-height: 1.05;
}
.cta-title em { font-family: var(--f-em); font-style: italic; font-weight: 400; letter-spacing: -1px; }
.cta-sub { font-size: 15px; color: rgba(255,255,255,.6); max-width: 460px; margin: 0 auto 44px; line-height: 1.7; font-weight: 300; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: white; color: var(--blue); padding: 14px 28px; font-family: var(--f-head); font-size: 14px; font-weight: 700; text-decoration: none; border-radius: 6px; transition: all .2s; white-space: nowrap; }
.btn-white:hover { background: #f0f0f0; transform: translateY(-1px); }
.btn-white-ghost { border: 2px solid rgba(255,255,255,.3); color: white; padding: 14px 28px; font-family: var(--f-head); font-size: 14px; font-weight: 500; text-decoration: none; border-radius: 6px; transition: all .2s; white-space: nowrap; }
.btn-white-ghost:hover { border-color: white; background: rgba(255,255,255,.1); }

/* Mobile CTA bar — homepage class aliases */
.mobile-cta-call { background: var(--blue); color: white; }
.mobile-cta-form { background: var(--off); color: var(--dark); border: 1.5px solid var(--border); }

/* Homepage responsive */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { min-height: 420px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .why-us { grid-template-columns: 1fr; gap: 48px; }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card:first-child { grid-column: span 2; }
}
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 40px 20px 48px; }
  .hero-title { font-size: 40px; letter-spacing: -2px; }
  .hero-desc { font-size: 14px; max-width: 100%; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { width: 100%; justify-content: center; padding: 15px; font-size: 15px; }
  .hero-right { min-height: auto; padding: 24px 20px; gap: 10px; }
  .emergency-heading { font-size: 24px; }
  .services { padding: 64px 20px; }
  .services-grid { grid-template-columns: 1fr; gap: 12px; }
  .why-us { padding: 64px 20px; grid-template-columns: 1fr; gap: 40px; }
  .why-title { font-size: 32px; letter-spacing: -1.5px; }
  .why-item:hover { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08); }
  .testimonials { padding: 64px 20px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 12px; }
  .blog-section { padding: 64px 20px; }
  .blog-grid { grid-template-columns: 1fr; gap: 24px; }
  .blog-card:first-child { grid-column: auto; }
  .cta-section { padding: 72px 20px; }
  .cta-title { font-size: 36px; letter-spacing: -1.5px; }
  .cta-actions { flex-direction: column; }
  .cta-actions a { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 34px; }
}
/* =============================================
   BLOG IMG — Slimsy picture fix
   ============================================= */
.blog-img picture,
.blog-img picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Küçük blog kartlarında daha dolgun görsel */
.blog-grid .blog-card:not(:first-child) .blog-img {
  aspect-ratio: 4/3;
  min-height: 180px;
}

/* Servis kartı — a tag olarak kullanılıyor */
a.svc-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Blog kartı — a tag olarak kullanılıyor */
a.blog-card,
a.blog-card.small {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* =============================================
   COOKIE BANNER
   ============================================= */
.cookie-banner {
  position: fixed;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: calc(100% - 40px);
  max-width: 780px;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
  transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: 16px;
}
.cookie-banner.show { bottom: 16px; }

@media (max-width: 768px) {
  .cookie-banner { bottom: -160px; } /* Mobilde daha fazla negatif — tam gizlenmesi için */
  .cookie-banner.show { bottom: 88px; }
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  flex-wrap: wrap;
}
.cookie-text {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.cookie-icon { font-size: 20px; flex-shrink: 0; }
.cookie-text p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  font-weight: 300;
  margin: 0;
}
.cookie-text p a {
  color: #60a5fa;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.2s;
}
.cookie-text p a:hover { opacity: 0.75; }

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-decline {
  padding: 9px 18px;
  font-family: var(--f-head);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  transition: all 0.2s;
}
.cookie-decline:hover {
  color: rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.35);
}
.cookie-accept {
  padding: 9px 20px;
  font-family: var(--f-head);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: var(--blue);
  border: none;
  border-radius: 6px;
  transition: background 0.2s;
}
.cookie-accept:hover { background: var(--blue2); }

@media (max-width: 480px) {
  .cookie-inner { padding: 16px 16px; gap: 14px; }
  .cookie-actions { width: 100%; }
  .cookie-decline,
  .cookie-accept { flex: 1; text-align: center; }
}


/* =============================================
   CONTACT MODAL
   ============================================= */
.contact-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.contact-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.contact-modal {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 36px;
  width: 100%;
  max-width: 420px;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.18);
  transform: translateY(16px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.contact-modal-overlay.open .contact-modal {
  transform: translateY(0) scale(1);
}
.contact-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  background: var(--off);
  border: none;
  border-radius: 50%;
  font-size: 12px;
  color: var(--mid);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.contact-modal-close:hover {
  background: var(--border);
  color: var(--dark);
}
.contact-modal-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.contact-modal-title {
  font-family: var(--f-head);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 10px;
}
.contact-modal-title em {
  font-family: var(--f-em);
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
}
.contact-modal-sub {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 28px;
}
.contact-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cma-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  text-decoration: none;
  transition: all 0.2s;
  color: var(--dark);
}
.cma-btn:hover {
  transform: translateX(4px);
  border-color: transparent;
}
.cma-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: var(--off);
}
.cma-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cma-title {
  font-family: var(--f-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}
.cma-sub {
  font-size: 12px;
  color: var(--mid);
  font-weight: 300;
}

/* Buton renkleri */
.cma-call:hover {
  background: #eef2fc;
  border-color: var(--blue) !important;
}
.cma-call:hover .cma-icon { background: rgba(26,79,203,0.1); }
.cma-call:hover .cma-title { color: var(--blue); }

.cma-whatsapp:hover {
  background: #f0fdf4;
  border-color: #22c55e !important;
}
.cma-whatsapp:hover .cma-icon { background: #dcfce7; }
.cma-whatsapp:hover .cma-title { color: #16a34a; }

.cma-form:hover {
  background: var(--off);
  border-color: var(--dark) !important;
}

@media (max-width: 480px) {
  .contact-modal {
    padding: 32px 24px;
    border-radius: 16px;
  }
  .contact-modal-title { font-size: 28px; }
}