/* =============================================
   ABC SANDVIÇ PANEL - Ana Stil Dosyası
   ============================================= */

:root {
  --primary: #f5c000;
  --primary-dark: #d4a500;
  --primary-light: #ffd740;
  --secondary: #2e2e2e;
  --text: #1a1a1a;
  --text-muted: #6b7280;
  --bg-gray: #f8f9fa;
  --bg-dark: #0f1f2e;
  --white: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.14);
  --radius: 12px;
  --radius-sm: 8px;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c7e;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--white);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* =============================================
   BUTONLAR
   ============================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #1a1a1a;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245,192,0,0.4);
}
.btn-primary svg { width: 18px; height: 18px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.2s;
  cursor: pointer;
  backdrop-filter: blur(4px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  border-color: var(--white);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid var(--primary);
  transition: all 0.2s;
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--whatsapp);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-1px);
}
.btn-whatsapp svg { width: 18px; height: 18px; }

.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-xl { padding: 18px 40px; font-size: 1.15rem; font-weight: 700; }
.btn-full { width: 100%; justify-content: center; }

/* =============================================
   TOP BAR
   ============================================= */
.topbar {
  background: var(--secondary);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.85rem;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.topbar .btn-whatsapp,
.topbar .btn-phone {
  padding: 6px 14px;
  font-size: 0.85rem;
  border-radius: 6px;
}
.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.2s;
}
.btn-phone:hover { background: var(--primary-dark); }
.btn-phone svg { width: 14px; height: 14px; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
}
.logo-img {
  height: 52px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
.footer-logo-wrap {
  background: #ffffff;
  border-radius: 10px;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
}
.footer-logo {
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary); }

/* DROPDOWN */
.nav-dropdown { position: relative; }

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.nav-dropdown-trigger svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}
.nav-dropdown:hover .nav-dropdown-trigger svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  min-width: 300px;
  overflow: hidden;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
  color: var(--text);
}
.nav-dropdown-menu a:last-child { border-bottom: none; }
.nav-dropdown-menu a:hover { background: #fffbf0; }

.dd-icon { font-size: 1rem; color: var(--primary); flex-shrink: 0; }
.nav-dropdown-menu a div { display: flex; flex-direction: column; gap: 2px; }
.nav-dropdown-menu a strong { font-size: 0.9rem; font-weight: 700; color: var(--secondary); }
.nav-dropdown-menu a span { font-size: 0.78rem; color: var(--text-muted); font-weight: 400; }

/* KART LİNK */
.product-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.product-card-link * { pointer-events: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.mobile-menu a {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: background 0.2s;
}
.mobile-menu a:hover { background: var(--bg-gray); }
.mobile-menu.open { display: flex; }

/* =============================================
   ACİLİYET BANDI
   ============================================= */
.aciliyet-bandi {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(90deg, #e85d04, #f5c000, #e85d04);
  background-size: 200% auto;
  animation: bandi-kayma 3s linear infinite;
  color: #0a1628;
  text-decoration: none;
  padding: 11px 20px;
  font-size: 0.92rem;
  font-weight: 600;
  flex-wrap: wrap;
  text-align: center;
}
@keyframes bandi-kayma {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.aciliyet-bandi:hover { opacity: 0.92; }
.aciliyet-bandi-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #0a1628;
  flex-shrink: 0;
  animation: pulse-dot 1.2s infinite;
}
.aciliyet-bandi-text strong { font-weight: 800; }
.aciliyet-bandi-text span { opacity: 0.85; }
.aciliyet-bandi-btn {
  background: #0a1628;
  color: #f5c000;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .aciliyet-bandi-text span { display: none; }
  .aciliyet-bandi { gap: 8px; font-size: 0.85rem; }
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  background: url('../img/hero-bg.webp') center center / cover no-repeat;
  color: var(--white);
  padding: 80px 0 90px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8, 18, 32, 0.95) 0%,
    rgba(8, 18, 32, 0.90) 40%,
    rgba(8, 18, 32, 0.0) 58%,
    rgba(8, 18, 32, 0.0) 100%
  );
}

.hero-left {
  position: relative;
  z-index: 1;
}

.hero-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.hero-left {
  max-width: 560px;
  flex: 1;
}

.hero-badge-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2e9e4f;
  margin-right: 8px;
  animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(46,158,79,0.15);
  border: 1px solid rgba(46,158,79,0.4);
  color: var(--primary-light);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--primary-light); }

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 600px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 28px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.hero-trust-item svg {
  width: 15px;
  height: 15px;
  color: #2e9e4f;
  flex-shrink: 0;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* Hero sağ form */
.hero-form-box {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 28px;
  width: 340px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-form-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
}
.hero-form-box h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--secondary);
  margin: 0;
  line-height: 1.2;
}
.hero-form-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}
.hero-form-box p strong { color: var(--secondary); }
.hero-form-alti {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 4px;
}

/* Pulse butonu */
.btn-pulse {
  animation: btn-pulse 2s infinite;
}
@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,192,0,0.5); }
  50% { box-shadow: 0 0 0 10px rgba(245,192,0,0); }
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat strong { font-size: 1.8rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat span { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

/* =============================================
   SECTION ORTAK
   ============================================= */
.section { padding: 80px 0; }
.bg-gray { background: var(--bg-gray); }
.bg-dark { background: var(--bg-dark); color: var(--white); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 12px;
}
.section-header p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.65); }

/* =============================================
   NEDEN BİZDEN ALMALISIN
   ============================================= */
.neden-bizden {
  background: #0a1628;
  padding: 72px 0;
  color: var(--white);
}
.neden-bizden-baslik {
  text-align: center;
  margin-bottom: 52px;
}
.neden-bizden-baslik h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.neden-bizden-baslik p {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
}
.neden-bizden-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.neden-kart {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color 0.2s, background 0.2s;
}
.neden-kart:hover {
  background: rgba(245,192,0,0.07);
  border-color: rgba(245,192,0,0.35);
}
.neden-kart-ust {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}
.neden-kart-ust svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}
.neden-sayi {
  font-size: 2.4rem;
  font-weight: 900;
  color: rgba(245,192,0,0.2);
  line-height: 1;
}
.neden-kart h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.neden-kart p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 16px;
}
.neden-vurgu {
  display: inline-block;
  background: rgba(245,192,0,0.12);
  border: 1px solid rgba(245,192,0,0.3);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
}
.neden-bizden-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .neden-bizden-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .neden-bizden-grid { grid-template-columns: 1fr; }
}

/* =============================================
   ÜRÜNLER
   ============================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.product-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(232,93,4,0.1);
}

.featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}

.product-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.product-icon svg { width: 36px; height: 36px; }

.product-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
}
.product-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.product-features li {
  font-size: 0.85rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}
.product-features li::before { color: #2e9e4f; }

/* =============================================
   NEDEN BİZ
   ============================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.feature-icon-wrap {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #fff8e1, #fff3cd);
  border: 2px solid #f5c000;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: background 0.2s, transform 0.2s;
}
.feature-card:hover .feature-icon-wrap {
  background: linear-gradient(135deg, #f5c000, #ffd740);
  transform: scale(1.08);
}
.feature-icon-wrap svg {
  width: 28px;
  height: 28px;
  color: #2e2e2e;
  stroke: #2e2e2e;
}
.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =============================================
   HAKKIMIZDA
   ============================================= */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 20px;
}
.about-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-text strong { color: var(--text); }

.about-highlights {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.highlight {
  display: flex;
  flex-direction: column;
}
.highlight strong {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.highlight span {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.about-cta-box {
  background: var(--bg-gray);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: sticky;
  top: 100px;
}
.about-cta-box h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
}
.about-cta-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}
.about-cta-box .btn-primary,
.about-cta-box .btn-whatsapp {
  margin-bottom: 12px;
}

.working-hours {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 8px;
}
.working-hours svg { width: 16px; height: 16px; flex-shrink: 0; }

/* =============================================
   İLETİŞİM
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.contact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: background 0.2s, border-color 0.2s;
}
.contact-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(232,93,4,0.4);
}
.contact-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: transform 0.2s;
}
.contact-card:hover .contact-icon-wrap { transform: scale(1.1); }
.contact-icon-wrap svg { width: 28px; height: 28px; }

.contact-icon-phone {
  background: rgba(245,192,0,0.15);
  border: 2px solid rgba(245,192,0,0.4);
}
.contact-icon-phone svg { stroke: #f5c000; }

.contact-icon-wa {
  background: rgba(37,211,102,0.15);
  border: 2px solid rgba(37,211,102,0.4);
}
.contact-icon-wa svg { fill: #25d366; }

.contact-icon-loc {
  background: rgba(255,100,100,0.15);
  border: 2px solid rgba(255,100,100,0.4);
}
.contact-icon-loc svg { stroke: #ff6464; }
.contact-card h3 {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.contact-card a, .contact-card span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.contact-card a:hover { color: var(--primary-light); }
.contact-card p { font-size: 0.85rem; color: rgba(255,255,255,0.5); }

.cta-bottom {
  text-align: center;
}
.cta-bottom h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #0a1520;
  color: rgba(255,255,255,0.7);
  padding: 40px 0 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand .logo-main { color: var(--white); }
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.footer-contact a {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-light);
}
.footer-contact span { font-size: 0.85rem; }

.footer-bottom {
  padding: 16px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); line-height: 1.8; }
.footer-keywords { font-size: 0.75rem !important; }

/* =============================================
   SABİT ARAMA BUTONU (Mobil)
   ============================================= */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  background: var(--primary);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 4px 24px rgba(232,93,4,0.45);
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  animation: pulse 2s infinite;
}
.sticky-call svg { width: 20px; height: 20px; }

/* SAĞ ALT KÖŞE BUTONLARI */
.floating-btns {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}
.floating-btn:hover { transform: scale(1.1); }
.floating-btn svg { width: 28px; height: 28px; }
.floating-btn-wa { background: #25D366; color: #fff; }
.floating-btn-tel { background: var(--primary); color: #fff; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(245,192,0,0.5); }
  50% { box-shadow: 0 4px 32px rgba(245,192,0,0.8); }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .about-inner {
    grid-template-columns: 1fr;
  }
  .about-cta-box { position: static; }
}

@media (max-width: 900px) {
  .hero-form-box { display: none; }
  .hero-content { justify-content: flex-start; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 60px 0 70px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-primary,
  .hero-btns .btn-whatsapp { width: 100%; justify-content: center; }

  .topbar span { display: none; }

  .section { padding: 56px 0; }
  .section-header { margin-bottom: 36px; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-contact { align-items: flex-start; }

  .sticky-call { display: flex; }
}

/* =============================================
   MÜŞTERİ YORUMLARI
   ============================================= */
.yorumlar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.yorum-kart {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.yorum-kart:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(245,192,0,0.12);
}
.yorum-yildiz {
  color: #f5c000;
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.yorum-kart p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.yorum-kisi {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.yorum-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--secondary);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.yorum-kisi strong {
  display: block;
  font-size: 0.9rem;
  color: var(--secondary);
  font-weight: 700;
}
.yorum-kisi span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

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

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .yorumlar-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .stat strong { font-size: 1.4rem; }
}

/* =============================================
   TEKLİF FORMU
   ============================================= */
.teklif-section {
  background: var(--secondary);
  color: var(--white);
}
.teklif-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.teklif-sol h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.teklif-sol p {
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 24px;
}
.teklif-madde {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 10px;
}
.teklif-madde svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}
.teklif-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.teklif-form h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 4px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  background: #fafafa;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
}
.form-group textarea {
  resize: vertical;
  min-height: 80px;
}
.form-submit {
  background: var(--primary);
  color: var(--secondary);
  border: none;
  border-radius: 8px;
  padding: 14px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  font-family: inherit;
}
.form-submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
.form-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}
.form-success {
  display: none;
  text-align: center;
  padding: 20px;
  color: #2e9e4f;
  font-weight: 700;
  font-size: 1rem;
}

@media (max-width: 900px) {
  .teklif-inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
  .teklif-form { padding: 24px; }
}

/* =============================================
   SSS / FAQ
   ============================================= */
.sss-grid {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sss-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.sss-soru {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 24px;
  text-align: left;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--secondary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: inherit;
  transition: color 0.2s;
}
.sss-soru:hover { color: var(--primary); }
.sss-soru svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.25s;
}
.sss-item.acik .sss-soru { color: var(--primary); }
.sss-item.acik .sss-soru svg { transform: rotate(180deg); }
.sss-cevap {
  display: none;
  padding: 0 24px 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.sss-item.acik .sss-cevap { display: block; }
