/* ======================================================
   PARSAL METAL ALÜMINYUM - Ana Stil Dosyası v1.0.0
   Tasarım: CODEGA
====================================================== */

:root {
  --primary:      #1a1a1a;
  --primary-light:#242424;
  --accent:       #c0392b;
  --accent-dark:  #96281b;
  --accent-light: #e74c3c;
  --silver:       #8a9aa8;
  --silver-light: #b8c8d4;
  --white:        #ffffff;
  --bg:           #f4f6f8;
  --bg2:          #eaedf0;
  --text:         #1e1e1e;
  --text-muted:   #6b7280;
  --border:       #dde1e7;
  --shadow:       0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:    0 8px 48px rgba(0,0,0,.15);
  --radius:       10px;
  --radius-lg:    16px;
  --transition:   .3s cubic-bezier(.4,0,.2,1);
  --font:         'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-display: 'Montserrat', 'Segoe UI', system-ui, sans-serif;
  --container:    1200px;
  --header-h:     96px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* TYPOGRAPHY */
h1,h2,h3,h4,h5 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--accent); display: block; }
.section-title { font-size: clamp(24px, 4vw, 40px); color: var(--primary); margin-bottom: 16px; }
.section-title span { color: var(--accent); }
.section-desc { font-size: 17px; color: var(--text-muted); max-width: 560px; line-height: 1.7; }

/* CONTAINER */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-alt { background: var(--bg); }
.section-dark { background: var(--primary); color: var(--white); }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; }
.section-header.center .section-label { margin: 0 auto 12px; display: flex; justify-content: center; }
.section-header.center .section-label::before { display: none; }

/* ==================== HEADER ==================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  background: rgba(18, 18, 20, .96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow .3s ease;
}
.site-header.scrolled {
  box-shadow: 0 2px 32px rgba(0,0,0,.5);
  border-bottom-color: rgba(255,255,255,.04);
}
.header-inner {
  display: flex; align-items: center;
  gap: 40px; height: 100%;
}

/* Logo */
.logo-wrap {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; flex-shrink: 0;
}
.logo-wrap img, .site-logo-img {
  height: 72px !important; width: auto; max-width: 260px;
  object-fit: contain; display: block;
}
.logo-icon-wrap {
  width: 44px; height: 44px; background: var(--accent);
  border-radius: 9px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name {
  font-family: var(--font-display); font-size: 14px;
  font-weight: 800; color: #fff; letter-spacing: 2px;
}
.logo-tagline {
  font-size: 9.5px; color: rgba(255,255,255,.38);
  letter-spacing: 1.2px; text-transform: uppercase; font-weight: 500;
}

/* Nav */
.main-nav {
  display: flex; align-items: center; gap: 2px;
}
.nav-link {
  position: relative; padding: 8px 14px;
  font-size: 13.5px; font-weight: 500;
  color: rgba(255,255,255,.62); letter-spacing: .3px;
  text-decoration: none; border-radius: 7px;
  transition: color .2s ease, background .2s ease;
  white-space: nowrap;
}
.nav-link::after {
  content: ''; position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 1.5px; background: var(--accent);
  border-radius: 1px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s cubic-bezier(.4,0,.2,1);
}
.nav-link:hover {
  color: #fff; background: rgba(255,255,255,.06);
}
.nav-link:hover::after { transform: scaleX(1); }
.nav-link--active {
  color: #fff; font-weight: 600;
}
.nav-link--active::after { transform: scaleX(1); }

/* Header Actions */
.header-actions {
  display: flex; align-items: center; gap: 16px;
  margin-left: auto; flex-shrink: 0;
}
.header-phone {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.55); text-decoration: none;
  letter-spacing: .2px; transition: color .2s;
}
.header-phone:hover { color: rgba(255,255,255,.9); }
.header-phone svg { color: var(--accent); flex-shrink: 0; }

.header-cta-btn {
  padding: 9px 22px;
  background: var(--accent);
  color: #fff; font-size: 13.5px; font-weight: 700;
  border-radius: 8px; text-decoration: none;
  letter-spacing: .3px;
  transition: background .2s, transform .15s, box-shadow .2s;
  white-space: nowrap;
}
.header-cta-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(192,57,43,.35);
}
.header-cta-btn:active { transform: translateY(0); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column;
  gap: 5px; background: none; border: none;
  padding: 8px; cursor: pointer; margin-left: auto;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: rgba(255,255,255,.8); border-radius: 2px;
  transition: .3s cubic-bezier(.4,0,.2,1);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none; position: fixed;
  top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: rgba(14,14,16,.98);
  backdrop-filter: blur(20px); z-index: 999;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; flex-direction: column; }
.mobile-nav-inner { padding: 24px 24px 48px; }
.mobile-nav-link {
  display: block; padding: 14px 4px;
  font-size: 20px; font-weight: 600; color: rgba(255,255,255,.8);
  text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .2s, padding-left .2s;
  letter-spacing: .2px;
}
.mobile-nav-link:hover { color: #fff; padding-left: 8px; }
.mobile-nav-footer { margin-top: 32px; }
.mobile-phone-link {
  display: flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 500; color: rgba(255,255,255,.6);
  text-decoration: none;
}

/* ==================== SLIDER ==================== */
.hero-slider {
  position: relative; width: 100%;
  height: calc(100vh - var(--header-h));
  min-height: 560px;
  overflow: hidden; margin-top: var(--header-h);
  background: var(--primary);
}
.slider-track { display: flex; height: 100%; transition: transform .7s cubic-bezier(.77,0,.18,1); }
.slide {
  min-width: 100%; height: 100%; position: relative;
  display: flex; align-items: center;
  background: var(--primary);
}
.slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 8s ease;
}
.slide.active .slide-bg { transform: scale(1.05); }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.35) 60%, rgba(192,57,43,.15) 100%);
}
.slide-content {
  position: relative; z-index: 2; width: 100%;
  max-width: var(--container); margin: 0 auto;
  padding: 0 48px;
}
.slide-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
  opacity: 0; transform: translateY(20px); transition: .5s .1s;
}
.slide-eyebrow::before { content: ''; width: 32px; height: 2px; background: var(--accent); }
.slide.active .slide-eyebrow { opacity: 1; transform: none; }
.slide-title {
  font-family: var(--font-display); font-size: clamp(34px, 6vw, 70px);
  font-weight: 800; color: var(--white); line-height: 1.1; margin-bottom: 20px;
  opacity: 0; transform: translateY(30px); transition: .5s .25s;
}
.slide.active .slide-title { opacity: 1; transform: none; }
.slide-sub {
  font-size: clamp(15px, 2vw, 19px); color: rgba(255,255,255,.75);
  max-width: 540px; line-height: 1.7; margin-bottom: 36px;
  opacity: 0; transform: translateY(20px); transition: .5s .4s;
}
.slide.active .slide-sub { opacity: 1; transform: none; }
.slide-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px); transition: .5s .55s;
}
.slide.active .slide-btns { opacity: 1; transform: none; }
.slide-btn-primary {
  padding: 14px 30px; background: var(--accent); color: var(--white);
  border-radius: 8px; font-size: 15px; font-weight: 700;
  transition: var(--transition); display: flex; align-items: center; gap: 8px;
}
.slide-btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192,57,43,.4); }
.slide-btn-secondary {
  padding: 14px 30px; border: 2px solid rgba(255,255,255,.4); color: var(--white);
  border-radius: 8px; font-size: 15px; font-weight: 600;
  transition: var(--transition);
}
.slide-btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

/* Slider Controls */
.slider-prev, .slider-next {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); font-size: 20px;
}
.slider-prev { left: 24px; }
.slider-next { right: 24px; }
.slider-prev:hover, .slider-next:hover { background: var(--accent); border-color: var(--accent); }
.slider-dots {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.slider-dot {
  width: 8px; height: 8px; border-radius: 4px;
  background: rgba(255,255,255,.4); transition: var(--transition); cursor: pointer;
}
.slider-dot.active { background: var(--accent); width: 28px; }

/* Slider Counter */
.slider-counter {
  position: absolute; bottom: 32px; right: 32px; z-index: 10;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.5); letter-spacing: 2px;
}
.slider-counter span { color: var(--white); font-size: 18px; font-weight: 700; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.4); font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  animation: scrollBounce 2s infinite;
}
.scroll-indicator svg { animation: scrollDown 1.5s infinite; }
@keyframes scrollDown { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }
@keyframes scrollBounce { 0%,100%{opacity:.4} 50%{opacity:.8} }

/* ==================== STATS BAR ==================== */
.stats-bar {
  background: var(--accent); padding: 0;
}
.stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 28px 24px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.2);
  transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(0,0,0,.1); }
.stat-value { font-family: var(--font-display); font-size: 36px; font-weight: 800; color: var(--white); line-height: 1; }
.stat-label { font-size: 12px; color: rgba(255,255,255,.75); margin-top: 6px; font-weight: 500; letter-spacing: .5px; }

/* ==================== ABOUT ==================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img {
  width: 100%; border-radius: var(--radius-lg); object-fit: cover; height: 480px;
  box-shadow: var(--shadow-lg);
}
.about-img-placeholder {
  width: 100%; height: 480px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary) 0%, #2c3e50 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--accent); color: var(--white);
  width: 100px; height: 100px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(192,57,43,.4); text-align: center;
}
.about-badge .num { font-family: var(--font-display); font-size: 28px; font-weight: 800; line-height: 1; }
.about-badge .lbl { font-size: 10px; font-weight: 600; letter-spacing: 1px; opacity: .9; }
.about-list { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.about-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--text); }
.about-list li::before { content: '✦'; color: var(--accent); font-size: 10px; margin-top: 5px; flex-shrink: 0; }
.btn-main {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; background: var(--accent); color: var(--white);
  border-radius: 8px; font-size: 15px; font-weight: 700;
  transition: var(--transition); margin-top: 32px;
}
.btn-main:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192,57,43,.35); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 27px; border: 2px solid var(--accent); color: var(--accent);
  border-radius: 8px; font-size: 15px; font-weight: 600;
  transition: var(--transition); margin-top: 32px; margin-left: 12px;
}
.btn-outline:hover { background: var(--accent); color: var(--white); }

/* ==================== SERVICES ==================== */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card {
  padding: 36px 28px; background: var(--white);
  border-radius: var(--radius-lg); border: 1px solid var(--border);
  text-align: center; transition: var(--transition);
  cursor: default;
}
.service-card:hover {
  transform: translateY(-8px); box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: rgba(192,57,43,.1); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--accent); }
.service-icon svg { color: var(--accent); transition: var(--transition); }
.service-card:hover .service-icon svg { color: var(--white); }
.service-name { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--primary); }
.service-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.service-link { display: inline-flex; align-items: center; gap: 4px; margin-top: 16px; font-size: 13px; font-weight: 600; color: var(--accent); }

/* ==================== PRODUCTS ==================== */
.products-filter {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px;
}
.filter-btn {
  padding: 8px 20px; border-radius: 20px; border: 2px solid var(--border);
  background: none; font-size: 14px; font-weight: 600; color: var(--text-muted);
  cursor: pointer; transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active { border-color: var(--accent); color: var(--accent); background: rgba(192,57,43,.06); }

.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product-card {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); background: var(--white);
  transition: var(--transition); display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product-img {
  position: relative; overflow: hidden; height: 220px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
}
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.product-card:hover .product-img img { transform: scale(1.08); }
.product-img-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
}
.product-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 10px; background: var(--accent); color: var(--white);
  border-radius: 4px; font-size: 11px; font-weight: 700; letter-spacing: .5px;
}
.product-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.product-cat { font-size: 11px; font-weight: 700; color: var(--accent); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; }
.product-name { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.product-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; flex: 1; }
.product-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); }
.product-link { font-size: 14px; font-weight: 600; color: var(--accent); display: flex; align-items: center; gap: 4px; }
.product-cta { padding: 8px 16px; background: var(--accent); color: var(--white); border-radius: 6px; font-size: 13px; font-weight: 600; transition: var(--transition); }
.product-cta:hover { background: var(--accent-dark); }

/* ==================== WHY US ==================== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  padding: 32px; border-radius: var(--radius-lg);
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,.08); border-color: rgba(192,57,43,.3); }
.why-num { font-family: var(--font-display); font-size: 48px; font-weight: 800; color: var(--accent); opacity: .3; line-height: 1; margin-bottom: 12px; }
.why-title { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.why-desc { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.7; }

/* ==================== REFERENCES ==================== */
.refs-track { position: relative; overflow: hidden; padding: 20px 0; }
.refs-inner {
  display: flex; gap: 48px; align-items: center;
  animation: scrollRefs 25s linear infinite;
  width: max-content;
}
.refs-inner:hover { animation-play-state: paused; }
.ref-item {
  display: flex; align-items: center; gap: 14px;
  padding: 20px 36px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius);
  min-width: 180px; transition: var(--transition);
}
.ref-item:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.ref-logo { height: 36px; width: auto; object-fit: contain; filter: grayscale(1); transition: var(--transition); }
.ref-item:hover .ref-logo { filter: none; }
.ref-name { font-size: 14px; font-weight: 600; color: var(--text-muted); white-space: nowrap; }
@keyframes scrollRefs {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==================== QUOTE CTA ==================== */
.quote-section {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  padding: 80px 0; position: relative; overflow: hidden;
}
.quote-section::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.quote-section::after {
  content: ''; position: absolute; bottom: -30%; left: -5%;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(0,0,0,.1);
}
.quote-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; position: relative; z-index: 2;
}
.quote-text h2 { font-size: clamp(24px, 4vw, 38px); color: var(--white); margin-bottom: 10px; }
.quote-text p { font-size: 17px; color: rgba(255,255,255,.8); }
.btn-quote-white {
  padding: 16px 36px; background: var(--white); color: var(--accent);
  border-radius: 8px; font-size: 16px; font-weight: 800;
  transition: var(--transition); white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.btn-quote-white:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,.3); }

/* ==================== TEKLIF FORMU ==================== */
.quote-form-wrap {
  max-width: 800px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.quote-form-head {
  background: var(--primary); padding: 32px 40px; color: var(--white);
}
.quote-form-head h2 { font-size: 24px; margin-bottom: 6px; }
.quote-form-head p { color: rgba(255,255,255,.7); font-size: 14px; }
.quote-form-body { padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: 8px; font-size: 14px; color: var(--text);
  transition: var(--transition); outline: none; background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 0 3px rgba(192,57,43,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group.full { grid-column: 1 / -1; }
.form-submit { display: flex; align-items: center; gap: 16px; margin-top: 8px; }
.btn-submit {
  padding: 14px 36px; background: var(--accent); color: var(--white);
  border: none; border-radius: 8px; font-size: 15px; font-weight: 700;
  transition: var(--transition); display: flex; align-items: center; gap: 8px;
}
.btn-submit:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(192,57,43,.35); }
.form-note { font-size: 12px; color: var(--text-muted); }

/* ==================== CONTACT ==================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-card {
  display: flex; gap: 16px; padding: 20px;
  border-radius: var(--radius); border: 1px solid var(--border);
  transition: var(--transition);
}
.contact-card:hover { border-color: var(--accent); background: rgba(192,57,43,.02); }
.contact-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(192,57,43,.1); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { color: var(--accent); }
.contact-label { font-size: 12px; font-weight: 700; color: var(--text-muted); letter-spacing: .5px; text-transform: uppercase; margin-bottom: 4px; }
.contact-val { font-size: 15px; font-weight: 600; color: var(--text); }
.contact-val a:hover { color: var(--accent); }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; height: 300px; border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ==================== ABOUT PAGE ==================== */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #2c3e50 100%);
  padding: 80px 0 60px; margin-top: var(--header-h); color: var(--white);
}
.page-hero-inner { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.page-hero-inner a { color: rgba(255,255,255,.6); font-size: 14px; }
.page-hero-inner a:hover { color: var(--white); }
.page-hero-inner span { color: rgba(255,255,255,.3); }
.page-hero h1 { font-size: clamp(28px, 5vw, 48px); font-weight: 800; }
.page-hero p { color: rgba(255,255,255,.7); margin-top: 12px; font-size: 17px; }

/* ==================== PRODUCT DETAIL ==================== */
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.product-gallery-main { border-radius: var(--radius-lg); overflow: hidden; }
.product-gallery-main img { width: 100%; height: 420px; object-fit: cover; }
.product-detail-title { font-size: 32px; font-weight: 800; margin-bottom: 12px; }
.product-detail-cat { font-size: 12px; font-weight: 700; color: var(--accent); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.product-detail-desc { font-size: 16px; color: var(--text-muted); line-height: 1.8; }
.product-specs { margin-top: 28px; }
.specs-title { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; }
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); font-size: 14px; }
.specs-table td:first-child { font-weight: 600; color: var(--text-muted); width: 45%; }

/* ==================== PAGE CONTENT ==================== */
.page-content { max-width: 860px; }
.page-content h2 { font-size: 26px; font-weight: 700; margin-bottom: 16px; margin-top: 32px; color: var(--primary); }
.page-content h3 { font-size: 20px; font-weight: 600; margin-bottom: 12px; margin-top: 24px; color: var(--primary); }
.page-content p { font-size: 15px; line-height: 1.8; color: var(--text-muted); margin-bottom: 14px; }
.page-content ul, .page-content ol { margin: 14px 0 14px 24px; }
.page-content li { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 6px; }
.page-content strong { color: var(--text); }

/* ==================== COOKIE BAR ==================== */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(20,20,20,.97); backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 24px;
  display: none; /* shown by JS */
}
.cookie-bar.show { display: block; }
.cookie-inner {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.cookie-text { font-size: 14px; color: rgba(255,255,255,.75); flex: 1; }
.cookie-text a { color: var(--accent); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
  padding: 10px 22px; background: var(--accent); color: var(--white);
  border: none; border-radius: 6px; font-size: 14px; font-weight: 600; cursor: pointer;
}
.cookie-reject {
  padding: 10px 22px; background: transparent; color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.2); border-radius: 6px; font-size: 14px; cursor: pointer;
}

/* ==================== FOOTER ==================== */
.site-footer { background: var(--primary); color: var(--white); }
.footer-top { padding: 72px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-brand .logo-text .name { font-size: 18px; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.8; margin-top: 16px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.social-link {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); transition: var(--transition);
}
.social-link:hover { background: var(--accent); color: var(--white); }
.footer-title { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.6); transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-links a::before { content: '›'; color: var(--accent); }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.footer-contact-item svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.5; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,.35); }
.footer-codega { font-size: 13px; color: rgba(255,255,255,.25); }
.footer-codega a { color: rgba(255,255,255,.45); font-weight: 600; transition: var(--transition); }
.footer-codega a:hover { color: var(--accent); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,.35); transition: var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ==================== ALERTS ==================== */
.alert {
  padding: 14px 20px; border-radius: 8px; margin-bottom: 20px;
  font-size: 14px; font-weight: 500; display: flex; align-items: center; gap: 10px;
}
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.alert-info    { background: #dbeafe; color: #1e40af; border: 1px solid #93c5fd; }

/* ==================== BREADCRUMB ==================== */
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 13px; }
.breadcrumb a { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,.3); }

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

@media (max-width: 1200px) {
  .slide-title { font-size: clamp(32px, 4vw, 52px); }
}
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 36px; }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
  .about-grid    { gap: 40px; }
  .stats-inner   { grid-template-columns: repeat(2, 1fr); }
  .stat-item     { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); }
  .slide-title   { font-size: 44px; }
  .slide-content { padding: 0 32px; }
}
@media (max-width: 768px) {
  .logo-wrap img, .site-logo-img { height: 44px !important; width: 54px !important; max-width: 54px; object-fit: cover; object-position: left center; }
  :root { --header-h: 64px; }
  .main-nav, .header-actions { display: none; }
  .hamburger { display: flex; }
  .hero-slider { height: calc(100svh - var(--header-h)); min-height: 480px; }
  .slide { padding: 0; }
  .slide-content { padding: 0 24px; }
  .slide-eyebrow { font-size: 10px; letter-spacing: 2px; }
  .slide-title { font-size: 28px; line-height: 1.2; }
  .slide-sub { font-size: 14px; }
  .slide-btns { flex-direction: column; gap: 10px; }
  .slide-btn-primary, .slide-btn-secondary { text-align: center; justify-content: center; padding: 13px 24px; }
  .slider-prev, .slider-next { width: 36px; height: 36px; }
  .scroll-indicator { display: none; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item { padding: 20px; }
  .stat-value { font-size: 28px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-img-wrap { height: 260px; }
  .services-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 24px; }
  .quote-inner { flex-direction: column; gap: 20px; text-align: center; }
  .quote-inner h2 { font-size: 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .form-grid { grid-template-columns: 1fr !important; }
  .section { padding: 56px 0; }
  .section-title { font-size: 26px; }
  .section-header { flex-direction: column !important; align-items: flex-start !important; }
  .legal-wrap { padding: 0 16px 48px; }
  .legal-header { padding: 28px 20px; }
  .legal-header h1 { font-size: 22px; }
  .legal-section { flex-direction: column; gap: 12px; padding: 20px; }
  .iletisim-serit { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .logo-wrap img, .site-logo-img { height: 40px !important; width: 48px !important; max-width: 48px; object-fit: cover; object-position: left center; }
  .slide-title { font-size: 22px; }
  .stat-value { font-size: 24px; }
  .container { padding: 0 16px; }
  .section-title { font-size: 22px; }
  .service-img { height: 160px; }
}

.service-img + .service-body .service-icon { display:none; }
