/* =======================
   GENEL AYARLAR
   ======================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #f3f5fb;
  color: #111827;
  max-width: 100vw;
  overflow-x: hidden;
  padding-top: var(--navbar-height, 0px);
}

/* Global link underline reset */
a,
a:visited,
a:hover,
a:active,
a:focus {
  text-decoration: none;
}

/* Ortak container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =======================
   NAVBAR – PREMIUM HEADER
   ======================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  background-color: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  margin-bottom: 2rem;
}

body .navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}


/* ÜST SATIR */
.navbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 35px 6px;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo-img {
  width: 90px;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
}

/* Broken? Not Anymore */
.brand-text {
  font-size: 42px;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.4px;
  display: flex;
  align-items: center;
}

.brand-text .blue-part {
  color: #56ADEC;
  margin-left: 6px;
}

/* Üst sağ – geniş arama kutusu */
.navbar-search {
  display: flex;
  align-items: center;
  width: 360px;
  background: #f7f7f7;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
}

.navbar-search input {
  flex: 1;
  padding: 10px 16px;
  border: none;
  outline: none;
  font-size: 14px;
  background: transparent;
}

.search-btn {
  background: transparent;
  border: none;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #9ca3af;
  cursor: pointer;
  box-shadow: none;
}

.search-btn:hover {
  background: rgba(37, 99, 235, 0.06);
  color: #2563eb;
}

/* Üst sağ aksiyonlar (arama + dil + hamburger) */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Dil seçici */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px 6px 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #e6edff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.lang-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #eef2ff;
  color: #64748b;
  border: 1px solid #dbe4ff;
}

.lang-icon svg {
  width: 16px;
  height: 16px;
}

.lang-options {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  align-items: center;
  padding: 3px;
  min-width: 170px;
  border-radius: 999px;
  background: #f1f5ff;
  border: 1px solid #dde6ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.lang-options::before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  width: calc(50% - 3px);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
  transition: transform 0.22s ease;
}

.lang-options[data-active="es"]::before {
  transform: translateX(100%);
}

.lang-link {
  position: relative;
  z-index: 1;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #1f2a37;
  text-decoration: none;
  text-align: center;
  transition: color 0.2s ease;
}

.lang-link:hover {
  color: #0f172a;
}

.lang-link.active {
  color: #0f172a;
}

.lang-link:focus-visible {
  outline: 2px solid #1b6dff;
  outline-offset: 2px;
}

/* Hamburger butonu */
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: #111827;
  border-radius: 999px;
  display: block;
}

/* ALT SATIR – Menü */
.navbar-bottom {
  width: 100%;
  padding: 14px 0;
  border-top: 1px solid #f1f1f1;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: #111827;
  font-size: 16px;
  font-weight: 500;
}

.nav-links a:hover {
  color: #007bff;
}

/* Book Now butonu */
.nav-cta {
  padding: 8px 20px;
  border-radius: 20px;
  background: linear-gradient(90deg, #1c91ff, #007bff);
  color: #ffffff !important;
  font-weight: 600;
  box-shadow: 0 12px 38px rgba(87, 177, 255, 0.35);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 48px rgba(87, 177, 255, 0.45);
}

/* Mobil Menü (Drawer) */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 1000;
}

.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 86%;
  max-width: 360px;
  background: #ffffff;
  box-shadow: -20px 0 40px rgba(15, 23, 42, 0.18);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  padding: 18px 18px 24px;
  gap: 18px;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111827;
}

.mobile-close {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.mobile-search {
  display: flex;
  align-items: center;
  background: #f7f7f7;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
}

.mobile-search input {
  flex: 1;
  padding: 10px 14px;
  border: none;
  outline: none;
  font-size: 14px;
  background: transparent;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  margin: 0;
}

.mobile-nav-links a {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  text-decoration: none;
}

.mobile-cta {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

body.menu-open {
  overflow: hidden;
}

/* Eski sayfalar için küçük nav + search (kullanılıyorsa) */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* Sağ köşede küçük arama kutusu */
.nav-search {
  position: relative;
  min-width: 150px;
  max-width: 190px;
}

.nav-search input {
  width: 100%;
  padding: 6px 30px 6px 10px;
  border-radius: 999px;
  border: 1px solid #dde1ea;
  font-size: 13px;
  background: #f7f8fc;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-search::before {
  content: "🔍";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  opacity: 0.6;
  pointer-events: none;
}

.nav-search input:focus {
  border-color: #007bff;
  background: #ffffff;
  box-shadow: 0 0 6px rgba(0, 123, 255, 0.25);
}

/* Küçük ekran navbar */
@media (max-width: 900px) {
  .navbar-top {
    padding: 10px 16px;
  }

  .navbar-search {
    display: none;
  }

  .navbar-bottom {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .logo-img {
    width: 64px;
    border-radius: 14px;
  }

  .brand-text {
    font-size: 26px;
    line-height: 1.15;
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .brand-text {
    font-size: 22px;
  }
}

/* =======================
   BÖLÜM BAŞLIKLARI
   ======================= */
.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: -2rem auto 2rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #6b7280;
}

.legal-page {
  padding: 2.5rem 0 4rem;
}

.legal-container {
  max-width: 900px;
}

.legal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.legal-header h1 {
  font-size: 2.2rem;
  margin-bottom: 0.4rem;
}

.legal-updated {
  font-size: 0.95rem;
  color: #6b7280;
}

.legal-section {
  margin-bottom: 1.6rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.legal-section h2 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.legal-section p,
.legal-section li {
  font-size: 0.98rem;
  line-height: 1.65;
  color: #374151;
}

.legal-section ul {
  padding-left: 1.2rem;
  margin: 0.6rem 0 0;
}

.card-desc {
  margin: 0 1.4rem 1.4rem;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #4b5563;
}

/* Warranty açıklama layout’u */
.warranty-layout {
  display: grid;
  gap: 2rem;
  margin-top: 1.5rem;
}

.warranty-block h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.warranty-block ul {
  margin: 0;
  padding-left: 1.2rem;
}

.warranty-block li {
  margin-bottom: 0.4rem;
  line-height: 1.5;
}

/* Servis açıklama paragrafı */
.service-note {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* CTA butonları */
.cta-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.cta-centered {
  justify-content: center;
}

.btn-primary,
.btn-outline {
  display: inline-block;
  padding: 0.65rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
}

/* Mavi dolu buton */
.btn-primary {
  background: linear-gradient(135deg, #1b6dff, #5d9cff);
  color: #fff;
  border: none;
}

/* Çizgili buton */
.btn-outline {
  background: #fff;
  color: #212433;
  border: 1px solid #c3c7d5;
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-outline:hover {
  background: #f3f4fb;
}

/* =======================
   TOP INFO BANNER
   ======================= */
.top-info-banner {
  width: 100%;
  background: linear-gradient(90deg, #1e88ff, #0066cc);
  color: #ffffff;
  padding: 10px 0;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  overflow: hidden;
  position: relative;
}

.top-info-banner p {
  display: inline-block;
  white-space: nowrap;
  animation: slideInfo 18s linear infinite;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.6px;
}

@keyframes slideInfo {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* =======================
   PROMO BANNER (MARKA LOGOLARI)
   ======================= */
.promo-banner {
  width: 100%;
  background: linear-gradient(90deg, #1e88ff, #1e88ff);
  color: white;
  padding: 18px 0;
  text-align: center;
  font-weight: 600;
}

.promo-line {
  font-size: 1.15rem;
  letter-spacing: 0.3px;
  margin: 6px 0;
}

.brand-logos {
  margin: 8px 0 4px 0;
  display: flex;
  justify-content: center;
  gap: 28px;
  align-items: center;
}

.brand-logos img {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.brand-logos img:hover {
  opacity: 1;
}

/* =======================
   PROMO PANEL + SLIDER
   ======================= */
.promo-panel {
  max-width: 1100px;
  margin: 3rem auto;
  padding: 6rem 2.5rem;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.08),
    0 2px 6px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: promoFloat 7s ease-in-out infinite alternate;
}

.promo-slider {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 24px;
}

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

.promo-slide:first-child,
.promo-slide.active {
  opacity: 1;
}

.promo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.promo-panel {
  position: relative;
}

.promo-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-prev { left: 18px; }
.promo-next { right: 18px; }

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

/* Mobil promo panel */
@media (max-width: 768px) {
  .promo-panel {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem 1.25rem;
    margin: 2rem 1rem 1.5rem 1rem;
  }
}

/* =======================
   BIG ACCESSORY PROMO (SİYAH PANEL)
   ======================= */
.hero-promo {
  padding: 4rem 0 2rem 0;
}

.hero-promo-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: #020617;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.65);
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  overflow: hidden;
}

.hero-promo-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-promo-content {
  padding: 2.5rem 2.75rem;
  color: #f9fafb;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.hero-promo-badge {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #93c5fd;
}

.hero-promo-title {
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-promo-text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: #e5e7eb;
}

.hero-promo-deal {
  margin-top: 0.5rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: #fbbf24;
}

@media (max-width: 900px) {
  .hero-promo-inner {
    grid-template-columns: 1fr;
  }

  .hero-promo-content {
    padding: 1.75rem 1.75rem 2.25rem;
  }
}

/* =======================
   HOME HERO
   ======================= */
.home-page .hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2.5rem;
  padding: 2.25rem;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #e4e4e4;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 2.5rem;
}

.home-page .hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.home-page .hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  background: rgba(31, 111, 235, 0.1);
  color: #1f6feb;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.home-page .hero-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
}

.home-page .hero-title {
  font-size: clamp(2rem, 2.3vw + 1rem, 2.7rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #111827;
}

.home-page .hero-title .blue {
  color: #1f6feb;
}

.home-page .hero-subtitle {
  font-size: 1rem;
  color: #6b7280;
  max-width: 34rem;
}

.home-page .hero-subtitle-strong {
  font-weight: 600;
  color: #111827;
}

.home-page .hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.2rem;
}

.home-page .badge,
.home-page .badge-outline {
  font-size: 0.78rem;
  padding: 0.25rem 0.75rem;
  border-radius: 10px;
  background: #eef2ff;
  color: #4b5563;
  font-weight: 500;
  border: 1px solid rgba(148, 163, 184, 0.4);
  cursor: default;
  pointer-events: none;
}

.home-page .badge-outline {
  background: #f3f4f6;
}

.home-page .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.6rem;
}

.home-page .hero-note {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 0.4rem;
}

.home-page .hero-note strong {
  color: #111827;
  font-weight: 600;
}

.home-page .hero-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.home-page .hero-image-wrapper {
  position: relative;
  max-width: 620px;
  width: 100%;
}

.home-page .hero-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  display: block;
}

.home-page .hero-warranty-badge {
  position: absolute;
  bottom: 18px;
  right: 18px;
  padding: 0.45rem 1rem;
  background: linear-gradient(135deg, #f97316, #fb923c);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(249, 115, 22, 0.45);
}

.home-page .category-belt {
  margin-top: 1.2rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}

.home-page .belt-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #6b7280;
  letter-spacing: 0.08em;
  margin-right: 0.4rem;
}

.home-page .chip,
.home-page .chip-muted {
  font-size: 0.75rem;
  padding: 0.25rem 0.6rem;
  margin: 0 0.2rem 0.2rem 0;
  border-radius: 999px;
  background: #f3f4fb;
  border: 1px solid #e5e7eb;
  color: #4b5563;
  cursor: default;
  pointer-events: none;
}

@media (max-width: 900px) {
  .home-page .hero {
    grid-template-columns: minmax(0, 1fr);
    padding: 1.9rem 1.6rem 2.1rem;
  }

  .home-page .hero-right {
    order: -1;
    margin-bottom: 0.8rem;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .home-page .hero {
    padding: 1.6rem 1.3rem 1.8rem;
    border-radius: 20px;
  }

  .home-page .hero-title {
    font-size: 1.85rem;
  }

  .home-page .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-page .chip,
  .home-page .chip-muted {
    font-size: 0.72rem;
  }
}

/* =======================
   SERVICES & ACCESSORIES ANA GRID
   ======================= */
.services-section {
  padding: 2rem 0 3rem;
}

.services-grid,
.accessories-grid {
  display: grid;
  gap: 24px;
  justify-content: center;
}

/* Kart linki */
.service-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card-link .service-card {
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.service-card-link .service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

/* Kart içi küçük görseller */
.card-images {
  display: flex;
  gap: 0.6rem;
  margin: 0.8rem 0 0.9rem;
}

.card-images img {
  width: 50%;
  border-radius: 14px;
  object-fit: cover;
  display: block;
}

/* Mobilde fotoğraflar alt alta */
@media (max-width: 640px) {
  .card-images {
    flex-direction: column;
  }

  .card-images img {
    width: 100%;
  }
}

/* Tablet → 2 kolon */
@media (min-width: 600px) {
  .services-grid,
  .accessories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 900px;
    margin: 0 auto;
  }
}

/* Desktop → 3 kolon */
@media (min-width: 900px) {
  .services-grid,
  .accessories-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1100px;
    margin: 0 auto;
  }
}

/* Kart tasarımı */
.service-card,
.accessory-card {
  background: #ffffff;
  border: 1px solid #e4e4e4;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card .card-icon {
  width: 88px;
  height: 88px;
  margin: 1.3rem auto 0.8rem;
  border-radius: 22px;
  background: #f4f6ff;
  border: 1px solid #e3e8ff;
  display: grid;
  place-items: center;
  color: #1f6feb;
  position: relative;
}

.service-card .grade-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #0ea5e9;
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  border: 1px solid #0b84c3;
  box-shadow: 0 6px 14px rgba(14, 165, 233, 0.25);
  letter-spacing: 0.2px;
}

.service-card .card-icon svg,
.service-card .card-icon img {
  width: 40px;
  height: 40px;
}

.service-card .card-icon img {
  object-fit: contain;
}

.service-card:hover,
.accessory-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

/* Ana kart resimleri kare */
.service-card img,
.accessory-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

/* Home page: keep Popular Repairs images same visual size */
.home-page .service-card-img {
  height: 220px;
  width: 100%;
  object-fit: contain;
  padding: 14px 18px;
  background: #f8fafc;
}

.service-card h3,
.accessory-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  padding: 1rem 0 1.3rem;
  margin: 0;
  color: #1f2937;
}

.service-card p,
.accessory-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b5563;
}

/* =======================
   SUBCATEGORY GRID
   ======================= */
.subcategory-grid {
  display: grid;
  gap: 24px;
  justify-content: center;
}

@media (min-width: 600px) {
  .subcategory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 900px;
    margin: 0 auto;
  }
}

@media (min-width: 900px) {
  .subcategory-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1100px;
    margin: 0 auto;
  }
}

.subcategory-card {
  display: block;
  text-decoration: none;
  background: #fff;
  border-radius: 18px;
  padding: 12px;
  color: inherit;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: 0.15s ease;
  text-align: center;
}

.subcategory-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.subcategory-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 8px;
}

.subcategory-card h2 {
  font-size: 16px;
  margin: 6px 0 4px;
}

.subcategory-card p {
  font-size: 13px;
  color: #555;
}

/* =======================
   SERVICE DETAIL PAGE
   ======================= */
.service-detail {
  padding-top: 96px;
  background: #f5f7fb;
  min-height: 100vh;
}

.breadcrumb {
  font-size: 0.9rem;
  margin: 12px 0 4px;
}

.breadcrumb a {
  text-decoration: none;
  color: #555;
}

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

.service-hero {
  padding: 32px 0 40px;
}

.service-hero-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}

.service-text h1 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.service-lead {
  font-size: 1rem;
  margin-bottom: 16px;
  max-width: 540px;
}

.service-highlights {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 24px;
  line-height: 1.6;
  font-size: 0.95rem;
}

.service-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  object-fit: cover;
}

/* Service detail butonları */
.btn,
.btn-nav {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary,
.btn-nav {
  background: #4b6bff;
  color: #fff;
  font-weight: 600;
}

.btn-primary:hover,
.btn-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(75, 107, 255, 0.35);
}

/* Alt servis grid’i */
.other-services {
  padding: 16px 0 48px;
}

.other-services h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

/* Servis kart grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-top: 1.5rem;
  margin-bottom: 4rem;
}

/* Service-card (detay sayfası içindeki) */
.service-grid .service-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 1.6rem 1.4rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.service-grid .service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.service-link {
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: #4b6bff;
}

.service-link:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .service-hero-inner {
    grid-template-columns: 1fr;
  }

  .service-image {
    order: -1;
  }
}

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

  .service-detail {
    padding-top: 80px;
  }
}

/* =======================
   CONTACT BÖLÜMÜ
   ======================= */
.contact-section {
  padding: 4rem 0 5rem;
  text-align: center;
}

.contact-section .section-title {
  margin-bottom: 1rem;
}

.contact-text {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
  color: #4a5563;
}

/* =======================
   APPOINTMENT (RANDEVU)
   ======================= */
.appointment-section {
  padding: 4rem 0 5rem;
  background: #f4f6ff;
}

.appointment-wrapper {
  max-width: 960px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 28px;
  padding: 3rem 3.5rem;
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.15);
}

.appointment-title {
  font-size: 2.1rem;
  font-weight: 700;
  margin: 0 0 0.3rem;
  text-align: left;
}

.appointment-sub {
  margin: 0 0 2.2rem;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}

.appointment-card {
  background: linear-gradient(135deg, #f9fbff, #eef3ff);
  border-radius: 22px;
  padding: 2.25rem 2.5rem;
}

.appointment-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.form-field {
  flex: 1;
  min-width: 240px;
}

.form-field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0f172a;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  border: 1px solid #d0d7e2;
  background: #ffffff;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #9ca3af;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #1e88ff;
  box-shadow: 0 0 0 1px #1e88ff33;
  background: #f9fbff;
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.appointment-btn {
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.5rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #1e88ff, #2563eb);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  box-shadow: 0 14px 35px rgba(37, 99, 235, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.appointment-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 45px rgba(37, 99, 235, 0.45);
}

.appointment-btn:active {
  transform: translateY(0);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
}

.appointment-note {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #6b7280;
}

@media (max-width: 640px) {
  .appointment-wrapper {
    padding: 2.2rem 1.6rem;
    border-radius: 22px;
  }

  .appointment-title {
    font-size: 1.7rem;
  }

  .appointment-card {
    padding: 1.8rem 1.4rem;
  }
}

/* =======================
   FOOTER
   ======================= */
.footer {
  padding: 3rem 1rem 3.5rem;
  background-color: #0f172a;
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-brand {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(226, 232, 240, 0.7);
  margin-bottom: 0.4rem;
}

.footer-main {
  font-size: 0.98rem;
  font-weight: 500;
  color: #f8fafc;
  margin-bottom: 0.2rem;
}

.footer-hours {
  margin-top: 0.7rem;
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.78);
  line-height: 1.5;
}

.footer-contact {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  font-size: 1rem;
  color: rgba(226, 232, 240, 0.85);
  text-align: center;
  line-height: 1.6;
}

.footer-links {
  margin-top: -1rem;
  margin-bottom: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: center;
}

.footer-links a {
  font-size: 0.9rem;
  color: #cbd5f5;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-links a:hover {
  color: #93c5fd;
}

.footer-social {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.18);
  transform: translateY(-1px);
}

.footer-social img {
  width: 26px;
  height: 26px;
  opacity: 0.95;
  filter: none;
  transition: 0.2s ease;
}

.footer-social img:hover {
  opacity: 1;
  transform: scale(1.15);
}

.footer-email-box {
  margin-top: 1.5rem;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-inner .footer-email-box {
  margin-left: auto;
  margin-right: auto;
}

.email-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  object-fit: contain;
  filter: none;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

.email-link {
  font-size: 0.96rem;
  font-weight: 500;
  color: #e2e8f0;
  text-decoration: none;
  letter-spacing: 0.03em;
}

.email-link:hover {
  text-decoration: underline;
  color: #93c5fd;
}

/* PAYMENT METHODS */
.footer-payments {
  margin-top: 25px;
  text-align: center;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.payment-title {
  font-size: 18px;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 12px;
}

.payment-icons img {
  height: 36px;
  padding: 8px 14px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.25);
  opacity: 0.95;
  filter: none;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.payment-icons img:hover {
  opacity: 1;
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.32);
}

/* TRUSTED SUPPLIERS */
.footer-suppliers {
  margin-top: 0;
  text-align: center;
  padding-bottom: 0;
}

.supplier-title {
  font-size: 16px;
  font-weight: 600;
  color: #dbe4ff;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.supplier-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.supplier-logos img {
  height: 28px;
  max-width: 140px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  object-fit: contain;
  opacity: 0.98;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.supplier-logos img:hover {
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .supplier-logos img {
    height: 22px;
  }
}

@media (max-width: 640px) {
  .footer-contact {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

/* =======================
   FOOTER MAP
   ======================= */
.footer-map {
  padding: 40px 0;
  background: #f3f4f8;
  margin-top: 50px;
}

.footer-map-title {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
}

/* Accessories page spacing fix */
.accessories-spacing {
  margin-top: 60px;
}

.accessories-page .services-section {
  margin-top: 60px;
}

/* =======================
   IPHONE SERVICE PAGE – MASTER LAYOUT
   ======================= */
.service-page {
  padding: 4rem 0 5rem;
  background: #f3f5fb;
}

/* Üst başlık */
.service-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.service-header h1 {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}

.service-header p {
  font-size: 1rem;
  line-height: 1.7;
  color: #6b7280;
}

/* Lifetime Warranty badge */
.slogan-wrapper {
  display: flex;
  justify-content: center;
  margin: 0 0 2.5rem;
}

.slogan-box {
  background: #56ADEC;
  color: white;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 12px;
  display: inline-block;
  text-decoration: none;
  font-size: 18px;
  cursor: pointer;
  transition: 0.2s ease;
}

.slogan-box:hover {
  background: #3B8BCB;
}

/* iPhone kart grid’i */
.iphone-grid {
  display: grid;
  gap: 24px;
  justify-content: center;
}

/* Tablet */
@media (min-width: 640px) {
  .iphone-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 900px;
    margin: 0 auto;
  }
}

/* Desktop */
@media (min-width: 992px) {
  .iphone-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1100px;
    margin: 0 auto;
  }
}

/* iPhone kartları */
.iphone-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 1.75rem 1.8rem 2rem;
  text-align: center;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.iphone-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.iphone-card img {
  width: 100%;
  max-width: 260px;
  height: auto;
  margin: 0 auto 1.1rem;
  border-radius: 18px;
  object-fit: cover;
  display: block;
}

.iphone-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #111827;
}

.iphone-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b5563;
}

/* =======================
   REPAIR HERO (screen/battery vb. için)
   ======================= */

/* Screen/battery hero – master */
.battery-hero {
  margin: 10px auto 0;
  max-width: 360px;
}

.battery-hero-frame {
  border: 3px solid #1f6feb;
  border-radius: 24px;
  padding: 10px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.battery-hero-inner {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  height: 260px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.battery-hero-img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain;
  border-radius: 16px;
  display: block;
}

/* Seçenek kart grid’i (3’lü) */
.option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 1.5rem;
}

@media (max-width: 1100px) {
  .option-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* Kart içi resim alanı */
.option-img-wrapper {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  background: #e8e8e8;
  margin-bottom: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.option-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

/* Servis maddeleri listesi */
.service-list {
  list-style: disc;
  margin: 0.9rem 0 0;
  padding-left: 1.2rem;
  font-size: 0.95rem;
  line-height: 1.55;
}

.service-card li + li {
  margin-top: 0.3rem;
}

/* =======================
   SCREEN IMAGE LIGHTBOX
   ======================= */
.screen-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 15px;
}

.screen-images img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.screen-images img:hover {
  transform: scale(1.05);
}

/* Lightbox overlay */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
  box-sizing: border-box;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  text-align: center;
}

.lightbox img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.7);
  animation: lbFadeIn 0.2s ease-out;
}

.lightbox-caption {
  margin-top: 12px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 32px;
  color: #ffffff;
  background: transparent;
  border: none;
  cursor: pointer;
  line-height: 1;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  color: #ffffff;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-arrow:hover,
.lightbox-close:hover {
  opacity: 0.8;
}

@keyframes lbFadeIn {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: scale(1); }
}

/* =======================
   DİĞER KÜÇÜK BİLEŞENLER
   ======================= */

/* Büyük info kartı */
.core-card {
  width: 600px;
  height: 900px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.core-card img {
  width: 100%;
  height: 55%;
  object-fit: cover;
  display: block;
}

.core-card-body {
  padding: 25px;
  height: 45%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.core-card h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.core-card p {
  font-size: 18px;
  line-height: 1.5;
}

/* Servis detay sayfası ana görseli */
.service-main-img {
  width: 320px;
  max-width: 100%;
  border-radius: 12px;
  display: block;
}

.service-content {
  display: flex;
  gap: 35px;
  align-items: flex-start;
  flex-wrap: wrap;
}
/* S-Series grid — iPhone sayfası ile birebir aynı (3-2-1) */
.model-grid {
    display: grid;
    gap: 24px;
    justify-content: center;
}

/* Mobile — 1'li */
.model-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

/* Tablet — 2'li */
@media (min-width: 640px) {
    .model-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 900px;
        margin: 0 auto;
    }
}

/* Laptop / Desktop — 3'li */
@media (min-width: 1024px) {
    .model-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: 1250px;
        margin: 0 auto;
    }
}
/* ===== S-Series için iPhone ile aynı grid (3-2-1) ===== */
.s-series .model-grid {
    display: grid !important;
    gap: 24px !important;
    justify-content: center !important;
}

.s-series .model-grid {
    grid-template-columns: repeat(1, minmax(0,1fr)) !important;
}

@media (min-width: 640px) {
    .s-series .model-grid {
        grid-template-columns: repeat(2, minmax(0,1fr)) !important;
    }
}

@media (min-width: 1024px) {
    .s-series .model-grid {
        grid-template-columns: repeat(3, minmax(0,1fr)) !important;
        max-width: 1250px !important;
        margin: 0 auto !important;
    }
}


/* ============================
   MOTO SERVICE GRID (2 x 2)
   ============================ */
.moto-service-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 32px;
    margin-top: 40px;
    justify-items: center; /* kartları ortalar */
}

/* kart genişliği — çok büyüyorsa limitleyelim */
.moto-service-grid .iphone-card {
    width: 100%;
    max-width: 420px; /* iPhone kartlarıyla aynı estetik */
}

/* ==== iPad özel grid ==== */
.ipad-grid {
    grid-template-columns: repeat(2, 1fr) !important;
}

@media (max-width: 900px) {
    .ipad-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ==== FORCE 2 COLUMN GRID ==== */
.option-grid {
    grid-template-columns: repeat(2, 1fr) !important;
}


.color-swatches {
    display: inline-flex;
    gap: 6px;
    margin-left: 8px;
}

.color-swatch {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
    position: relative;
    cursor: pointer;
}

/* ==== Tooltip ==== */
.color-swatch:hover::after {
    content: attr(data-color);
    position: absolute;
    top: 26px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 11px;
    white-space: nowrap;
    z-index: 9999;
}

.color-swatch:hover::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #000 transparent transparent transparent;
    z-index: 9998;
}
.cosmic-orange {
    background: linear-gradient(135deg, #ff8a3d, #ff6a00);
}

.deep-blue {
    background: linear-gradient(135deg, #003d7a, #0055aa);
}

.silver {
    background: linear-gradient(135deg, #d9d9d9, #f5f5f5);
}

/* Only hide 'See details' links on A-Series pages */
body[class*="samsung-a"] .option-link {
    display: none !important;
}
/* === SLIDER FIX v2: Resim kaybolmadan kutuya sığsın === */

.promo-panel {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto 10px;
    border-radius: 28px;
    overflow: hidden;          /* köşeler yuvarlak kalsın */
}

.promo-slider {
    width: 100%;
}

.promo-slide {
    width: 100%;
    height: 260px;             /* kutunun yüksekliği sabit */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;          /* banner’ın arkası siyah ise güzel durur */
}

.promo-slide img {
    max-width: 100%;           /* genişliği kutuya göre sınırla */
    max-height: 100%;          /* yüksekliği de kutuya göre sınırla */
    width: auto;
    height: auto;
    display: block;
}
/* === SINGLE SLIDE PANEL FIX — iç kutuyu iptal etmek === */
.promo-panel {
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
    padding: 0;
    border-radius: 28px;
    overflow: hidden;
    background: #fff; /* beyaz panelin kendisi */
}

.promo-slider {
    width: 100%;
}

.promo-slide {
    padding: 0 !important;
    margin: 0 !important;
    background: none !important;   /* iç kutunun background'unu iptal */
    height: auto !important;
}

.promo-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;               /* iç radius varsa kaldır */
}

/* === SLIDER FINAL FIX — Banner tam sığsın, kesilmesin === */

.promo-panel {
    width: 100%;
    max-width: 1300px;     /* genişliği biraz daha açtım */
    margin: 30px auto;
    padding: 0;
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
}

.promo-slider {
    width: 100%;
}

.promo-slide {
    padding: 0 !important;
    margin: 0 !important;
    background: none !important;
    height: 380px !important;     /* GENİŞLETİLMİŞ YÜKSEKLİK */
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* === PROMO SLIDER - FINAL FIX === */

/* Dış panel */
.promo-panel {
    width: 100%;
    max-width: 1300px;
    margin: 30px auto;
    padding: 0;
    border-radius: 28px;
    overflow: hidden;        /* Sadece aktif slide görünsün */
    background: #fff;
}

/* Slider hattı */
.promo-slider {
    width: 100%;
}

/* Slide: varsayılan olarak GÖRÜNMEZ */
.promo-slide {
    width: 100% !important;
    height: 360px !important;    /* Daha yüksek istiyorsan 400 yapabilirsin */
    display: none !important;    /* hepsi gizli */
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    margin: 0 !important;
    background: #000;            /* banner siyah olduğu için güzel oturur */
}

/* Sadece .active olan slide görünsün */
.promo-slide.active {
    display: flex !important;
}

/* Slide içindeki resim */
.promo-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
}

/* === PROMO SLIDER - WIDTH FIX === */

.promo-panel {
    width: 100%;
    max-width: 1100px;   /* GENIŞLIK KISALDI — artık resim sıkışmayacak */
    margin: 30px auto;
    padding: 0;
    border-radius: 26px;
    overflow: hidden;
    background: #fff;
}

/* Slider hattı */
.promo-slider {
    width: 100%;
}

/* Bütün slide’lar gizli */
.promo-slide {
    width: 100% !important;
    height: 360px !important;
    display: none !important;
    align-items: center;
    justify-content: center;
    background: #000;
    padding: 0 !important;
    margin: 0 !important;
}

/* Sadece aktif slide görünür */
.promo-slide.active {
    display: flex !important;
}

/* Resim ayarları */
.promo-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
}

/* Slider kapsayıcı */
.promo-panel {
  position: relative;
  margin-bottom: 30px;
}

/* Slider içi */
.promo-slider {
  position: relative;
  overflow: hidden;
}

/* Tek tek slide */
.promo-slide {
  display: none;
}
.promo-slide.active {
  display: block;
}

/* OK BUTONLARI */
.promo-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  border: none;
  background: rgba(0,0,0,0.45);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Sol ok */
.promo-prev {
  left: 18px;
}

/* Sağ ok */
.promo-next {
  right: 18px;
}

/* Noktalar artık kullanılmıyor, istersen tamamen silebilirsin
.promo-dots, .promo-dot { ... } */

/* HERO IMAGE CTA BUTTON */
.mail-image-frame{
  position: relative;
}

.mail-hero-link{
  position: absolute;
  right: 26px;
  bottom: 22px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #1f6feb;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(15,23,42,0.18);
  z-index: 5;
}

.mail-hero-link:hover{
  filter: brightness(1.05);
}

.brand-title {
  font-weight: 800;
  color: #000;
}

.brand-blue {
  color: #1f6feb; /* One Fix Tech mavi */
}

.bt-blue{
  color:#1f6feb;
  font-weight:900;
}
.bt-blue{
  color: rgb(109, 171, 231);
  font-weight: 900;
}

.brand-link{
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}
.brand-link:hover{ opacity: 0.98; }
/* Brand (logo + Broken? Not Anymore) underline fix */
.brand-link,
.brand-link:visited,
.brand-link:hover,
.brand-link:active{
  text-decoration: none !important;
  color: inherit;
}

.brand-link{
  display:flex;
  align-items:center;
  gap:16px;
  text-decoration:none;
  color:inherit;
}
.brand-link:focus-visible{
  outline: 3px solid rgba(31,111,235,0.35);
  outline-offset: 6px;
  border-radius: 14px;
}



/* =======================
   BACK TO TOP
   ======================= */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 22px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.15);
  background: #ffffff;
  color: #1f6feb;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.16);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, filter 0.2s ease;
  z-index: 999;
}

.back-to-top:hover {
  filter: brightness(1.05);
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 640px) {
  .back-to-top {
    right: 14px;
    bottom: 16px;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* =======================
   MOBILE HEADER + PROMO FIXES
   ======================= */
.mobile-lang {
  display: grid;
  gap: 8px;
}

.mobile-lang-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #64748b;
}

.mobile-lang .lang-options {
  width: 100%;
  min-width: 0;
}

.mobile-lang .lang-link {
  font-size: 0.82rem;
  padding: 6px 10px;
}

@media (max-width: 900px) {
  .navbar-top {
    padding: 8px 14px;
    gap: 10px;
  }

  .navbar-left {
    gap: 12px;
  }

  .brand-text {
    font-size: 20px;
    line-height: 1.05;
  }

  .lang-switch {
    display: none;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 768px) {
  .promo-panel {
    margin: 16px 12px;
    border-radius: 18px;
  }

  .promo-slide {
    height: auto !important;
    background: #ffffff !important;
  }

  .promo-slide img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
  }

  .promo-prev,
  .promo-next {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }
}
/* Home slider navbar'a yapışmasın */
.home-page .promo-panel {
  margin-top: 18px !important;
}
/* Navbar fixed/sticky ise güvenli boşluk */
body.home-page {
  padding-top: calc(var(--navbar-height, 0px) + 12px) !important;
}

/* =======================
   THEME OVERRIDE (2026-02-20)
   ======================= */
:root {
  --oft-bg: #f6f8fb;
  --oft-surface: #ffffff;
  --oft-text: #0f172a;
  --oft-muted: #526072;
  --oft-primary: #0b6e99;
  --oft-accent: #14b8a6;
  --oft-border: #d9e3ee;
  --oft-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

body {
  background-color: var(--oft-bg);
  color: var(--oft-text);
}

.navbar,
.mobile-menu,
.service-card,
.iphone-card,
.appointment-card,
.appointment-wrapper,
.franchise-card,
.franchise-benefits-card,
.franchise-form-card {
  background: var(--oft-surface);
  border-color: var(--oft-border);
  box-shadow: var(--oft-shadow);
}

.brand-text,
.section-title,
.service-card h3,
.contact-section .section-title {
  color: var(--oft-text);
}

.brand-text .blue-part,
.brand-blue,
.bt-blue,
.nav-links a:hover,
.nav-links .active,
.lang-link.active,
.back-to-top,
.service-card .card-icon {
  color: var(--oft-primary) !important;
}

.navbar-search,
.menu-toggle,
.lang-switch,
.lang-options,
.btn-outline,
.back-to-top {
  border-color: var(--oft-border);
}

.navbar-search,
.btn-outline,
.back-to-top {
  background: var(--oft-surface);
}

.section-subtitle,
.card-desc,
.service-card p,
.appointment-note,
.contact-text,
.mobile-lang-label {
  color: var(--oft-muted);
}

.btn-primary,
.franchise-btn,
.top-info-banner,
.promo-banner,
.promo-nav,
.order-pill:not(.disabled) {
  background: linear-gradient(135deg, var(--oft-primary), var(--oft-accent));
  color: #ffffff;
}

.btn-outline {
  color: var(--oft-primary);
}

.btn-outline:hover {
  background: #eef7fb;
}

.lang-link:focus-visible,
.brand-link:focus-visible,
.menu-toggle:focus-visible,
.btn-primary:focus-visible,
.btn-outline:focus-visible {
  outline: 2px solid var(--oft-primary);
  outline-offset: 2px;
}

.footer {
  background-color: #0f172a;
  border-top: 1px solid rgba(20, 184, 166, 0.28);
}

.footer-brand,
.footer-hours,
.footer-contact,
.footer-links a {
  color: #dbe8f3;
}

.footer-links a:hover {
  color: #14b8a6;
}

.footer-social a {
  border-color: rgba(20, 184, 166, 0.35);
}

.footer-email-box {
  background: rgba(11, 110, 153, 0.25);
  border-color: rgba(20, 184, 166, 0.45);
}

/* Card links site-wide: prevent browser default visited colors on card text */
.service-card-link,
.service-card-link:visited,
.service-card-link:hover,
.service-card-link:active,
.option-card-link,
.option-card-link:visited,
.option-card-link:hover,
.option-card-link:active,
.model-card-link,
.model-card-link:visited,
.model-card-link:hover,
.model-card-link:active,
.iphone-card-link,
.iphone-card-link:visited,
.iphone-card-link:hover,
.iphone-card-link:active,
.protector-card-link,
.protector-card-link:visited,
.protector-card-link:hover,
.protector-card-link:active,
.subcategory-card,
.subcategory-card:visited,
.subcategory-card:hover,
.subcategory-card:active {
  color: #0f172a !important;
  text-decoration: none !important;
}

.service-card-link h1,
.service-card-link h2,
.service-card-link h3,
.service-card-link h4,
.service-card-link p,
.service-card-link li,
.service-card-link span,
.option-card-link h3,
.option-card-link .option-details,
.option-card-link .option-meta,
.model-card-link h1,
.model-card-link h2,
.model-card-link h3,
.model-card-link h4,
.model-card-link p,
.model-card-link li,
.model-card-link span,
.iphone-card-link h1,
.iphone-card-link h2,
.iphone-card-link h3,
.iphone-card-link h4,
.iphone-card-link p,
.iphone-card-link li,
.iphone-card-link span,
.protector-card-link h1,
.protector-card-link h2,
.protector-card-link h3,
.protector-card-link h4,
.protector-card-link p,
.protector-card-link li,
.protector-card-link span,
.subcategory-card h1,
.subcategory-card h2,
.subcategory-card h3,
.subcategory-card h4,
.subcategory-card p,
.subcategory-card li,
.subcategory-card span {
  color: #0f172a !important;
}

.option-card-link .option-cta {
  color: #0b6e99 !important;
}
