/* ============================================================
   Hilal Teknik — Main Stylesheet
   ============================================================ */

/* ---------- Reset & Custom Properties ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:       #c8102e;
  --red-dark:  #a00d24;
  --red-light: #fef2f4;
  --dark:      #0f172a;
  --dark-2:    #1e293b;
  --dark-3:    #334155;
  --mid:       #64748b;
  --light:     #f8fafc;
  --white:     #ffffff;
  --wa:        #25d366;
  --wa-dark:   #128c3e;
  --border:    #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow:    0 4px 16px rgba(0,0,0,.09);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
  --radius:    12px;
  --radius-sm: 8px;
  --font:      'Inter', system-ui, -apple-system, sans-serif;
  --trans:     .2s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--dark); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ---------- Container ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.5rem; border-radius: 8px;
  font-weight: 600; font-size: .95rem; cursor: pointer;
  transition: all var(--trans); text-decoration: none; white-space: nowrap;
}
.btn--primary  { background: var(--red); color: var(--white); }
.btn--primary:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn--whatsapp { background: var(--wa); color: var(--white); }
.btn--whatsapp:hover { background: var(--wa-dark); transform: translateY(-1px); }
.btn--white    { background: var(--white); color: var(--red); font-weight: 700; }
.btn--white:hover { background: var(--light); }
.btn--outline-white { border: 2px solid rgba(255,255,255,.8); color: var(--white); }
.btn--outline-white:hover { background: rgba(255,255,255,.15); }
.btn--lg  { padding: .9rem 2rem; font-size: 1rem; }
.btn--sm  { padding: .5rem 1.1rem; font-size: .875rem; }
.btn--full { width: 100%; justify-content: center; }
.btn--wa-sm { background: var(--wa); color: var(--white); padding: .55rem .9rem; border-radius: 8px; }
.btn--wa-sm:hover { background: var(--wa-dark); }
.btn--outline-red { border: 2px solid var(--red); color: var(--red); background: transparent; }
.btn--outline-red:hover { background: var(--red); color: var(--white); }

/* ---------- Section Commons ---------- */
.section { padding: 5rem 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-title { font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 800; color: var(--dark); margin-bottom: .75rem; }
.section-sub { color: var(--mid); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.section--light { background: var(--light); }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--dark-2); color: #94a3b8;
  font-size: .8rem; padding: .5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; }
.topbar-item {
  display: flex; align-items: center; gap: .35rem; color: #94a3b8;
  font-size: .8rem; transition: color var(--trans);
}
.topbar-item:hover, .topbar-email:hover { color: var(--white); }
.topbar-item svg { flex-shrink: 0; color: var(--red); }
.topbar-sep { color: #334155; }
.topbar-social {
  display: flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 6px;
  background: rgba(255,255,255,.06); color: #94a3b8;
  transition: all var(--trans);
}
.topbar-social:hover { background: var(--red); color: var(--white); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--trans);
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.1); }
.header-inner { display: flex; align-items: center; gap: 1.25rem; height: 68px; }
.logo img { height: 50px; width: auto; }
.main-nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: .15rem; }
.nav-link {
  padding: .5rem .85rem; border-radius: var(--radius-sm);
  font-weight: 600; font-size: .9rem; color: var(--dark);
  transition: color var(--trans), background var(--trans);
}
.nav-link:hover, .nav-link.active { color: var(--red); background: var(--red-light); }

/* Dropdown */
.has-dropdown { position: relative; }
/* Split: link + chevron button */
.dropdown-trigger { display: flex; align-items: center; }
.dropdown-trigger .nav-link { padding-right: .15rem; }
.dropdown-toggle {
  display: flex; align-items: center; padding: .45rem .3rem;
  background: none; border: none; cursor: pointer; border-radius: 6px;
}
.dropdown-toggle:hover { background: var(--red-light); }
.nav-chevron { flex-shrink: 0; transition: transform var(--trans); color: var(--mid); }
.has-dropdown:hover .nav-chevron,
.has-dropdown[data-open] .nav-chevron { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute; top: 100%; left: 0;
  padding-top: 8px; /* görsel boşluk — ama hover alanı kesintisiz */
  background: transparent;
  opacity: 0; visibility: hidden;
  transition: all .18s ease; pointer-events: none;
  min-width: 220px;
}
.dropdown-menu-inner {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: .5rem 0;
  transform: translateY(-6px); transition: transform .18s ease;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown[data-open] .dropdown-menu { opacity: 1; visibility: visible; pointer-events: all; }
.has-dropdown:hover .dropdown-menu-inner,
.has-dropdown[data-open] .dropdown-menu-inner { transform: translateY(0); }
.dropdown-item {
  display: flex; align-items: center; gap: .65rem;
  padding: .6rem 1rem; font-size: .9rem; font-weight: 500;
  transition: background var(--trans), color var(--trans); color: var(--dark);
}
.dropdown-item:hover { background: var(--red-light); color: var(--red); }
.dd-icon { font-size: 1rem; }
.brand-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

.header-cta { flex-shrink: 0; display: flex; align-items: center; gap: .5rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: .5rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all var(--trans); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--white); overflow-y: auto; padding: 1.25rem;
  z-index: 1001; border-top: 2px solid var(--red);
}
.mobile-menu.open { display: block; }
.mob-link {
  display: block; padding: .75rem .25rem; font-weight: 600; font-size: .95rem;
  border-bottom: 1px solid var(--border); color: var(--dark);
  transition: color var(--trans);
}
.mob-link:hover { color: var(--red); }
.mob-link--sub { padding: .55rem .25rem .55rem 1.25rem; font-weight: 500; font-size: .875rem; color: var(--mid); border-bottom: none; }
.mob-link--sub:hover { color: var(--red); }
.mob-section { border-bottom: 1px solid var(--border); }
/* Mobil: kategori linki + chevron yan yana */
.mob-section-header { display: flex; align-items: center; justify-content: space-between; }
.mob-link--cat { flex: 1; border-bottom: none; padding-right: .5rem; }
.mob-section-toggle {
  display: flex; align-items: center; justify-content: center;
  padding: .75rem .5rem; background: none; border: none; cursor: pointer; flex-shrink: 0;
}
.mob-chevron { flex-shrink: 0; transition: transform var(--trans); color: var(--mid); }
.mob-section-toggle[aria-expanded="true"] .mob-chevron { transform: rotate(180deg); }

/* SEO footer band — compact scrollable area at bottom of listing pages */
.seo-footer-band {
  background: var(--light); border-top: 1px solid var(--border);
  padding: 1.25rem 0;
}
.seo-footer-label {
  font-size: .7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--mid); margin-bottom: .5rem;
}
.seo-footer-scroll {
  max-height: 72px; overflow-y: auto;
  font-size: .78rem; color: #8a9ab0; line-height: 1.75;
  padding-right: .5rem;
}
.seo-footer-scroll p { margin: 0; }
.seo-footer-scroll::-webkit-scrollbar { width: 3px; }
.seo-footer-scroll::-webkit-scrollbar-track { background: var(--border); border-radius: 4px; }
.seo-footer-scroll::-webkit-scrollbar-thumb { background: #c0ccd8; border-radius: 4px; }
.seo-footer-scroll::-webkit-scrollbar-thumb:hover { background: var(--mid); }
.mob-submenu { display: none; padding-bottom: .5rem; }
.mob-submenu.open { display: block; }
.mob-cta { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; background: linear-gradient(135deg, var(--dark) 0%, #162033 100%); color: var(--white); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('/assets/img/hero-pattern.svg') center/cover; opacity: .03; pointer-events: none; }
.hero::before {
  content: ''; position: absolute; top: -30%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,16,46,.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; padding: 5.5rem 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(200,16,46,.15); border: 1px solid rgba(200,16,46,.35);
  color: #fca5a5; padding: .4rem 1rem; border-radius: 99px;
  font-size: .82rem; font-weight: 600; margin-bottom: 1.5rem; letter-spacing: .02em;
}
.hero-title { font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 800; line-height: 1.12; margin-bottom: 1.25rem; }
.hero-title--brand { color: var(--red); }
.hero-subtitle { font-size: 1.1rem; color: #9fb5cc; margin-bottom: 2rem; line-height: 1.72; }
.hero-subtitle strong { color: var(--white); }
.hero-cta-group { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.75rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.25rem; font-size: .82rem; color: #64748b; }
.hero-trust span { font-weight: 600; color: #94a3b8; }
.hero-image { display: flex; justify-content: center; align-items: center; }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1.25rem; }
.service-card {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 1.75rem 1.5rem; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); transition: all .22s ease; text-decoration: none; color: var(--dark);
}
.service-card:hover { border-color: var(--red); box-shadow: var(--shadow); transform: translateY(-3px); }
.service-icon { font-size: 2rem; margin-bottom: .85rem; }
.service-name { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; }
.service-short { font-size: .875rem; color: var(--mid); line-height: 1.55; flex: 1; margin-bottom: 1rem; }
.service-cta { font-size: .875rem; font-weight: 700; color: var(--red); }

/* ============================================================
   BRANDS GRID
   ============================================================ */
.brands-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.25rem; }
.brand-card {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 2rem 1.5rem; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); transition: all .22s ease; text-decoration: none; color: var(--dark);
  border-top: 3px solid var(--brand-color, var(--red));
}
.brand-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.brand-logo-wrap { height: 52px; display: flex; align-items: center; margin-bottom: 1rem; }
.brand-logo-wrap img { height: 40px; width: auto; max-width: 140px; object-fit: contain; }
.brand-card-name { font-size: 1.1rem; font-weight: 800; margin-bottom: .25rem; }
.brand-card-tagline { font-size: .875rem; color: var(--mid); margin-bottom: 1rem; flex: 1; }
.brand-card-link { font-size: .875rem; font-weight: 700; color: var(--red); }

/* ============================================================
   WHY SECTION
   ============================================================ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-items { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.why-item { display: flex; gap: 1.1rem; }
.why-icon {
  font-size: 1.5rem; flex-shrink: 0; width: 50px; height: 50px;
  background: var(--red-light); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.why-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: .3rem; }
.why-item p { font-size: .875rem; color: var(--mid); line-height: 1.6; }
.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat-card { background: var(--dark); color: var(--white); padding: 2rem 1.5rem; border-radius: var(--radius); text-align: center; }
.stat-num { display: block; font-size: 2.5rem; font-weight: 800; color: var(--red); margin-bottom: .35rem; }
.stat-label { font-size: .82rem; color: #64748b; font-weight: 500; }

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section { background: var(--light); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; }
.process-grid::before {
  content: ''; position: absolute; top: 40px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
  height: 2px; background: linear-gradient(90deg, var(--red) 0%, rgba(200,16,46,.2) 100%);
  z-index: 0;
}
.process-step {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 2rem 1.25rem; position: relative; z-index: 1;
}
.process-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 800; color: var(--red);
  margin-bottom: 1.25rem; box-shadow: var(--shadow);
  position: relative; z-index: 2;
}
.process-icon { font-size: 1.5rem; margin-bottom: .75rem; }
.process-step h3 { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; color: var(--dark); }
.process-step p { font-size: .855rem; color: var(--mid); line-height: 1.6; }

/* ============================================================
   COUNTERS SECTION
   ============================================================ */
.counters-section {
  background: linear-gradient(135deg, var(--dark) 0%, #162033 100%);
  color: var(--white); padding: 4rem 0;
}
.counters-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.counter-item { text-align: center; }
.counter-num {
  font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 800; color: var(--red);
  display: block; line-height: 1.1; margin-bottom: .4rem;
}
.counter-suffix { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; color: var(--red); }
.counter-label { font-size: .9rem; color: #94a3b8; font-weight: 500; }

/* ============================================================
   BLOG PREVIEW SECTION
   ============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-bottom: 2.5rem; }
.blog-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: all .22s ease; display: flex; flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.blog-card-img {
  height: 200px; overflow: hidden; background: var(--light);
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-cat {
  display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; color: var(--red); margin-bottom: .65rem;
}
.blog-card h3 { font-size: 1.05rem; font-weight: 700; line-height: 1.4; margin-bottom: .6rem; color: var(--dark); flex: 1; }
.blog-card h3 a { color: inherit; }
.blog-card h3 a:hover { color: var(--red); }
.blog-excerpt { font-size: .875rem; color: var(--mid); line-height: 1.6; margin-bottom: 1rem; }
.blog-meta { display: flex; align-items: center; gap: .75rem; font-size: .78rem; color: var(--mid); margin-top: auto; }
.blog-meta-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--border); }
.blog-all { display: flex; justify-content: center; }

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section { background: var(--light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  position: relative; display: flex; flex-direction: column; gap: 1rem;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: 1rem; right: 1.25rem;
  font-size: 4rem; line-height: 1; color: var(--red-light);
  font-family: Georgia, serif;
}
.testimonial-stars { display: flex; gap: .2rem; }
.testimonial-stars svg { color: #f59e0b; }
.testimonial-body { font-size: .9rem; color: var(--dark-3); line-height: 1.7; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; margin-top: auto; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--red-light); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; color: var(--red); flex-shrink: 0;
}
.testimonial-name { font-size: .9rem; font-weight: 700; color: var(--dark); }
.testimonial-location { font-size: .78rem; color: var(--mid); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%); color: var(--white); padding: 3.5rem 0; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band-text h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 800; margin-bottom: .4rem; }
.cta-band-text p { opacity: .85; font-size: 1rem; }
.cta-band-btns { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--light); }
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: .5rem; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-item.open { border-color: var(--red); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.25rem; font-size: .95rem; font-weight: 600; text-align: left;
  transition: color var(--trans);
}
.faq-q:hover { color: var(--red); }
.faq-q[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); color: var(--red); }
.faq-chevron { flex-shrink: 0; color: var(--mid); transition: transform var(--trans); }
.faq-a { display: none; padding: 0 1.25rem 1.1rem; font-size: .9rem; color: var(--mid); line-height: 1.65; }
.faq-a.open { display: block; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-bar { background: var(--light); border-bottom: 1px solid var(--border); padding: .75rem 0; }
.breadcrumb { display: flex; align-items: center; gap: .5rem; font-size: .875rem; color: var(--mid); flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span[aria-current] { color: var(--dark); font-weight: 600; }

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero { background: linear-gradient(135deg, var(--dark) 0%, #162033 100%); color: var(--white); padding: 4rem 0; }
.page-hero--simple { padding: 3rem 0; text-align: center; }
.page-hero--simple h1 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; }
.page-hero--simple p { margin-top: .5rem; opacity: .8; font-size: 1.05rem; }
.page-hero--brand { border-top: 4px solid var(--brand-color, var(--red)); }
.page-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.page-hero-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.page-hero-content h1 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: .75rem; }
.page-hero-sub { color: #9fb5cc; font-size: 1.05rem; margin-bottom: 1.75rem; }
.brand-hero-logo { margin-bottom: 1.25rem; background: rgba(255,255,255,.1); padding: 1rem 1.5rem; border-radius: var(--radius-sm); display: inline-block; }
.brand-hero-logo img { height: 48px; width: auto; }

/* ============================================================
   CONTENT / SIDEBAR LAYOUT
   ============================================================ */
.content-sidebar-layout { display: grid; grid-template-columns: 1fr 320px; gap: 2.5rem; align-items: start; }

/* ---------- PROSE ---------- */
.prose h2 { font-size: 1.55rem; font-weight: 800; margin: 0 0 1rem; color: var(--dark); }
.prose h3 { font-size: 1.2rem; font-weight: 700; margin: 2rem 0 .75rem; color: var(--dark); }
.prose h4 { font-size: 1rem; font-weight: 700; margin: 1.5rem 0 .5rem; }
.prose p { margin-bottom: 1rem; color: var(--dark-3); line-height: 1.75; }
.prose ul, .prose ol { margin: 0 0 1rem 1.5rem; }
.prose li { margin-bottom: .5rem; color: var(--dark-3); }
.prose strong { color: var(--dark); }
.prose a { color: var(--red); text-decoration: underline; }

/* Check list */
.check-list { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.check-list li { display: flex; align-items: baseline; gap: .65rem; padding: .4rem 0; font-size: .95rem; color: var(--dark-3); border-bottom: 1px solid var(--border); }
.check-list li::before { content: '✓'; color: var(--red); font-weight: 700; flex-shrink: 0; }

/* Brand tags */
.brand-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
.brand-tag { padding: .35rem .9rem; border-radius: 99px; font-size: .85rem; font-weight: 600; border: 2px solid var(--c, var(--red)); color: var(--c, var(--red)); transition: all var(--trans); }
.brand-tag:hover { background: var(--c, var(--red)); color: var(--white); }

/* ---------- SIDEBAR ---------- */
.sidebar { display: flex; flex-direction: column; gap: 1.25rem; position: sticky; top: 90px; }
.sidebar-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.sidebar-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .75rem; color: var(--dark); }
.sidebar-card p { font-size: .9rem; color: var(--mid); margin-bottom: .75rem; }
.sidebar-card--adres { border-left: 3px solid var(--red); }
.sidebar-links { display: flex; flex-direction: column; gap: .25rem; }
.sidebar-links a { display: block; padding: .4rem .5rem; font-size: .875rem; border-radius: 6px; color: var(--dark-3); font-weight: 500; transition: all var(--trans); }
.sidebar-links a:hover { background: var(--red-light); color: var(--red); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 320px 1fr; gap: 2.5rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.contact-card-icon { font-size: 1.75rem; margin-bottom: .75rem; }
.contact-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.contact-card p { font-size: .9rem; color: var(--mid); margin-bottom: .25rem; }
.contact-link { color: var(--red); font-weight: 700; font-size: 1.1rem; }
.contact-sub { font-size: .8rem; color: var(--mid); }
.form-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 1.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group label { font-size: .875rem; font-weight: 600; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: .75rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font); font-size: .95rem; color: var(--dark);
  transition: border-color var(--trans), box-shadow var(--trans);
  background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(200,16,46,.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-error { background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; padding: .75rem 1rem; border-radius: var(--radius-sm); font-size: .9rem; margin-bottom: 1rem; }
.form-success { text-align: center; padding: 3rem 1.5rem; }
.form-success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: .5rem; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-layout { display: grid; grid-template-columns: 1fr 340px; gap: 2.5rem; }
.about-sidebar .sidebar-card { position: sticky; top: 90px; }

/* ============================================================
   MAP SECTION
   ============================================================ */
.map-full { width: 100%; height: 480px; display: block; }
.map-full iframe { display: block; width: 100%; height: 100%; }

@media (max-width: 768px) {
  .map-full { height: 320px; }
}

/* ============================================================
   BLOG LIST PAGE
   ============================================================ */
.blog-list-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-filter { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.5rem; }
.blog-filter-btn {
  padding: .45rem 1rem; border-radius: 99px; font-size: .85rem; font-weight: 600;
  border: 2px solid var(--border); color: var(--mid); background: var(--white);
  cursor: pointer; transition: all var(--trans);
}
.blog-filter-btn:hover, .blog-filter-btn.active { border-color: var(--red); color: var(--red); background: var(--red-light); }

/* ── Hizmetler / Markalar listeleme sayfası ── */
.services-list-grid { display: flex; flex-direction: column; gap: 1rem; }
.service-list-card {
  display: flex; align-items: flex-start; gap: 1.5rem;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem 1.75rem; text-decoration: none; color: inherit;
  transition: all .22s ease; position: relative;
}
.service-list-card:hover { box-shadow: var(--shadow); border-color: var(--red); transform: translateX(4px); }
.service-list-icon { font-size: 2.25rem; flex-shrink: 0; line-height: 1; padding-top: .2rem; }
.service-list-body { flex: 1; }
.service-list-body h2 { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: .35rem; }
.service-list-body p { font-size: .9rem; color: var(--mid); margin-bottom: .75rem; }
.service-list-features { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem .75rem; margin: 0; padding: 0; }
.service-list-features li { font-size: .78rem; color: var(--mid); }
.service-list-features li::before { content: '✓ '; color: var(--red); font-weight: 700; }
.service-list-arrow { flex-shrink: 0; color: var(--mid); transition: color .2s, transform .2s; align-self: center; }
.service-list-card:hover .service-list-arrow { color: var(--red); transform: translateX(4px); }

.brands-list-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.brand-list-card {
  display: flex; align-items: flex-start; gap: 1.25rem;
  background: var(--white); border: 1px solid var(--border); border-left: 4px solid var(--brand-color, var(--red));
  border-radius: var(--radius); padding: 1.5rem; text-decoration: none; color: inherit;
  transition: all .22s ease;
}
.brand-list-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.brand-list-logo { width: 120px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; padding: .5rem; background: var(--light); border-radius: 8px; }
.brand-list-logo img { width: 100%; height: auto; object-fit: contain; }
.brand-list-body { flex: 1; }
.brand-list-body h2 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: .3rem; }
.brand-list-body p { font-size: .875rem; color: var(--mid); margin-bottom: .6rem; }

/* Related posts section header */
.related-posts-header { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.related-posts-header .section-title { margin-bottom: 0; }
/* blog-card used as <a> link */
a.blog-card { text-decoration: none; color: inherit; }
a.blog-card h3 { color: var(--dark); }
a.blog-card:hover h3 { color: var(--red); }

/* Blog card full-width variant */
.blog-card--featured { grid-column: span 3; display: grid; grid-template-columns: 1fr 1fr; }
.blog-card--featured .blog-card-img { height: auto; min-height: 280px; }

/* ============================================================
   BLOG POST PAGE
   ============================================================ */
.post-hero { background: linear-gradient(135deg, var(--dark) 0%, #162033 100%); color: var(--white); padding: 4rem 0; }
.post-hero-meta { display: flex; flex-wrap: wrap; align-items: center; gap: .75rem; margin-bottom: 1.25rem; font-size: .85rem; color: #94a3b8; }
.post-hero-meta a { color: #fca5a5; font-weight: 600; }
.post-hero-meta .sep { color: #334155; }
.post-hero h1 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 800; margin-bottom: 1rem; line-height: 1.2; }
.post-hero-excerpt { font-size: 1.05rem; color: #9fb5cc; line-height: 1.7; }
.post-cover { border-radius: var(--radius); overflow: hidden; margin-bottom: 2.5rem; max-height: 480px; }
.post-cover img { width: 100%; height: 100%; object-fit: cover; }
.post-share { display: flex; align-items: center; gap: .75rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border); flex-wrap: wrap; }
.post-share-label { font-size: .875rem; font-weight: 600; color: var(--mid); }
.share-btn {
  display: flex; align-items: center; gap: .4rem;
  padding: .5rem 1rem; border-radius: 8px; font-size: .85rem; font-weight: 600;
  transition: all var(--trans); color: var(--white);
}
.share-btn--wa { background: var(--wa); }
.share-btn--wa:hover { background: var(--wa-dark); }
.share-btn--fb { background: #1877f2; }
.share-btn--fb:hover { background: #1565d8; }
.share-btn--copy { background: var(--dark-3); }
.share-btn--copy:hover { background: var(--dark-2); }
.post-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 1.5rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--dark-2); color: #94a3b8; }
.footer-top { padding: 4rem 0 3rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr 1.2fr; gap: 2.5rem; }

.footer-brand {}
.footer-logo { display: inline-block; margin-bottom: 1rem; }
.footer-logo img { filter: brightness(0) invert(1); height: 48px; width: auto; }
.footer-tagline { font-size: .875rem; color: #64748b; line-height: 1.6; margin-bottom: 1.25rem; }

.footer-contact-list { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.25rem; }
.footer-contact-item {
  display: flex; align-items: center; gap: .55rem;
  font-size: .85rem; color: #64748b; transition: color var(--trans);
}
.footer-contact-item:hover { color: var(--white); }
.footer-contact-item svg { flex-shrink: 0; color: var(--red); }
.footer-phone { font-weight: 700; color: var(--white) !important; font-size: .9rem; }

.footer-social { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.social-btn {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,.07); color: #94a3b8;
  transition: all var(--trans);
}
.social-btn:hover { transform: translateY(-2px); color: var(--white); }
.social-btn--instagram:hover { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-btn--facebook:hover { background: #1877f2; }
.social-btn--whatsapp:hover { background: var(--wa); }

.footer-col {}
.footer-heading { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--white); margin-bottom: 1.1rem; }

.footer-links { display: flex; flex-direction: column; gap: .45rem; }
.footer-links a { font-size: .875rem; color: #64748b; transition: color var(--trans); display: flex; align-items: center; gap: .4rem; }
.footer-links a:hover { color: var(--white); }
.footer-link-more { color: var(--red) !important; font-weight: 600; font-size: .8rem; }

.brand-dot-sm { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

.footer-links--blog { gap: .6rem; }
.blog-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

.footer-hours-list { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.25rem; }
.footer-hours-list li { display: flex; justify-content: space-between; align-items: center; font-size: .855rem; }
.footer-hours-list li span { color: #64748b; }
.footer-hours-list li strong { color: var(--white); font-weight: 600; }
.footer-hours-list li.closed strong { color: #475569; }

.footer-rating {}
.footer-stars { display: flex; gap: .15rem; margin-bottom: .4rem; }
.footer-rating span { font-size: .78rem; color: #64748b; }
.footer-dev a { color: var(--red); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.05); padding: 1.25rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; font-size: .78rem; color: #475569; flex-wrap: wrap; gap: .5rem; }

/* ============================================================
   FLOATING CTA
   ============================================================ */
.float-cta {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  display: flex; flex-direction: column; align-items: flex-end; gap: .65rem;
  z-index: 500; opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.float-btn {
  display: flex; align-items: center; gap: .6rem; padding: .7rem 1.2rem;
  border-radius: 99px; font-size: .875rem; font-weight: 700; color: var(--white);
  box-shadow: var(--shadow-lg); transition: all var(--trans); cursor: pointer;
}
.float-btn:hover { transform: scale(1.04); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.float-btn--wa   { background: var(--wa); }
.float-btn--wa:hover { background: var(--wa-dark); }
.float-btn--call { background: var(--red); }
.float-btn--call:hover { background: var(--red-dark); }
.float-label { font-size: .85rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner, .page-hero-inner { grid-template-columns: 1fr; }
  .hero-image, .page-hero-img { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: span 3; }
  .content-sidebar-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .about-layout, .contact-layout { grid-template-columns: 1fr; }
  .about-sidebar .sidebar-card { position: static; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
  .counters-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .blog-card--featured { grid-column: span 1; display: flex; flex-direction: column; }
  .blog-card--featured .blog-card-img { min-height: 200px; }
  .blog-list-grid { grid-template-columns: 1fr 1fr; }
  .post-related-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .brands-grid { grid-template-columns: 1fr 1fr; }
  .brands-list-grid { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-btns { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .form-row { grid-template-columns: 1fr; }
  .float-label { display: none; }
  .float-btn { padding: .85rem; border-radius: 50%; }
  .why-stats { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-list-grid { grid-template-columns: 1fr; }
  .post-related-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .services-grid, .brands-grid { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { justify-content: center; }
  .process-grid { grid-template-columns: 1fr; }
  .counters-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content > * { animation: fadeUp .6s ease both; }
.hero-badge       { animation-delay: .1s; }
.hero-title       { animation-delay: .2s; }
.hero-subtitle    { animation-delay: .3s; }
.hero-cta-group   { animation-delay: .4s; }
.hero-trust       { animation-delay: .5s; }

.counter-num[data-target] { transition: none; }

/* Pagination */
.pagination { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 3rem; }
.pagination-pages { display: flex; gap: 0.5rem; }
.pagination .btn { padding: .5rem 1rem; min-width: 40px; text-align: center; }

/* ============================================================
   MÜŞTERİ YORUMLARI
   ============================================================ */
.reviews-section { background: var(--light); }
.reviews-stars { color: #f59e0b; letter-spacing: .1em; font-size: 1.1rem; margin-left: .4rem; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--trans);
}
.review-card:hover { box-shadow: var(--shadow); }
.review-header { display: flex; align-items: center; gap: .75rem; }
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review-meta { flex: 1; min-width: 0; }
.review-author { display: block; font-size: .9rem; font-weight: 700; color: var(--dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.review-source { font-size: .75rem; color: var(--mid); }
.review-rating { color: #f59e0b; font-size: 1rem; letter-spacing: .05em; flex-shrink: 0; }
.review-body { font-size: .88rem; color: var(--dark-3); line-height: 1.7; font-style: italic; }
.reviews-cta { text-align: center; margin-top: 2rem; }

@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; }
}
