/* =============================================
   Anavi Boya — Modern Kurumsal Site
   Renk Paleti: Lacivert + Kırmızı + Altın
   ============================================= */

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

:root {
  --navy:   #1B3A6B;
  --navy2:  #0F2447;
  --red:    #C41230;
  --gold:   #D4A017;
  --gold2:  #B88A0E;
  --bg:     #F5F3EF;
  --bg2:    #EDEAE4;
  --white:  #FFFFFF;
  --text:   #1B3A6B;
  --muted:  #6B7280;
  --border: rgba(27,58,107,.12);
  --shadow: 0 4px 24px rgba(27,58,107,.10);
  --radius: 8px;
  --trans:  .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

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

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy2);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 4px 24px rgba(15,36,71,.25);
}

.header-top { display: none; }

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .6rem 2.5rem;
  max-width: 1360px;
  margin: 0 auto;
  gap: 2rem;
}

.logo img { height: 92px; width: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,.3)); }

/* ===== NAV ===== */
.nav { display: flex; align-items: center; gap: .1rem; }

.nav > a, .nav-item > a {
  padding: .55rem 1.1rem;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: rgba(255,255,255,.8);
  border-radius: var(--radius);
  transition: background var(--trans), color var(--trans);
  position: relative;
  white-space: nowrap;
}
.nav > a:hover, .nav-item > a:hover { color: var(--white); background: rgba(255,255,255,.08); }
.nav > a.active { color: var(--gold2); }
.nav > a.active::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 1.1rem; right: 1.1rem;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* CTA butonu */
.nav-cta {
  margin-left: .6rem;
  padding: .55rem 1.3rem !important;
  background: var(--gold) !important;
  color: var(--navy2) !important;
  font-weight: 700 !important;
  border-radius: var(--radius) !important;
  letter-spacing: .04em;
  font-size: .85rem !important;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans) !important;
}
.nav-cta:hover {
  background: var(--gold2) !important;
  color: var(--navy2) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(212,160,23,.4) !important;
}

/* İletişim bilgisi header'da sağda küçük */
.header-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .15rem;
  margin-left: 1rem;
  border-left: 1px solid rgba(255,255,255,.12);
  padding-left: 1.2rem;
}
.header-contact a {
  font-size: .75rem;
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  gap: .35rem;
  transition: color var(--trans);
}
.header-contact a:hover { color: var(--gold); }

/* Dropdown */
.nav-item { position: relative; }
.nav-item > a { display: flex; align-items: center; gap: .3rem; }
.nav-item > a::before { content: "▾"; font-size: .65rem; order: 2; transition: transform var(--trans); }
.nav-item:hover > a::before { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--navy2);
  border: 1px solid rgba(255,255,255,.1);
  border-top: 2px solid var(--gold);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--trans);
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: .6rem 1.2rem;
  font-size: .84rem;
  color: rgba(255,255,255,.65);
  transition: background var(--trans), color var(--trans);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: rgba(212,160,23,.1); color: var(--gold2); padding-left: 1.5rem; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: .5rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all var(--trans); }

/* ===== ACCENT BAR ===== */
.accent-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--navy) 0%, var(--red) 50%, var(--gold) 100%);
}

/* ===== HERO SLIDER ===== */
.hero { position: relative; overflow: hidden; background: var(--navy2); }

.slides { display: flex; height: 580px; }
.slide {
  min-width: 100%;
  position: relative;
  flex-shrink: 0;
}
.slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .55;
}
.slide-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 2rem;
}
.slide-caption h1 {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: .8rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.slide-caption h1 strong { font-weight: 600; color: var(--gold); }
.slide-caption p {
  font-size: clamp(.9rem, 2vw, 1.1rem);
  opacity: .85;
  max-width: 520px;
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
}

.slider-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--trans);
  backdrop-filter: blur(4px);
}
.slider-btn:hover { background: rgba(255,255,255,.3); }
.slider-prev { left: 1.5rem; }
.slider-next { right: 1.5rem; }

.slider-dots {
  position: absolute;
  bottom: 1rem; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: .5rem;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: background var(--trans), transform var(--trans);
}
.slider-dot.active { background: var(--gold); transform: scale(1.3); }

/* ===== SECTION HELPERS ===== */
.section { padding: 5rem 2rem; }
.section-alt { background: var(--white); }
.container { max-width: 1200px; margin: 0 auto; }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .6rem;
}
.section-header h2 {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: .8rem;
}
.section-header p { color: var(--muted); max-width: 560px; margin: 0 auto; }
.title-divider {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  border-radius: 2px;
  margin: .8rem auto 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .7rem 1.6rem;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--trans);
  border: 2px solid transparent;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy2); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(27,58,107,.25); }
.btn-outline { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: #a30e28; transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold2); }

/* ===== URUNLER GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--white);
  border-radius: calc(var(--radius) * 1.5);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--trans), box-shadow var(--trans);
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(27,58,107,.16);
}
.product-card-img {
  height: 180px;
  overflow: hidden;
  background: var(--bg2);
  position: relative;
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }

.product-card-body {
  padding: 1.2rem 1.4rem 1.4rem;
}
.product-card-body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .4rem;
}
.product-card-body p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.5;
}
.product-card-tag {
  display: inline-block;
  margin-top: .8rem;
  padding: .25rem .7rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(196,18,48,.08);
  color: var(--red);
  border-radius: 20px;
}

/* ===== STATS ===== */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat-unit { font-size: 1.4rem; }
.stat-label { font-size: .85rem; color: var(--muted); margin-top: .4rem; }

/* ===== ABOUT SPLIT ===== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-text h2 {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 1.2rem;
}
.about-text p { color: var(--muted); margin-bottom: 1rem; }
.about-text .highlight { color: var(--red); font-weight: 600; }
.about-visual { position: relative; }
.about-visual img { border-radius: calc(var(--radius) * 2); box-shadow: var(--shadow); }
.about-badge {
  position: absolute;
  bottom: -1.5rem; left: -1.5rem;
  background: var(--gold);
  color: var(--navy);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  font-weight: 700;
  text-align: center;
  font-size: .95rem;
}
.about-badge span { display: block; font-family: "Cormorant Garamond", serif; font-size: 2.2rem; font-weight: 600; }

/* ===== KATALOG ===== */
.katalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.2rem;
}
.katalog-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--trans), box-shadow var(--trans);
}
.katalog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(27,58,107,.15);
}
.katalog-color {
  width: 52px; height: 52px;
  border-radius: 50%;
  margin: 0 auto .8rem;
  border: 3px solid rgba(255,255,255,.5);
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.katalog-card h4 { font-size: .88rem; font-weight: 600; color: var(--navy); margin-bottom: .6rem; }
.katalog-card a {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .78rem; color: var(--red); font-weight: 500;
}
.katalog-card a:hover { text-decoration: underline; }

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  color: var(--white);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(212,160,23,.15) 0%, transparent 60%);
}
.cta-band h2 {
  font-family: "Cormorant Garamond", "Georgia", serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  margin-bottom: .6rem;
  position: relative;
}
.cta-band p { opacity: .8; margin-bottom: 2rem; position: relative; }
.cta-band .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}
.contact-info h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 1rem;
}
.contact-info p { color: var(--muted); margin-bottom: 2rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.2rem;
}
.contact-icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item-text strong { display: block; font-size: .85rem; color: var(--navy); margin-bottom: .15rem; }
.contact-item-text span { font-size: .9rem; color: var(--muted); }

.contact-form { background: var(--white); border-radius: calc(var(--radius)*2); padding: 2.5rem; box-shadow: var(--shadow); }
.contact-form h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 1.5rem; font-weight: 600; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: .82rem; font-weight: 500; color: var(--navy); margin-bottom: .4rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .65rem .9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .9rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--trans), box-shadow var(--trans);
  font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,58,107,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ===== MAP ===== */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 3rem;
  height: 380px;
  background: var(--bg2);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
}

/* ===== PAGE HERO (iç sayfalar) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy2) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="80" cy="20" r="30" fill="rgba(212,160,23,.06)"/><circle cx="10" cy="80" r="25" fill="rgba(196,18,48,.04)"/></svg>');
}
.page-hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300;
  margin-bottom: .5rem;
  position: relative;
}
.page-hero p { opacity: .8; font-size: 1rem; position: relative; }
.breadcrumb {
  display: flex; gap: .5rem; align-items: center; justify-content: center;
  margin-top: 1rem; font-size: .82rem; opacity: .7; position: relative;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { opacity: .5; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy2);
  color: rgba(255,255,255,.75);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 4rem 2rem;
  max-width: 1200px; margin: 0 auto;
}
.footer-brand img { height: 88px; margin-bottom: 1rem; }
.footer-brand p { font-size: .85rem; line-height: 1.7; }
.footer-col h4 {
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul a { font-size: .85rem; transition: color var(--trans); }
.footer-col ul a:hover { color: var(--gold); }
.footer-col .footer-contact-item { display: flex; align-items: flex-start; gap: .6rem; font-size: .85rem; margin-bottom: .6rem; }
.footer-col .footer-contact-item span:first-child { color: var(--gold); flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.2rem 2rem;
  text-align: center;
  font-size: .78rem;
  opacity: .5;
}

/* ===== PRODUCT DETAIL MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(15,36,71,.7);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all var(--trans);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: var(--white);
  border-radius: calc(var(--radius)*2);
  max-width: 680px; width: 90%;
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(15,36,71,.35);
  transform: translateY(20px);
  transition: transform var(--trans);
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-img { height: 280px; overflow: hidden; }
.modal-img img { width: 100%; height: 100%; object-fit: cover; }
.modal-body { padding: 2rem; }
.modal-body h2 { font-family: "Cormorant Garamond", serif; font-size: 1.8rem; color: var(--navy); margin-bottom: .8rem; }
.modal-body p { color: var(--muted); margin-bottom: 1.2rem; line-height: 1.7; }
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(255,255,255,.9); border: none;
  width: 36px; height: 36px; border-radius: 50%;
  font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
}
.modal { position: relative; }

/* ===== RESPONSIVE ===== */

/* Hamburger — her zaman beyaz (header koyu) */
.hamburger span { background: #fff; }

/* ---- Tablet 1024px ---- */
@media (max-width: 1024px) {
  .header-main  { padding: .6rem 1.5rem; }
  .logo img     { height: 78px; }
  .footer-main  { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-row    { grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
  .about-split  { gap: 2.5rem; }
  .contact-grid { gap: 2rem; }
}

/* ========================================
   MOBİL — TEMİZ & SADE TASARIM (≤768px)
   ======================================== */
@media (max-width: 768px) {

  /* === HEADER === */
  .header-main {
    padding: .5rem 1rem;
    gap: 0;
    justify-content: space-between;
  }
  .logo img { height: 64px; }
  .header-contact { display: none; }

  /* Hamburger — belirgin 3 çizgi */
  .hamburger {
    display: flex;
    z-index: 200;
    padding: .6rem;
    background: rgba(255,255,255,.1);
    border-radius: var(--radius);
    gap: 6px;
  }
  .hamburger span {
    width: 26px;
    height: 2.5px;
    background: #fff;
    border-radius: 3px;
  }

  /* === MOBİL NAV — tam ekran, soldan açılır his === */
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy2);
    z-index: 150;
    padding: 0;
    gap: 0;
    overflow-y: auto;
  }

  /* Nav üst bölüm — logo + kapat */
  .nav.open::before {
    content: '';
    display: block;
    height: 80px;
    background: rgba(255,255,255,.04);
    border-bottom: 1px solid rgba(255,255,255,.08);
    flex-shrink: 0;
  }

  .nav-close {
    display: flex !important;
    position: fixed !important;
    top: 1.1rem !important;
    right: 1.1rem !important;
    width: 40px !important;
    height: 40px !important;
    background: rgba(255,255,255,.1) !important;
    border-radius: 50% !important;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 1.2rem !important;
    z-index: 300;
  }

  .nav.open > a,
  .nav.open .nav-item > a {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1rem 1.5rem;
    color: rgba(255,255,255,.85);
    border-bottom: 1px solid rgba(255,255,255,.06);
    border-radius: 0;
    display: flex;
    align-items: center;
  }
  .nav.open > a.active { color: var(--gold); }
  .nav.open > a:hover,
  .nav.open .nav-item > a:hover { background: rgba(255,255,255,.05); }

  .nav.open .nav-cta {
    margin: 1.5rem 1.5rem 0;
    padding: .9rem 1.5rem !important;
    background: var(--gold) !important;
    color: var(--navy2) !important;
    border-radius: var(--radius) !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    justify-content: center;
    text-align: center;
  }

  /* Dropdown mobilde inline */
  .dropdown {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none;
    background: rgba(0,0,0,.15);
    margin: 0;
    border-radius: 0;
  }
  .dropdown a {
    font-size: .9rem;
    padding: .65rem 1.5rem .65rem 2.5rem;
    color: rgba(255,255,255,.55);
    border-bottom: 1px solid rgba(255,255,255,.04);
  }

  /* === HERO SLIDER — mobil: görsel üstte kısa, metin altta === */
  .hero { background: var(--navy2); }

  .slides { height: auto; }

  .slide {
    display: flex;
    flex-direction: column;
  }
  .slide img {
    height: 190px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 1;
    flex-shrink: 0;
  }
  .slide-caption {
    position: static;
    background: var(--navy2);
    padding: 1.2rem 1.2rem 1.6rem;
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start;
    color: #fff;
  }
  .slide-caption h1 {
    font-size: 1.35rem;
    margin-bottom: .4rem;
    text-shadow: none;
    line-height: 1.25;
  }
  .slide-caption p {
    font-size: .82rem;
    opacity: .7;
    max-width: 100%;
    text-shadow: none;
    margin-bottom: 0;
  }

  /* Dot'lar görselin hemen altına */
  .slider-dots {
    position: static;
    transform: none;
    justify-content: flex-start;
    padding: .5rem 1.2rem .2rem;
    background: var(--navy2);
    gap: .4rem;
  }
  .slider-dot { width: 6px; height: 6px; }

  /* Ok butonları sadece görsel alanında */
  .slider-btn {
    top: 95px; /* görsel yüksekliğinin ortası (190/2) */
    width: 34px; height: 34px;
    font-size: .9rem;
  }
  .slider-prev { left: .5rem; }
  .slider-next { right: .5rem; }

  /* Mobil CTA butonları */
  .mobile-hero-cta {
    display: flex !important;
    gap: .7rem;
    margin-top: .9rem;
    flex-wrap: wrap;
  }
  .mobile-hero-cta .btn {
    font-size: .85rem;
    padding: .55rem 1.1rem;
  }

  /* === SECTIONS === */
  .section { padding: 2.8rem 1.2rem; }
  .section-header { margin-bottom: 2rem; }
  .section-header h2 { font-size: 1.7rem; }

  /* === STATS === */
  .stats-row {
    grid-template-columns: repeat(2,1fr);
    gap: 1px;
    background: rgba(255,255,255,.1);
    border-radius: var(--radius);
    overflow: hidden;
  }
  .stat-item {
    background: rgba(255,255,255,.05);
    padding: 1.4rem 1rem;
  }
  .stat-num  { font-size: 2.2rem; }
  .stat-label { font-size: .8rem; }

  /* === ÜRÜN KARTLARI === */
  .products-grid {
    grid-template-columns: repeat(2,1fr);
    gap: 1rem;
  }
  .product-card-img  { height: 150px; }
  .product-card-body { padding: 1rem 1rem 1.2rem; }
  .product-card-body h3 { font-size: .95rem; }
  .product-card-body p  { font-size: .82rem; }

  /* === HAKKIMIZDA SPLIT === */
  .about-split  { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-visual { display: none; }
  .about-text h2 { font-size: 1.6rem; }

  /* === KATALOG === */
  .katalog-grid { grid-template-columns: repeat(2,1fr); gap: .9rem; }
  .katalog-card { padding: 1.2rem .8rem; }
  .katalog-color { width: 42px; height: 42px; }
  .katalog-card h4 { font-size: .82rem; }

  /* === CTA BAND === */
  .cta-band { padding: 3rem 1.2rem; }
  .cta-band h2 { font-size: 1.6rem; }
  .cta-band .btn-group { flex-direction: column; align-items: stretch; }
  .cta-band .btn { justify-content: center; }

  /* === İLETİŞİM === */
  .contact-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .form-row     { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem 1.2rem; border-radius: var(--radius); }
  .contact-info h2 { font-size: 1.5rem; }

  /* === FOOTER === */
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2.5rem 1.2rem;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand img { height: 72px; }

  /* === MODAL === */
  .modal { width: 96%; border-radius: var(--radius); }
  .modal-img { height: 200px; }
  .modal-body { padding: 1.5rem; }

  /* === PAGE HERO === */
  .page-hero { padding: 2.2rem 1.2rem; }
  .page-hero h1 { font-size: 1.9rem; }
}

/* ---- Küçük telefon 480px ---- */
@media (max-width: 480px) {
  .logo img { height: 58px; }
  .slide img { height: 160px; }
  .slider-btn { top: 80px; }
  .slide-caption h1 { font-size: 1.2rem; }
  .slide-caption p  { display: none; }

  .products-grid { gap: .8rem; }
  .product-card-img { height: 130px; }

  .stats-row { gap: 1px; }
  .stat-num  { font-size: 2rem; }

  .katalog-grid { gap: .7rem; }

  .footer-main { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem 1rem; }

  .section { padding: 2.2rem 1rem; }
  .contact-form { padding: 1rem; }
}
