:root {
  --primary: #e63946;
  --primary-dark: #c0252f;
  --secondary: #1d3557;
  --secondary-light: #264573;
  --accent: #f4a261;
  --accent-light: #f7c59f;
  --light: #f1faee;
  --white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.2);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: 0.3s ease;
  --font-main: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  color: var(--gray-800);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { line-height: 1.3; font-weight: 700; color: var(--secondary); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===================== TOPBAR ===================== */
.topbar {
  background: var(--secondary);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.85rem;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.topbar-left { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar-left a { color: var(--accent-light); }
.topbar-left a:hover { color: var(--accent); }
.topbar-left i { margin-right: 6px; }
.topbar-right { display: flex; gap: 12px; }
.topbar-right a {
  color: var(--white);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  font-size: 0.85rem;
}
.topbar-right a:hover { background: var(--primary); }

/* ===================== HEADER ===================== */
.header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  min-width: 0;
  max-width: 100%;
}
.logo img {
  display: block;
  height: auto;
  width: auto;
  max-height: 102px;
  max-width: min(400px, 62vw);
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}
.logo-text { min-width: 0; flex: 1; }
.logo-text h1 { font-size: 1.5rem; color: var(--secondary); margin: 0; line-height: 1.2; }
.logo-text span { font-size: 0.88rem; color: var(--primary); font-weight: 500; }

.nav-menu { display: flex; align-items: center; gap: 5px; }
.nav-menu a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--gray-700);
  position: relative;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--primary); background: rgba(230,57,70,0.06); }

.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: '\f107'; font-family: 'Font Awesome 6 Free'; font-weight: 900; margin-left: 6px; font-size: 0.75rem; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 240px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1001;
  max-height: 400px;
  overflow-y: auto;
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}
.dropdown-menu a:hover { background: var(--light); color: var(--primary); }
.dropdown-label {
  padding: 8px 14px;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 4px;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--primary);
  font-size: 1rem;
}
.header-phone i {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.85rem;
  animation: pulse-phone 2s infinite;
}

@keyframes pulse-phone {
  0% { box-shadow: 0 0 0 0 rgba(230,57,70,0.4); }
  70% { box-shadow: 0 0 0 12px rgba(230,57,70,0); }
  100% { box-shadow: 0 0 0 0 rgba(230,57,70,0); }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 1002;
}
.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--secondary);
  border-radius: 3px;
  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); }

/* ===================== HERO SLIDER (1022×430 tasarım oranı) ===================== */
.hero {
  position: relative;
  width: 100%;
  max-width: 1022px;
  margin: 0 auto;
  aspect-ratio: 1022 / 430;
  height: auto;
  min-height: 0;
  overflow: hidden;
  background: var(--secondary);
  /* Tam 1022px genişlikte yükseklik tam 430px olur */
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background: var(--secondary);
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-slide.active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}
.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  /* Görsellerdeki yazıları kapatmamak için üst kısım şeffaf; butonlar için altta şerit */
  background: linear-gradient(
    to top,
    rgba(17, 28, 47, 0.92) 0%,
    rgba(29, 53, 87, 0.55) 38%,
    transparent 68%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  padding: 0 16px 72px;
  box-sizing: border-box;
}
.hero-overlay .container,
.hero-overlay-inner {
  width: 100%;
  max-width: 1200px;
  pointer-events: auto;
}
.hero-content { color: var(--white); max-width: 700px; }
.hero-content--cta-only {
  max-width: none;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.hero-content--cta-only .hero-buttons {
  justify-content: center;
  margin-bottom: 0;
}
.hero-buttons .btn {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.2);
}
.hero-badge i { color: var(--accent); }
.hero-content h2 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
}
.hero-content h2 span { color: var(--accent); }
.hero-content p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 550px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.slider-nav {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}
.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.slider-dot.active {
  background: var(--accent);
  border-color: var(--white);
  transform: scale(1.2);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  border-radius: 50%;
  cursor: pointer;
  z-index: 20;
  font-size: 1.1rem;
  transition: var(--transition);
}
.slider-arrow:hover { background: var(--primary); border-color: var(--primary); }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-main);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(230,57,70,0.35);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230,57,70,0.45);
}
.btn-secondary {
  background: var(--white);
  color: var(--secondary);
}
.btn-secondary:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--secondary);
  transform: translateY(-2px);
}
.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(244,162,97,0.35);
}
.btn-accent:hover {
  background: #e8943a;
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

/* ===================== SECTIONS ===================== */
.section { padding: 80px 0; }
.section-alt { background: var(--gray-100); }
.section-dark { background: var(--secondary); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 14px;
  position: relative;
}
.section-header h2 span { color: var(--primary); }
.section-header p { color: var(--gray-600); font-size: 1.05rem; }
.section-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin: 14px auto 0;
}

/* ===================== FEATURES BAR ===================== */
.features-bar {
  background: var(--white);
  margin-top: -50px;
  position: relative;
  z-index: 10;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 30px 40px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.feature-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: 1.3rem;
}
.feature-icon.red { background: rgba(230,57,70,0.1); color: var(--primary); }
.feature-icon.blue { background: rgba(29,53,87,0.1); color: var(--secondary); }
.feature-icon.orange { background: rgba(244,162,97,0.1); color: var(--accent); }
.feature-icon.green { background: rgba(42,157,143,0.1); color: #2a9d8f; }
.feature-item h4 { font-size: 0.95rem; margin-bottom: 2px; }
.feature-item p { font-size: 0.8rem; color: var(--gray-600); }

/* ===================== SERVICES ===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  transition: var(--transition);
}
.service-card:hover .service-icon { transform: scale(1.1); }
.service-icon.si-red { background: rgba(230,57,70,0.1); color: var(--primary); }
.service-icon.si-blue { background: rgba(29,53,87,0.1); color: var(--secondary); }
.service-icon.si-orange { background: rgba(244,162,97,0.1); color: var(--accent); }
.service-icon.si-green { background: rgba(42,157,143,0.1); color: #2a9d8f; }
.service-icon.si-purple { background: rgba(108,92,231,0.1); color: #6c5ce7; }
.service-icon.si-teal { background: rgba(0,206,209,0.1); color: #00ced1; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.service-card p { color: var(--gray-600); font-size: 0.9rem; margin-bottom: 18px; }
.service-card .btn { font-size: 0.85rem; padding: 10px 22px; }

/* ===================== WHY US ===================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.why-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.why-image img { width: 100%; height: 400px; object-fit: cover; }
.why-badge-float {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--primary);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
}
.why-badge-float span { font-size: 2rem; display: block; }
.why-content h2 { font-size: 2rem; margin-bottom: 16px; }
.why-content h2 span { color: var(--primary); }
.why-content > p { color: var(--gray-600); margin-bottom: 28px; }
.why-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.why-item i {
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(230,57,70,0.1);
  color: var(--primary);
  font-size: 0.85rem;
  margin-top: 2px;
}
.why-item div h4 { font-size: 0.95rem; margin-bottom: 2px; }
.why-item div p { font-size: 0.85rem; color: var(--gray-600); }

/* ===================== STATS ===================== */
.stats-section {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
  color: var(--white);
}
.stat-item i { font-size: 2rem; color: var(--accent); margin-bottom: 10px; }
.stat-number { font-size: 2.5rem; font-weight: 800; margin-bottom: 4px; }
.stat-label { font-size: 0.9rem; opacity: 0.85; }

/* ===================== DISTRICTS ===================== */
.districts-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}
.district-tab {
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  background: var(--gray-200);
  color: var(--gray-700);
  border: none;
  font-family: var(--font-main);
  font-size: 0.95rem;
}
.district-tab.active, .district-tab:hover {
  background: var(--primary);
  color: var(--white);
}
.districts-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.district-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  font-weight: 500;
  font-size: 0.9rem;
}
.district-card i { color: var(--primary); font-size: 0.85rem; }
.district-card:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.district-card:hover i { color: var(--white); }
.districts-panel { display: none; }
.districts-panel.active { display: block; }

/* ===================== TESTIMONIALS ===================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  position: relative;
}
.testimonial-card::before {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 2rem;
  color: var(--primary);
  opacity: 0.15;
  position: absolute;
  top: 20px;
  right: 24px;
}
.testimonial-stars { color: var(--accent); margin-bottom: 14px; font-size: 0.9rem; }
.testimonial-text { color: var(--gray-600); font-size: 0.9rem; margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}
.testimonial-author h4 { font-size: 0.9rem; margin-bottom: 2px; }
.testimonial-author p { font-size: 0.8rem; color: var(--gray-500); }

/* ===================== CTA SECTION ===================== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 70px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  top: -100px;
  right: -50px;
}
.cta-section::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  bottom: -60px;
  left: -30px;
}
.cta-section h2 { font-size: 2.2rem; color: var(--white); margin-bottom: 14px; }
.cta-section p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ===================== BRANDS ===================== */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  align-items: center;
}
.brand-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  font-weight: 600;
  color: var(--gray-600);
  font-size: 0.95rem;
}
a.brand-item {
  display: block;
  text-decoration: none;
  color: inherit;
}
.brand-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-3px);
}
.brand-item i { font-size: 1.5rem; display: block; margin-bottom: 8px; }

.brand-page-eyebrow {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}
.brand-page-content p {
  color: var(--gray-700);
  line-height: 1.85;
  margin-bottom: 16px;
}
.brand-page-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-col h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}
.footer-about p { font-size: 0.9rem; line-height: 1.8; margin-bottom: 16px; }
.footer-about .logo { margin-bottom: 16px; }
.footer-about .logo img {
  height: auto;
  max-height: 76px;
  max-width: 300px;
  width: auto;
  object-fit: contain;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--gray-400);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); color: var(--white); }
.footer-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--gray-400);
}
.footer-links a i { color: var(--primary); font-size: 0.7rem; }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}
.footer-contact-item i {
  width: 36px;
  height: 36px;
  min-width: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--primary);
}
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  text-align: center;
}

/* ===================== FLOATING CTA ===================== */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  color: var(--white);
}
.float-btn:hover { transform: scale(1.05); }
.float-btn.phone-btn {
  background: var(--primary);
  animation: pulse-phone 2s infinite;
}
.float-btn.whatsapp-btn { background: #25d366; }
.float-btn i { font-size: 1.2rem; }

.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  border: none;
  font-size: 1rem;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary); transform: translateY(-3px); }

/* ===================== PAGE HEADER (inner pages) ===================== */
.page-header {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  padding: 100px 0 60px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  top: -200px;
  right: -100px;
}
.page-header h1 {
  font-size: 2.4rem;
  color: var(--white);
  margin-bottom: 12px;
}
.page-header p { opacity: 0.85; font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 0.9rem;
}
.breadcrumb a { color: var(--accent-light); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { opacity: 0.6; }

/* ===================== DISTRICT PAGE CONTENT ===================== */
.district-content { padding: 60px 0; }
.district-intro { font-size: 1.1rem; color: var(--gray-600); margin-bottom: 30px; line-height: 1.9; }
.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}
.content-main h2 { font-size: 1.6rem; margin: 30px 0 14px; }
.content-main h3 { font-size: 1.3rem; margin: 24px 0 12px; color: var(--secondary); }
.content-main p { margin-bottom: 16px; color: var(--gray-700); }
.content-main ul {
  margin: 16px 0;
  padding-left: 0;
}
.content-main ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--gray-700);
}
.content-main ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 0.85rem;
}

.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 25px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  margin-bottom: 24px;
}
.sidebar-widget h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-200);
}
.sidebar-widget ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  color: var(--gray-700);
  font-size: 0.9rem;
}
.sidebar-widget ul li a i { color: var(--primary); font-size: 0.75rem; }
.sidebar-widget ul li a:hover { color: var(--primary); padding-left: 6px; }

.sidebar-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
  border: none;
}
.sidebar-cta h3 { color: var(--white); border-bottom-color: rgba(255,255,255,0.2); }
.sidebar-cta p { font-size: 0.9rem; opacity: 0.9; margin-bottom: 16px; }
.sidebar-cta .btn { width: 100%; justify-content: center; }

/* ===================== CONTACT PAGE ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--secondary);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 0.95rem;
  transition: var(--transition);
  margin-bottom: 16px;
  background: var(--white);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(230,57,70,0.1);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.contact-info-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary); }
.contact-info-card i {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(230,57,70,0.1);
  color: var(--primary);
  font-size: 1.2rem;
}
.contact-info-card h4 { font-size: 1rem; margin-bottom: 4px; }
.contact-info-card p { font-size: 0.9rem; color: var(--gray-600); }
.contact-info-card a { color: var(--primary); font-weight: 500; }

/* ===================== SERVICE PAGE ===================== */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 40px 0;
}
.service-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.service-detail-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-detail-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 14px;
}
.service-detail-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-detail-card p { font-size: 0.9rem; color: var(--gray-600); }

/* ===================== FAQ ===================== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}
.faq-question {
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-question i { transition: var(--transition); font-size: 0.85rem; color: var(--primary); }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-answer-inner {
  padding: 0 24px 18px;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.8;
}

/* ===================== ABOUT PAGE ===================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-image img { width: 100%; height: 400px; object-fit: cover; }
.timeline { position: relative; padding-left: 30px; border-left: 2px solid var(--gray-300); }
.timeline-item { position: relative; margin-bottom: 28px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -37px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
}
.timeline-item h4 { font-size: 0.95rem; margin-bottom: 4px; }
.timeline-item p { font-size: 0.85rem; color: var(--gray-600); }
.timeline-item .year { color: var(--primary); font-weight: 700; font-size: 0.8rem; }

/* ===================== ANIMATIONS ===================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.float-anim { animation: float 3s ease-in-out infinite; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .districts-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .header-inner { padding: 10px 0; }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 350px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 80px 20px 20px;
    box-shadow: var(--shadow-xl);
    transition: 0.4s ease;
    z-index: 1001;
    overflow-y: auto;
    gap: 2px;
  }
  .nav-menu.open { right: 0; }
  .nav-menu a { padding: 12px 16px; font-size: 1rem; }
  .nav-dropdown .dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding-left: 16px;
    display: none;
    max-height: none;
  }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .nav-dropdown > a::after { float: right; }
  .hamburger { display: flex; }
  .header-phone span { display: none; }
  .header-phone { font-size: 0; }

  .hero {
    max-width: 100%;
    aspect-ratio: 1022 / 430;
    min-height: 200px;
  }
  .hero-overlay { padding-bottom: 64px; padding-left: 12px; padding-right: 12px; }
  .logo img { max-width: min(340px, 62vw); max-height: 88px; }
  .logo-text h1 { font-size: 1.15rem; }
  .slider-arrow { display: none; }

  .features-bar { margin-top: -30px; padding: 20px; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  .section { padding: 50px 0; }
  .section-header h2 { font-size: 1.7rem; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .districts-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .service-detail-grid { grid-template-columns: 1fr; }

  .float-btn span { display: none; }
  .float-btn { padding: 14px; }

  .districts-tabs { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .hero {
    aspect-ratio: 1022 / 430;
    min-height: 180px;
  }
  .hero-overlay { padding-bottom: 56px; }
  .logo img { max-width: min(300px, 70vw); max-height: 78px; }
  .hero .hero-buttons { flex-direction: column; }
  .hero .hero-buttons .btn { width: 100%; max-width: 320px; justify-content: center; }
  .features-grid { grid-template-columns: 1fr; }
  .districts-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .page-header h1 { font-size: 1.8rem; }
}

/* Mobile nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.nav-overlay.open { opacity: 1; visibility: visible; }

/* ===================== COOKIE BANNER ===================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10002;
  background: var(--white);
  box-shadow: 0 -6px 32px rgba(0,0,0,0.14);
  border-top: 1px solid var(--gray-200);
  padding: 16px 0;
  transform: translateY(110%);
  transition: transform 0.35s ease;
}
.cookie-banner.cookie-banner--visible { transform: translateY(0); }
.cookie-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cookie-banner-text {
  flex: 1;
  min-width: 240px;
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.65;
}
.cookie-banner-text i { color: var(--accent); margin-right: 8px; }
.cookie-banner-text a { color: var(--primary); font-weight: 500; text-decoration: underline; }
.cookie-banner-text a:hover { color: var(--primary-dark); }
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.cookie-banner-actions .btn { margin: 0; }
.cookie-btn-necessary {
  background: var(--gray-100);
  color: var(--secondary);
  border: 2px solid var(--gray-300);
  font-family: var(--font-main);
  cursor: pointer;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}
.cookie-btn-necessary:hover {
  background: var(--gray-200);
  border-color: var(--gray-400);
}
body.cookie-banner-open {
  padding-bottom: env(safe-area-inset-bottom, 0);
}
@media (max-width: 768px) {
  body.cookie-banner-open { padding-bottom: 120px; }
  .cookie-banner-inner { flex-direction: column; align-items: stretch; }
  .cookie-banner-actions { justify-content: stretch; }
  .cookie-banner-actions .btn { flex: 1; justify-content: center; min-width: 140px; }
}

/* ===================== LEGAL PAGES ===================== */
.legal-page-section { padding: 40px 0 70px; }
.legal-page { max-width: 880px; margin: 0 auto; }
.legal-page h2 {
  font-size: 1.35rem;
  margin-top: 32px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-200);
}
.legal-page h2:first-of-type { margin-top: 8px; }
.legal-page p, .legal-page li { color: var(--gray-700); font-size: 0.95rem; }
.legal-page ul { margin: 12px 0 16px; padding-left: 0; }
.legal-page ul li {
  padding: 6px 0 6px 26px;
  position: relative;
}
.legal-page ul li::before {
  content: '\f111';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 0.45rem;
  top: 0.85em;
}
.legal-updated {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 24px !important;
}
.legal-cross { margin-top: 40px !important; padding-top: 20px; border-top: 1px solid var(--gray-200); }
.legal-cross a { color: var(--primary); font-weight: 500; }
.legal-table-wrap { overflow-x: auto; margin: 16px 0 24px; border-radius: var(--radius-md); border: 1px solid var(--gray-200); }
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.legal-table th, .legal-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
  vertical-align: top;
}
.legal-table th { background: var(--gray-100); color: var(--secondary); font-weight: 600; }
.legal-table tbody tr:last-child td { border-bottom: none; }
.legal-table code { font-size: 0.8rem; background: var(--gray-100); padding: 2px 6px; border-radius: 4px; }

.footer-legal {
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray-500);
  margin: 6px 0 !important;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-legal a {
  color: var(--gray-400);
  text-decoration: none;
}
.footer-legal a:hover { color: var(--accent-light); }

/* Utility */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.text-center { text-align: center; }
