:root {
  --navy: #0c3c66;
  --navy-2: #154b7d;
  --navy-3: #0a3153;
  --red: #d63b3b;
  --call-blue: #2563eb;
  --text-dark: #1a2b3c;
  --text-muted: #5c6b7a;
  --light-blue: #cfe0ef;
  --bg-soft: #f9fafb;
  --bg-card: #f5f8fb;
  --border-soft: #e3e8ee;
  --header-h: 68px;
  --radius: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background: #ffffff;
}

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

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

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

section, footer {
  scroll-margin-top: var(--header-h);
}

h1, h2, h3, h4 { font-weight: 600; line-height: 1.3; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffffee;
  backdrop-filter: blur(6px);
  border-bottom: 0.5px solid var(--border-soft);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
}

.logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 24px;
  margin-left: auto;
  margin-right: 24px;
  font-size: 14px;
  color: var(--text-muted);
}

.nav-links a:hover { color: var(--red); }

.header-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.phone-link {
  font-size: 14px;
  color: var(--navy);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--navy);
  cursor: pointer;
  padding: 6px;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  padding: 64px 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-dealer {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.eyebrow {
  font-size: 13px;
  color: var(--light-blue);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 16px;
}

.hero-desc {
  font-size: 16px;
  color: var(--light-blue);
  max-width: 520px;
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn:hover { transform: translateY(-1px); opacity: 0.94; }

.btn-white {
  background: #fff;
  color: var(--navy);
}

.btn-small {
  padding: 9px 16px;
  font-size: 13px;
  background: var(--navy);
  color: #fff;
  border-radius: 8px;
}

.hero-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--light-blue);
}

.hero-badges span { display: flex; align-items: center; gap: 6px; }

.hero-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 520px;
  overflow: hidden;
}

.hero-image img {
  max-width: 92%;
  max-height: 96%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hero-image img:hover {
  transform: scale(1.06) translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

/* Section shared */
.services, .products {
  padding: 64px 0;
}

.areas {
  padding: 64px 0 40px;
}

.services h2, .products h2, .areas h2, .trust-section h2 {
  font-size: 26px;
  margin-bottom: 6px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 32px;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 1px 8px rgba(12,60,102,0.08);
  border-top: 3px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  cursor: default;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 30px rgba(12,60,102,0.16);
  border-top-color: var(--red);
}

.service-card i {
  font-size: 30px;
  color: var(--red);
  margin-bottom: 14px;
  display: inline-block;
  transition: transform 0.25s ease;
}

.service-card:hover i {
  transform: scale(1.15) rotate(-4deg);
}

.service-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  transition: color 0.25s ease;
}

.service-card:hover h3 {
  color: var(--navy);
}

.service-card p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Trust section */
.trust-section {
  background: var(--bg-soft);
  padding: 64px 0;
  border-top: 0.5px solid var(--border-soft);
  border-bottom: 0.5px solid var(--border-soft);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.trust-item h3 {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-item p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(12,60,102,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(12,60,102,0.14);
}

.product-card img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  background: var(--bg-card);
  padding: 14px;
  transition: transform 0.35s ease;
}

.product-card:hover img {
  transform: scale(1.07);
}

.product-body {
  padding: 18px;
}

.product-body h3 {
  font-size: 16px;
  margin-bottom: 6px;
  transition: color 0.25s ease;
}

.product-card:hover .product-body h3 {
  color: var(--navy);
}

.product-body p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.price {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 12px;
}

/* Areas */
.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-pills span {
  background: var(--bg-card);
  border: 0.5px solid var(--border-soft);
  font-size: 13.5px;
  color: var(--text-dark);
  padding: 8px 16px;
  border-radius: 20px;
}

/* Location / Map */
.location {
  padding: 40px 0 64px;
  border-top: 0.5px solid var(--border-soft);
}

.location h2 {
  font-size: 26px;
  margin-bottom: 6px;
}

.map-frame {
  width: 100%;
  height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 8px rgba(12,60,102,0.08);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
}

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

/* Footer */
.site-footer {
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  color: var(--light-blue);
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-col h3 {
  color: #fff;
  font-size: 17px;
  margin-bottom: 10px;
}

.footer-col h4 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 14px;
}

.footer-col p {
  font-size: 13.5px;
  line-height: 1.7;
}

.footer-col a {
  display: block;
  font-size: 13.5px;
  margin-bottom: 8px;
  color: var(--light-blue);
}

.footer-col a:hover { color: #fff; }

.footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.footer-pills span {
  background: #ffffff14;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  margin-bottom: 10px;
  width: fit-content;
  transition: color 0.2s ease;
}

a.footer-contact-row:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 0.5px solid #ffffff22;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12.5px;
  color: #8fadc9;
}

/* Floating action buttons */
.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 200;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}

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

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { order: -1; height: 400px; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 8px 20px;
    border-bottom: 0.5px solid var(--border-soft);
    transform: translateY(-150%);
    opacity: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
    margin: 0;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
  }

  .nav-links a {
    padding: 12px 0;
    border-bottom: 0.5px solid var(--border-soft);
  }

  /* nav-links position:fixed olunca flex akışından çıkıyor,
     bu yüzden logo ile telefon/whatsapp/menü grubu birbirine yapışıyordu.
     header-contact'ı burada sağa itiyoruz. */
  .header-contact {
    margin-left: auto;
    gap: 10px;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
  }

  .phone-link {
    padding: 6px;
  }

  .phone-link span { display: none; }

  .service-grid, .product-grid { grid-template-columns: 1fr; }

  .hero h1 { font-size: 30px; }

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

  .footer-bottom { flex-direction: column; }
}
