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

:root {
  --primary: #1a1a2e;
  --secondary: #16213e;
  --accent: #e94560;
  --gold: #f5a623;
  --light: #f0f0f0;
  --text: #333;
  --border: #ddd;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: #fff;
}

/* ── HEADER ── */
header {
  background: var(--primary);
  color: #fff;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.header-top {
  background: var(--gold);
  color: #111;
  padding: 6px 40px;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-top a {
  color: #111;
  text-decoration: none;
  font-weight: 600;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #fff;
}

.logo-icon {
  width: 52px;
  height: 52px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  color: #111;
}

.logo-text h1 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
}

.logo-text span {
  font-size: 12px;
  color: #aaa;
  letter-spacing: 2px;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

nav a {
  color: #ccc;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}

nav a:hover,
nav a.active {
  background: var(--gold);
  color: #111;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 50%, #1a1a2e 100%);
  color: #fff;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('img/hero-bg.avif') center/cover no-repeat;
  opacity: 0.15;
}

.hero-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.hero h2 {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero h2 span {
  color: var(--gold);
}

.hero p {
  font-size: 18px;
  color: #bbb;
  margin-bottom: 32px;
  line-height: 1.7;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: #111;
}

.btn-gold:hover {
  background: #d4911e;
  transform: translateY(-1px);
}

.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
  margin-left: 12px;
}

.btn-outline:hover {
  background: var(--gold);
  color: #111;
}

/* ── SECTIONS ── */
.section {
  padding: 60px 40px;
}

.section-alt {
  background: var(--light);
}

.section-dark {
  background: var(--primary);
  color: #fff;
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.section-dark .section-title h2 {
  color: var(--gold);
}

.section-title p {
  color: #666;
  font-size: 16px;
}

.section-dark .section-title p {
  color: #aaa;
}

.section-title .underline {
  width: 60px;
  height: 4px;
  background: var(--gold);
  margin: 12px auto 0;
  border-radius: 2px;
}

/* ── CARDS / GRID ── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 16px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.14);
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #2a2a3e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
}

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

.card-body {
  padding: 20px;
}

.card-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary);
}

.card-body p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ── STATS ── */
.stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 50px 40px;
  background: var(--gold);
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat h3 {
  font-size: 42px;
  font-weight: 900;
  color: #111;
  line-height: 1;
}

.stat p {
  font-size: 14px;
  color: #444;
  font-weight: 600;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── WHY US ── */
.feature-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-icon {
  font-size: 32px;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--primary);
}

.feature-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--primary);
  color: #fff;
  padding: 50px 40px;
  text-align: center;
}

.page-hero h2 {
  font-size: 34px;
  font-weight: 800;
}

.page-hero p {
  color: #aaa;
  margin-top: 8px;
}

.breadcrumb {
  font-size: 13px;
  color: #888;
  margin-top: 10px;
}

.breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #1a1a2e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1000px;
  margin: 0 auto;
}

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

.contact-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--primary);
}

.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-item p, .contact-item a {
  font-size: 15px;
  color: var(--text);
  text-decoration: none;
  line-height: 1.5;
}

.contact-form h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--primary);
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid var(--border);
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
}

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

/* ── TABLE ── */
.price-table {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 16px rgba(0,0,0,0.08);
}

.price-table th {
  background: var(--primary);
  color: #fff;
  padding: 14px 20px;
  text-align: left;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-table td {
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

.price-table tr:nth-child(even) td {
  background: #f9f9f9;
}

.price-table tr:hover td {
  background: #fff8ec;
}

.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
}

.badge-green { background: #e6f9f0; color: #1a7a4a; }
.badge-blue  { background: #e8f0fe; color: #1a56db; }
.badge-gold  { background: #fff8e1; color: #b45309; }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

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

.about-img {
  border-radius: 8px;
  overflow: hidden;
  background: #1a1a2e;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

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

.about-text h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
}

.about-text p {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.check-list {
  list-style: none;
  margin: 20px 0;
}

.check-list li {
  padding: 6px 0;
  padding-left: 28px;
  position: relative;
  color: #444;
  font-size: 15px;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}

/* ── MAP ── */
.map-container {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 16px rgba(0,0,0,0.1);
}

.map-container iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

/* ── HAMBURGER MENÜ BUTONU ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 6px;
  z-index: 1100;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Mobil nav açıkken body scroll kilidi */
body.nav-open { overflow: hidden; }

/* ── MOBİL ALT ÇUBUK (WhatsApp + Ara) ── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  display: flex;
}

.mobile-cta-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
}

.mobile-cta-bar .mcta-call {
  background: #1a1a2e;
}

.mobile-cta-bar .mcta-wa {
  background: #25D366;
}

.mobile-cta-bar svg {
  width: 20px; height: 20px;
  fill: #fff;
  flex-shrink: 0;
}

@media (min-width: 769px) {
  .mobile-cta-bar { display: none !important; }
  body { padding-bottom: 0; }
}

@media (max-width: 768px) {
  /* Hamburger göster */
  .nav-toggle { display: flex; }

  /* Nav overlay */
  nav {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(18, 18, 42, 0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    z-index: 1050;
    backdrop-filter: blur(6px);
  }
  nav.open { display: flex; }
  nav a {
    font-size: 20px;
    font-weight: 700;
    padding: 15px 60px;
    width: 100%;
    max-width: 320px;
    text-align: center;
    border-radius: 8px;
    color: #ddd;
    border: 1px solid rgba(255,255,255,0.07);
  }
  nav a:hover, nav a.active {
    background: var(--gold);
    color: #111;
    border-color: var(--gold);
  }

  /* Mobile CTA bar */
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 56px; }
  /* Mobilde float WA butonu gizle — alt çubukta zaten var */
  .wa-float { display: none; }

  /* Header */
  .header-top { font-size: 11px; padding: 6px 16px; }
  .header-main { padding: 12px 16px; }

  /* Logo küçült */
  .logo-icon { width: 42px; height: 42px; font-size: 20px; }
  .logo-text h1 { font-size: 16px; }
  .logo-text span { display: none; }

  /* Hero */
  .hero { padding: 56px 20px; }
  .hero h2 { font-size: 28px; }
  .hero p { font-size: 15px; margin-bottom: 24px; }

  /* Hero butonları alt alta */
  .hero-content .btn { display: block; width: 100%; max-width: 280px; margin: 0 auto; text-align: center; }
  .hero-content .btn-outline { margin-left: 0; margin-top: 10px; }

  /* Sections */
  .section { padding: 40px 16px; }
  .why-section { padding: 50px 16px; }
  .section-title h2 { font-size: 24px; }
  .section-title p { font-size: 14px; }

  /* Stats */
  .stats { gap: 28px; padding: 36px 16px; flex-wrap: wrap; }
  .stat h3 { font-size: 34px; }

  /* Page hero */
  .page-hero { padding: 36px 16px; }
  .page-hero h2 { font-size: 24px; }

  /* Table yatay scroll */
  .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .price-table { min-width: 540px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  footer { padding: 36px 16px 20px; }
}

/* ── WHATSAPP FLOATING BUTTON ── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
}

.wa-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 13px 20px 13px 14px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  animation: wa-pulse 2.5s ease-in-out infinite;
  white-space: nowrap;
}

.wa-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 28px rgba(37,211,102,0.65);
  animation: none;
}

.wa-btn svg {
  width: 26px;
  height: 26px;
  fill: #fff;
  flex-shrink: 0;
}

@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 4px 32px rgba(37,211,102,0.75), 0 0 0 7px rgba(37,211,102,0.1); }
}

@media (max-width: 480px) {
  .wa-btn span { display: none; }
  .wa-btn { padding: 15px; border-radius: 50%; }
}

/* ── NEDEN BİZ – yeni tasarım ── */
.why-section {
  background: linear-gradient(160deg, #12122a 0%, #1e1e38 60%, #12122a 100%);
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.07) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
  pointer-events: none;
}

.why-section .section-title h2 { color: #fff; }
.why-section .section-title p  { color: #9999bb; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

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

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 34px 26px 28px;
  text-align: left;
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: 14px 14px 0 0;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245,166,35,0.4);
  background: rgba(255,255,255,0.07);
}

.why-card:hover::after { transform: scaleX(1); }

.why-icon-wrap {
  width: 60px; height: 60px;
  background: var(--gold);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.why-icon-wrap svg {
  width: 28px; height: 28px;
  fill: #111;
}

.why-icon-wrap .icon-text {
  font-size: 24px;
  font-weight: 900;
  color: #111;
  line-height: 1;
}

.why-card h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 9px;
  letter-spacing: .2px;
}

.why-card p {
  color: #9999bb;
  font-size: 13.5px;
  line-height: 1.7;
}

/* ── KVKK ÇEREZ BARI ── */
.kvkk-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #111;
  color: #ccc;
  font-size: 13px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 10000;
  flex-wrap: wrap;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.4);
}

.kvkk-bar p { margin: 0; line-height: 1.5; flex: 1; min-width: 200px; }
.kvkk-bar a { color: var(--gold); text-decoration: none; }

.kvkk-bar-btns { display: flex; gap: 10px; flex-shrink: 0; }

.kvkk-accept {
  background: var(--gold);
  color: #111;
  border: none;
  padding: 9px 22px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}

.kvkk-decline {
  background: transparent;
  color: #888;
  border: 1px solid #444;
  padding: 9px 18px;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
}

.kvkk-decline:hover { color: #ccc; border-color: #888; }

@media (max-width: 768px) {
  .kvkk-bar { bottom: 56px; padding: 12px 16px; font-size: 12px; }
}

/* ── İLÇELER / HİZMET BÖLGELERİ ── */
.district-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
  justify-content: center;
  max-width: 980px;
  margin: 0 auto 32px;
}

.district-badge {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  color: #555;
  text-decoration: none;
  transition: color 0.15s;
}

.district-badge:hover {
  color: var(--gold);
  text-decoration: underline;
}

.district-seo-text {
  max-width: 860px;
  margin: 0 auto;
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  text-align: center;
}

/* ── MÜŞTERİ YORUMLARI ── */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border-top: 4px solid var(--gold);
  position: relative;
}

.review-stars {
  color: var(--gold);
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  font-weight: 800;
  flex-shrink: 0;
}

.review-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--primary);
}

.review-date {
  font-size: 12px;
  color: #999;
}

/* ── SSS / FAQ ── */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  padding: 18px 22px;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.2s;
  font-family: inherit;
}

.faq-question:hover { background: #fffbf2; }
.faq-question.active { background: var(--primary); color: #fff; }

.faq-arrow {
  font-size: 18px;
  transition: transform 0.3s;
  flex-shrink: 0;
  color: var(--gold);
}

.faq-question.active .faq-arrow { transform: rotate(180deg); }
.faq-question.active .faq-arrow { color: var(--gold); }

.faq-answer {
  display: none;
  padding: 16px 22px 20px;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  background: #fafafa;
  border-top: 1px solid var(--border);
}

.faq-answer.open { display: block; }

/* ── FOOTER ── */
footer {
  background: var(--secondary);
  color: #ccc;
  padding: 50px 40px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 40px;
}

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

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero h2 { font-size: 22px; }
  .stats { gap: 20px; }
  .stat h3 { font-size: 30px; }
  .section { padding: 36px 14px; }
}

.footer-brand h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: #999;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col ul li a {
  color: #999;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid #2a2a3e;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #666;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── METAL DETAIL PAGE ── */
.metal-detail {
  max-width: 1000px;
  margin: 0 auto;
}

.metal-detail-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

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

.metal-detail-img {
  border-radius: 8px;
  overflow: hidden;
  background: #1a1a2e;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}

.metal-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.metal-info h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}

.metal-info p {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.info-box {
  background: var(--light);
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 6px 6px 0;
  margin-top: 16px;
}

.info-box p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

.info-box strong {
  color: var(--primary);
}

