/* ============================================================
   DURSUN OĞULLARI HURDACILIK – ANA STİL DOSYASI
   Mobile-First | Core Web Vitals Optimized | Google Ads CRO
   ============================================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Colors */
  --primary: #1B5E20;
  --primary-light: #4CAF50;
  --primary-lighter: #66BB6A;
  --accent: #FFC107;
  --accent-dark: #FFA000;
  --dark: #1A1A2E;
  --darker: #0F0F1A;
  --darkest: #090912;
  --surface: #16213E;
  --surface-light: #1A2744;
  --border: rgba(255,255,255,0.08);
  --text: #E8E8E8;
  --text-muted: #9CA3AF;
  --white: #FFFFFF;
  --whatsapp: #25D366;
  --whatsapp-dark: #1EBE57;
  --call: #FF5722;
  --call-dark: #E64A19;

  /* Typography */
  --font: 'Poppins', sans-serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 2.5rem;
  --fs-4xl: 3rem;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* Misc */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.4);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 70px;
}

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  font-weight: 400;
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--text);
  background-color: var(--darker);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  font-family: var(--font);
  cursor: pointer;
  border: none;
  outline: none;
}

/* ---------- UTILITY ---------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section-title {
  text-align: center;
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-xl);
  position: relative;
  padding-bottom: var(--space-md);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-light), var(--accent));
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: var(--fs-sm);
  font-weight: 400;
  max-width: 600px;
  margin: calc(-1 * var(--space-md)) auto var(--space-2xl);
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 15, 26, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: var(--header-height);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.header-logo img {
  height: 46px;
  width: auto;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Navigation */
.main-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100dvh;
  background: var(--darkest);
  padding: calc(var(--header-height) + var(--space-lg)) var(--space-lg) var(--space-lg);
  overflow-y: auto;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1050;
  border-left: 1px solid var(--border);
}

.main-nav.open {
  right: 0;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1040;
}

.nav-overlay.active {
  display: block;
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  background: rgba(76, 175, 80, 0.1);
  color: var(--primary-light);
}

.nav-link .arrow {
  font-size: 0.65rem;
  transition: transform var(--transition);
}

.nav-item.open > .nav-link .arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown-menu {
  display: none;
  padding-left: var(--space-md);
}

.nav-item.open > .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: var(--space-xs) var(--space-md);
  font-size: var(--fs-xs);
  font-weight: 400;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border-left: 2px solid transparent;
}

.dropdown-menu a:hover {
  color: var(--primary-light);
  background: rgba(76, 175, 80, 0.06);
  border-left-color: var(--primary-light);
}

/* ---------- HERO SLIDER ---------- */
.hero-slider {
  position: relative;
  width: 100%;
  min-height: 480px;
  overflow: hidden;
  background: var(--darkest);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.60) 50%,
    rgba(0,0,0,0.80) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-md);
}

.slide-content {
  max-width: 800px;
}

.slide-content h2 {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

.slide-content p {
  font-size: var(--fs-sm);
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-md);
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

/* Badges */
.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 5px 12px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--white);
  white-space: nowrap;
}

.badge-icon {
  font-size: 0.9rem;
}

/* CTA Buttons */
.cta-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex: 1;
  min-width: 180px;
  padding: 12px 24px;
  font-size: var(--fs-sm);
  font-weight: 500;
  border-radius: 50px;
  transition: all var(--transition);
  text-align: center;
  letter-spacing: 0.02em;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.cta-btn:hover::before {
  transform: translateX(100%);
}

.cta-call {
  background: linear-gradient(135deg, var(--call), var(--call-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255, 87, 34, 0.4);
}

.cta-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 87, 34, 0.5);
}

.cta-whatsapp {
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.cta-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.45);
}

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--primary-light);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}

/* ---------- SECTION: HURDA ÇEŞİTLERİ ---------- */
.section-hurda {
  padding: var(--space-2xl) 0;
  background: var(--darker);
}

.hurda-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.hurda-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
  text-decoration: none;
}

.hurda-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-light);
  box-shadow: 0 8px 32px rgba(76, 175, 80, 0.15);
}

.hurda-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--surface-light), var(--dark));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hurda-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hurda-card-img .placeholder-icon {
  font-size: 2.5rem;
  opacity: 0.3;
}

.hurda-card-body {
  padding: var(--space-md);
  width: 100%;
}

.hurda-card-body h3 {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.hurda-card-body p {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  font-weight: 400;
}

.hurda-card-arrow {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  width: 28px;
  height: 28px;
  background: rgba(76, 175, 80, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--primary-light);
  transition: var(--transition);
}

.hurda-card:hover .hurda-card-arrow {
  background: var(--primary-light);
  color: var(--white);
}

/* ---------- SECTION: HİZMET BÖLGELERİ ---------- */
.section-bolgeler {
  padding: var(--space-2xl) 0;
  background: var(--dark);
}

.bolge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.bolge-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-sm) var(--space-md);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--text);
  text-align: center;
  transition: all var(--transition);
}

.bolge-card:hover {
  background: rgba(76, 175, 80, 0.12);
  border-color: var(--primary-light);
  color: var(--primary-lighter);
  transform: translateY(-2px);
}

.bolge-card .bolge-icon {
  font-size: 0.85rem;
  color: var(--primary-light);
}

/* ---------- SUB-PAGE: CTA TOP BANNER ---------- */
.subpage-cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: var(--space-lg) var(--space-md);
  text-align: center;
}

.subpage-cta-banner h1 {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.subpage-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.subpage-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 6px 14px;
  background: rgba(255,255,255,0.18);
  border-radius: 50px;
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--white);
}

.subpage-cta-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.subpage-cta-group .cta-btn {
  flex: 1;
  min-width: 180px;
}

/* ---------- SUB-PAGE: CONTENT AREA ---------- */
.subpage-content {
  padding: var(--space-2xl) 0;
  background: var(--darker);
}

.subpage-content article {
  max-width: 1100px;
  margin: 0 auto;
}

.subpage-content article h2 {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.subpage-content article h3 {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--primary-light);
  margin: var(--space-xl) 0 var(--space-md);
}

.subpage-content article p {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.subpage-content article ul {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.subpage-content article ul li {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
  list-style: disc;
}

/* ---------- ABOUT PAGE ---------- */
.about-section {
  padding: var(--space-2xl) 0;
  background: var(--darker);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content h2 {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-md);
}

.about-content p {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.about-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.about-value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  transition: var(--transition);
}

.about-value-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

.about-value-card .value-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}

.about-value-card h3 {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.about-value-card p {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ---------- CONTACT PAGE ---------- */
.contact-section {
  padding: var(--space-2xl) 0;
  background: var(--darker);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--primary-light);
}

.contact-card .contact-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}

.contact-card h3 {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.contact-card p,
.contact-card a {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-card a:hover {
  color: var(--primary-light);
}

.contact-map {
  margin-top: var(--space-xl);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 9;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: var(--fs-sm);
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--darkest);
  border-top: 1px solid var(--border);
  padding: var(--space-2xl) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand img {
  height: 42px;
  margin-bottom: var(--space-md);
}

.footer-brand p {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: var(--space-sm);
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-light);
  border-radius: 1px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-links a {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  transition: var(--transition);
  padding: 2px 0;
}

.footer-links a:hover {
  color: var(--primary-light);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

.footer-contact-item .fc-icon {
  color: var(--primary-light);
  font-size: var(--fs-sm);
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  text-align: center;
}

.footer-bottom p {
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

/* ---------- FLOATING CTA ---------- */
.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}

.float-btn:hover {
  transform: scale(1.1);
}

.float-btn-whatsapp {
  background: var(--whatsapp);
}

.float-btn-call {
  background: var(--call);
}

/* Pulse animation */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.float-btn-whatsapp {
  animation: pulse 2.5s infinite;
}

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
  padding: var(--space-md) 0;
  background: var(--dark);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-xs);
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

.breadcrumb-list a {
  color: var(--primary-light);
  font-weight: 500;
}

.breadcrumb-list a:hover {
  text-decoration: underline;
}

.breadcrumb-list .separator {
  color: var(--text-muted);
  font-size: 0.6rem;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS – MOBILE FIRST
   ============================================================ */

/* Tablet: >= 576px */
@media (min-width: 576px) {
  .slide-content h2 {
    font-size: var(--fs-2xl);
  }
  .slide-content p {
    font-size: var(--fs-base);
  }
  .badge {
    font-size: 0.85rem;
    padding: 6px 16px;
  }
  .badge-icon {
    font-size: 1rem;
  }
  .cta-group {
    max-width: 500px;
  }
  .cta-btn {
    min-width: 200px;
  }
  .subpage-cta-group {
    max-width: 500px;
  }
  .subpage-cta-group .cta-btn {
    min-width: 200px;
  }
  .hurda-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .bolge-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-values {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet Landscape / Small Desktop: >= 768px */
@media (min-width: 768px) {
  .hero-slider {
    min-height: auto;
    aspect-ratio: 16 / 9;
  }
  .section-title {
    font-size: var(--fs-2xl);
  }
  .slide-content h2 {
    font-size: var(--fs-3xl);
  }
  .subpage-cta-banner h1 {
    font-size: var(--fs-xl);
  }
  .hurda-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }
  .bolge-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }
  .bolge-card {
    font-size: var(--fs-sm);
    padding: var(--space-md);
  }
}

/* Desktop: >= 992px */
@media (min-width: 992px) {
  :root {
    --header-height: 76px;
  }

  .hamburger {
    display: none;
  }

  .nav-overlay {
    display: none !important;
  }

  .main-nav {
    position: static;
    width: auto;
    max-width: none;
    height: auto;
    background: transparent;
    padding: 0;
    overflow: visible;
    border-left: none;
  }

  .nav-list {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }

  .nav-link {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--fs-sm);
  }

  .nav-link .arrow {
    margin-left: 4px;
  }

  /* Desktop dropdowns */
  .nav-item {
    position: relative;
  }

  .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: var(--darkest);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: var(--space-sm);
    box-shadow: var(--shadow-lg);
    z-index: 1100;
    max-height: 420px;
    overflow-y: auto;
  }

  .dropdown-menu a {
    padding: var(--space-xs) var(--space-md);
    font-size: var(--fs-xs);
    border-left: none;
  }

  .nav-item:hover > .dropdown-menu,
  .nav-item.open > .dropdown-menu {
    display: block;
  }

  /* Hero */
  .hero-slider {
    aspect-ratio: 21 / 9;
  }

  .slide-content h2 {
    font-size: var(--fs-4xl);
  }

  .slide-content p {
    font-size: var(--fs-md);
  }

  .badge {
    font-size: 0.95rem;
    padding: 8px 20px;
  }

  .badge-icon {
    font-size: 1.1rem;
  }

  .cta-btn {
    font-size: var(--fs-base);
    padding: 16px 36px;
  }

  /* Grids */
  .hurda-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .bolge-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Subpage */
  .subpage-cta-banner h1 {
    font-size: var(--fs-2xl);
  }

  /* About */
  .about-values {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Large Desktop: >= 1200px */
@media (min-width: 1200px) {
  .slide-content h2 {
    font-size: 3.5rem;
  }

  .hurda-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .bolge-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .section-title {
    font-size: var(--fs-3xl);
  }
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--darkest);
}
::-webkit-scrollbar-thumb {
  background: var(--surface-light);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* ---------- SELECTION ---------- */
::selection {
  background: var(--primary-light);
  color: var(--white);
}

/* ---------- HİZMET BÖLGELERİ FOTOĞRAFLI KARTLAR ---------- */
.bolge-photo-card {
  position: relative;
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  aspect-ratio: 4 / 3;
  transition: all var(--transition);
  border: 1px solid var(--border);
}

.bolge-photo-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-light);
  box-shadow: 0 8px 32px rgba(76, 175, 80, 0.15);
}

.bolge-photo-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bolge-photo-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bolge-photo-card:hover .bolge-photo-card-bg img {
  transform: scale(1.05);
}

.bolge-photo-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-md);
  z-index: 2;
}

.bolge-photo-card h3 {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.bolge-photo-card p {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.8);
  font-weight: 400;
  margin: 0;
}
