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

:root {
  --blue: #1E88E5;
  --blue-dark: #145DA8;
  --blue-light: #4FC3F7;
  --sky: #29ABE2;
  --sky-light: #6DC6EC;
  --sky-dark: #0B5FA5;
  --pale: #8ED2F5;
  --pale-light: #C9EAFB;
  --pale-bg: #EAF6FD;
  --black: #0d1b2a;
  --black-soft: #16283d;
  --white: #ffffff;
  --gray-100: #f7f7f7;
  --gray-200: #e8e8e8;
  --gray-300: #d1d1d1;
  --gray-500: #888888;
  --gray-700: #444444;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.14);
  --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.20);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  font-size: 15px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* Kapsayıcıya özel bir kural yoksa her ikon güvenli, küçük bir boyutta kalsın */
svg.icon,
.icon {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
  vertical-align: -0.15em;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ══════════════════ HEADER ══════════════════ */
.header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
}

.header-wrap.scrolled .top-bar {
  margin-top: -36px;
}

.header-wrap.scrolled .header {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header-logo {
  display: flex;
  align-items: center;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links > a,
.nav-dropdown-toggle {
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Poppins', sans-serif;
}

.nav-links > a:hover,
.nav-links > a.active,
.nav-dropdown:hover > .nav-dropdown-toggle {
  color: var(--sky-dark);
  background: rgba(41, 171, 226, 0.08);
}

.nav-links a.btn-nav {
  background: var(--blue);
  color: var(--white);
  font-weight: 600;
  border-radius: 50px;
  padding: 9px 22px;
  box-shadow: 0 3px 12px rgba(30, 136, 229, 0.25);
  margin-left: 8px;
}

.nav-links a.btn-nav:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 5px 16px rgba(30, 136, 229, 0.35);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #f3f4f6;
  z-index: 1001;
  border: none;
  transition: var(--transition);
}

.hamburger:hover {
  background: #e5e7eb;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--black);
  border-radius: 4px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* ══════════════════ HERO ══════════════════ */
.hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  max-height: 640px;
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.50) 40%,
      rgba(0, 0, 0, 0.60) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 30px 20px;
  max-width: 700px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(41, 171, 226, 0.2);
  border: 1px solid rgba(41, 171, 226, 0.4);
  border-radius: 50px;
  color: var(--pale);
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 18px;
  backdrop-filter: blur(8px);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-content h1 {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}

.hero-content h1 span {
  color: var(--pale);
}

.hero-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  background: var(--blue);
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 3px 16px rgba(30, 136, 229, 0.35);
  font-family: 'Poppins', sans-serif;
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(30, 136, 229, 0.45);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  background: transparent;
  color: var(--white);
  font-weight: 500;
  font-size: 0.88rem;
  border-radius: 50px;
  border: 1.5px solid rgba(41, 171, 226, 0.5);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}

.btn-outline:hover {
  background: rgba(41, 171, 226, 0.12);
  border-color: var(--sky);
  transform: translateY(-2px);
}

/* ══════════════════ FEATURES STRIP ══════════════════ */
.features-strip {
  background: var(--white);
  padding: 0;
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--gray-200);
}

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

.feature-item {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--gray-200);
  transition: var(--transition);
  cursor: default;
}

.feature-item:last-child {
  border-right: none;
}

.feature-item:hover {
  background: var(--pale-bg);
}

.feature-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  background: rgba(41, 171, 226, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--sky-dark);
  fill: none;
  stroke-width: 1.5;
}

.feature-item h4 {
  color: var(--black);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 3px;
}

.feature-item p {
  color: var(--gray-500);
  font-size: 0.72rem;
  font-weight: 300;
}

/* ══════════════════ SECTIONS COMMON ══════════════════ */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-tag {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(41, 171, 226, 0.1);
  color: var(--sky-dark);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-tag .icon {
  width: 1.9em;
  height: 1.9em;
  vertical-align: middle;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.25;
}

.section-header p {
  font-size: 0.92rem;
  color: var(--gray-500);
  max-width: 520px;
  margin: 0 auto;
  font-weight: 300;
}

/* Sayfa breadcrumb'ı (section-header'ın hemen üstünde, iç sayfalarda) */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.76rem;
  color: var(--gray-500);
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--gray-500); }
.breadcrumb a:hover { color: var(--sky-dark); }
.breadcrumb span:last-child { color: var(--black); font-weight: 500; }

/* ══════════════════ ABOUT ══════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.about-image-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--sky);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-md);
}

.about-content h3 {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3;
}

.about-content h3 span {
  color: var(--sky-dark);
}

.about-content p {
  color: var(--gray-700);
  margin-bottom: 12px;
  font-size: 0.88rem;
  line-height: 1.8;
}

.about-list {
  margin-top: 20px;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-weight: 500;
  color: var(--gray-700);
  font-size: 0.88rem;
}

.about-list li svg {
  width: 20px;
  height: 20px;
  stroke: var(--sky);
  fill: none;
  flex-shrink: 0;
}

/* ══════════════════ PROMO / TANITIM ══════════════════ */
.promo {
  background: var(--pale-bg);
}

.promo-banner {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.promo-banner img {
  width: 100%;
  height: auto;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.promo-card {
  background: var(--white);
  border-radius: 14px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}

.promo-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(41, 171, 226, 0.3);
}

.promo-card-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--sky), var(--sky-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(41, 171, 226, 0.3);
}

.promo-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.5;
}

.promo-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.promo-card p {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ══════════════════ HİZMETLER (products-grid deseni) ══════════════════ */
.products-showcase {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 40px;
}

.products-showcase img {
  width: 100%;
  height: auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  cursor: pointer;
  display: block;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--sky);
}

.product-card-header {
  background: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 100%);
  padding: 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.product-card-header::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(41, 171, 226, 0.1);
}

.product-card-header .product-card-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 10px;
  background: rgba(41, 171, 226, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.product-card-header .product-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--pale);
  fill: none;
  stroke-width: 1.5;
}

.product-card-header h4 {
  color: var(--pale);
  font-size: 1rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.product-card-header p {
  color: var(--gray-500);
  font-size: 0.72rem;
  margin-top: 2px;
  position: relative;
  z-index: 1;
}

.product-card-body {
  padding: 20px;
}

.product-card-body ul li {
  padding: 6px 0;
  font-size: 0.82rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-card-body ul li:last-child {
  border-bottom: none;
}

.product-card-body ul li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sky);
  flex-shrink: 0;
}

.product-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 20px;
  background: rgba(41, 171, 226, 0.1);
  color: var(--sky-dark);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
}

.product-btn:hover {
  background: var(--sky);
  color: var(--white);
}

/* ══════════════════ DEALER / BİLGİ TALEP FORMU ══════════════════ */
.dealer {
  background: var(--white);
  color: var(--black);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--gray-200);
}

.dealer::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(41, 171, 226, 0.04) 100%);
}

.dealer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.dealer-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.benefit-item:hover {
  background: rgba(41, 171, 226, 0.03);
  border-color: rgba(41, 171, 226, 0.2);
  box-shadow: var(--shadow-sm);
}

.benefit-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: rgba(41, 171, 226, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--sky);
  fill: none;
}

.benefit-item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 3px;
}

.benefit-item p {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* Dealer Form */
.dealer-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  border-radius: 20px;
  padding: 32px;
}

.dealer-form h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gray-500);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group .optional {
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--gray-500);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  color: var(--black);
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-500);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(41, 171, 226, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-group select option {
  background: var(--white);
  color: var(--black);
}

.form-check label { display: flex; align-items: center; gap: 8px; text-transform: none; font-weight: 500; color: var(--gray-700); }
.form-check input { width: auto; }
.hp-field { position: absolute; left: -9999px; top: -9999px; }

.btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 3px 16px rgba(30, 136, 229, 0.35);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(30, 136, 229, 0.45);
}

.btn-cancel {
  display: inline-block;
  text-align: center;
  padding: 12px 20px;
  color: var(--gray-500);
  font-weight: 600;
  font-size: 0.85rem;
}

.form-success {
  background: #e5f9ee; color: #16794a; border: 1px solid #b6ecd0;
  padding: 14px 16px; border-radius: 10px; font-size: 0.86rem; margin-bottom: 18px;
  display: flex; align-items: center; gap: 8px;
}
.form-success svg { width: 18px; height: 18px; flex-shrink: 0; }
.form-errors {
  background: #fdecec; color: #b3261e; border: 1px solid #f5c2c0;
  padding: 14px 16px; border-radius: 10px; font-size: 0.86rem; margin-bottom: 18px;
}
.form-errors ul { padding-left: 18px; list-style: disc; }

/* ══════════════════ FOOTER ══════════════════ */
.footer {
  background: var(--white);
  color: var(--gray-700);
  padding: 60px 0 0;
  border-top: 3px solid var(--sky);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--gray-200);
}

.footer-brand p {
  font-size: 0.82rem;
  line-height: 1.8;
  margin-top: 14px;
}

.footer-col h4 {
  color: var(--black);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--sky);
  border-radius: 2px;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 0.82rem;
  color: var(--gray-500);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--sky-dark);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.82rem;
  color: var(--gray-700);
}

.footer-contact li svg {
  width: 16px;
  height: 16px;
  stroke: var(--sky);
  fill: none;
  flex-shrink: 0;
}

.footer-bottom {
  padding: 16px 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-500);
}

.footer-bottom span {
  color: var(--sky-dark);
  font-weight: 700;
}

/* ══════════════════ SCROLL ANIMATIONS ══════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════ SCROLL TOP BUTTON ══════════════════ */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sky);
  color: var(--white);
  border: none;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--sky-dark);
  transform: translateY(-3px);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
  fill: none;
}

/* ══════════════════ MOBILE RESPONSIVE ══════════════════ */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    gap: 36px;
  }

  .section {
    padding: 64px 0;
  }
}

@media (max-width: 768px) {
  .header .container {
    height: 64px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 0 0 24px;
    gap: 0;
    box-shadow: 4px 0 30px rgba(0,0,0,0.2);
    transition: var(--transition);
    align-items: stretch;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .nav-links.open {
    left: 0;
  }

  .mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    margin-bottom: 12px;
  }

  .mobile-menu-header img {
    height: 52px;
  }

  .mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.04);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
  }

  .mobile-menu-close:hover {
    background: rgba(30,136,229,0.1);
  }

  .mobile-menu-close svg {
    width: 20px;
    height: 20px;
    stroke: var(--black);
    fill: none;
    stroke-width: 2;
  }

  .nav-links > a,
  .nav-links .nav-dropdown-toggle {
    padding: 14px 24px;
    font-size: 0.95rem;
    border-radius: 0;
    color: var(--black);
    font-weight: 600;
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }

  .nav-links > a:hover,
  .nav-links > a.active {
    color: var(--sky-dark);
    background: rgba(41,171,226,0.06);
  }

  .nav-links > a.btn-nav {
    text-align: center;
    margin: 16px 20px 0;
    border-radius: 50px;
    border-bottom: none;
  }

  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .mobile-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .hero {
    height: 60vh;
    min-height: 400px;
    max-height: 520px;
    margin-top: 64px;
  }

  .hero-content h1 {
    font-size: 1.7rem;
  }

  .hero-content p {
    font-size: 0.88rem;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-item {
    padding: 22px 16px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
  }

  .about-image img {
    height: 280px;
  }

  .about-content h3 {
    font-size: 1.4rem;
  }

  .promo-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .cities-grid {
    grid-template-columns: 1fr;
  }

  .dealer-grid {
    grid-template-columns: 1fr;
  }

  .dealer-form {
    padding: 24px 18px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .section {
    padding: 50px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .hero {
    height: 55vh;
    min-height: 360px;
  }

  .hero-content h1 {
    font-size: 1.4rem;
  }

  .hero-content p {
    font-size: 0.82rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
    font-size: 0.82rem;
    padding: 11px 24px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 0 16px;
  }

  .hero-badge {
    font-size: 0.65rem;
    padding: 5px 14px;
  }
}

/* ══════════════════ TOP BAR ══════════════════ */
.top-bar {
  background: var(--black);
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.top-bar .container {
  display: flex; align-items: center; justify-content: space-between; height: 36px;
}
.top-bar-left { display: flex; align-items: center; gap: 20px; }
.top-bar-left a, .top-bar-left span {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.6); transition: var(--transition); font-size: 0.72rem;
}
.top-bar-left a:hover { color: var(--sky); }
.top-bar-left svg { width: 13px; height: 13px; stroke: var(--sky); fill: none; stroke-width: 1.5; }
.top-bar-right { display: flex; align-items: center; gap: 10px; }
.top-bar-right a {
  width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255,255,255,0.06); transition: var(--transition);
}
.top-bar-right a:hover { background: var(--sky); }
.top-bar-right a svg { width: 13px; height: 13px; stroke: var(--white); fill: none; stroke-width: 1.5; }

/* ══════════════════ DROPDOWN ══════════════════ */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle svg { transition: var(--transition); width: 12px; height: 12px; }
.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 200px; padding: 8px 0;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 10px; box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: var(--transition); z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a {
  display: block; padding: 10px 20px; font-size: 0.82rem;
  color: var(--gray-700); transition: var(--transition);
}
.nav-dropdown-menu a:hover { color: var(--sky-dark); background: rgba(41,171,226,0.06); padding-left: 24px; }

/* İl/hizmet mega-menü listeleri biraz daha geniş ve iki satırlı (başlık + kısa açıklama) */
.nav-dropdown-menu-cities { min-width: 300px; max-height: 400px; overflow-y: auto; }
.nav-dropdown-menu-cities a strong,
.nav-dropdown-menu a strong { display: block; font-size: 0.84rem; color: var(--black); font-weight: 600; }
.nav-dropdown-menu-cities a span,
.nav-dropdown-menu a span { display: block; font-size: 0.72rem; color: var(--gray-500); margin-top: 1px; }
.nav-dropdown-menu a:hover strong { color: var(--sky-dark); }

/* ══════════════════ CONTACT SECTION ══════════════════ */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-card {
  text-align: center; padding: 36px 24px; background: var(--white);
  border-radius: 16px; border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(41,171,226,0.3); }
.contact-icon {
  width: 52px; height: 52px; margin: 0 auto 16px;
  background: rgba(41,171,226,0.1); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 24px; height: 24px; stroke: var(--sky-dark); fill: none; }
.contact-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.contact-card p { font-size: 0.85rem; color: var(--gray-500); }

/* İllerimiz — contact-card ile aynı görsel dil, iki satırlı içerik */
.cities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.city-card {
  display: flex; align-items: flex-start; gap: 14px; text-align: left; padding: 24px;
  background: var(--white); border-radius: 16px; border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.city-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(41,171,226,0.3); }
.city-card > svg, .city-card > .icon {
  width: 40px; height: 40px; padding: 9px; flex-shrink: 0; margin-top: 2px;
  background: rgba(41,171,226,0.1); border-radius: 12px; stroke: var(--sky-dark); fill: none;
}
.city-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.city-card p { font-size: 0.82rem; color: var(--gray-500); line-height: 1.5; }

/* Referanslar — promo-card ile aynı görsel dil */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white); border-radius: 14px; padding: 30px 26px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(41,171,226,0.3); }
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 14px; color: var(--sky); }
.testimonial-stars .icon-star { width: 14px; height: 14px; fill: currentColor; }
.testimonial-card p { font-size: 0.85rem; color: var(--gray-700); font-style: italic; line-height: 1.7; margin-bottom: 16px; }
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--black); }
.testimonial-author span { font-size: 0.76rem; color: var(--gray-500); }

/* Hakkımızda "değerlerimiz" listesi — about-list ile aynı görsel dil */
.value-list { margin-top: 4px; }
.value-list li { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-weight: 500; color: var(--gray-700); font-size: 0.88rem; }
.value-list svg { width: 20px; height: 20px; stroke: var(--sky); fill: none; flex-shrink: 0; }

/* İçerik + kenar formu (hizmet/il detay sayfaları) */
.content-grid { display: grid; grid-template-columns: 1fr 340px; gap: 44px; align-items: start; margin-bottom: 20px; }
.content-main { font-size: 0.9rem; color: var(--gray-700); line-height: 1.85; }
.side-card {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: 16px;
  padding: 26px; box-shadow: var(--shadow-sm); position: sticky; top: 110px;
}
.side-card h4 { display: flex; align-items: center; gap: 8px; font-size: 0.95rem; margin-bottom: 8px; }
.side-card h4 svg { width: 17px; height: 17px; stroke: var(--sky-dark); fill: none; }
.side-card > p { font-size: 0.8rem; color: var(--gray-500); margin-bottom: 16px; }
.related-block { margin-top: 60px; }
.related-block h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: 22px; }

/* ══════════════════ FLOATING ACTIONS ══════════════════ */
.floating-actions {
  position: fixed;
  bottom: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 998;
}

.floating-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.floating-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.wa-btn {
  background: #25D366;
  color: white;
}

.phone-btn {
  background: var(--blue);
  color: white;
}

.floating-btn svg {
  width: 26px;
  height: 26px;
  stroke: white;
  fill: none;
  stroke-width: 1.5;
}

.floating-bubble {
  background: var(--white);
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  width: 260px;
  max-width: calc(100vw - 48px);
  position: relative;
  margin-bottom: 8px;
  animation: floatUpDown 3s ease-in-out infinite;
  box-sizing: border-box;
}

@keyframes floatUpDown {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

.floating-bubble::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 20px;
  border-width: 8px 8px 0;
  border-style: solid;
  border-color: var(--white) transparent transparent transparent;
}

.bubble-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.bubble-close svg {
  width: 14px;
  height: 14px;
  stroke: var(--gray-500);
  stroke-width: 2;
}

.floating-bubble p {
  font-size: 0.85rem;
  color: var(--black);
  margin-bottom: 10px;
  line-height: 1.4;
  padding-right: 14px;
}

.floating-bubble a {
  font-size: 0.85rem;
  font-weight: 700;
  color: #25D366;
}

/* ══════════════════ MOBILE MENU CONTACT ══════════════════ */
.mobile-menu-contact {
  display: none; /* Hidden on desktop */
  margin-top: 16px;
  padding: 24px;
  border-top: 1px solid rgba(0,0,0,0.06);
  background: rgba(41,171,226,0.03);
}

.mobile-menu-contact h4 {
  font-size: 0.85rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.mobile-menu-contact a,
.mobile-menu-contact p {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--black);
  margin-bottom: 12px;
  font-weight: 500;
}

.mobile-menu-contact svg {
  width: 18px;
  height: 18px;
  stroke: var(--sky);
  fill: none;
  flex-shrink: 0;
}

/* ══════════════════ MOBILE EXTRAS ══════════════════ */
@media (max-width: 768px) {
  .top-bar { display: none; }
  .hero { margin-top: 64px; }
  .mobile-menu-header { display: flex; }
  .mobile-menu-contact { display: block; }
  .nav-dropdown-menu,
  .nav-dropdown-menu-cities {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; background: rgba(0,0,0,0.02);
    border-radius: 0; margin: 0; padding: 0; display: none;
    border-top: 1px solid rgba(0,0,0,0.04);
    min-width: 0; max-width: 100%; max-height: none; width: 100%;
    overflow-y: visible; box-sizing: border-box;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu a {
    padding: 11px 24px 11px 40px;
    color: var(--gray-700);
    font-size: 0.82rem;
    border-bottom: 1px solid rgba(0,0,0,0.03);
  }
  .nav-dropdown-menu a:hover {
    color: var(--sky-dark);
    padding-left: 44px;
    background: rgba(41,171,226,0.04);
  }
  .contact-grid, .cities-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .side-card { position: static; }
  #iletisim { padding: 40px 0; }
  .floating-actions { left: 20px; bottom: 30px; }
  .floating-bubble { width: 240px; }
  .scroll-top { right: 20px; bottom: 30px; width: 50px; height: 50px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .contact-grid, .cities-grid, .testimonials-grid, .products-grid { grid-template-columns: repeat(2, 1fr); }
  .content-grid { grid-template-columns: 1fr; }
  .side-card { position: static; }
}

/* Masaüstünde mobile-menu-header (logo + kapat butonu) gizli kalsın;
   mobilde ise yukarıdaki @media (max-width:768px) kuralı bunu ezip gösterir. */
@media (min-width: 769px) {
  .mobile-menu-header { display: none; }
}

/* Iletisim compact */
@media (min-width: 769px) {
  #iletisim { padding: 50px 0; }
}
