/* =============================================
   Metal Lazer v1 — ESC Medya
   Endüstriyel koyu tema, turuncu aksan
   ============================================= */

:root {
  --clr-bg:        #0e0e0e;
  --clr-surface:   #1a1a1a;
  --clr-surface2:  #222222;
  --clr-border:    #2e2e2e;
  --clr-accent:    #e84c1e;
  --clr-accent2:   #ff6b35;
  --clr-text:      #e0e0e0;
  --clr-muted:     #888888;
  --clr-white:     #ffffff;
  --ff-body:       'Inter', sans-serif;
  --ff-heading:    'Rajdhani', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--ff-heading);
  color: var(--clr-white);
  font-weight: 700;
  line-height: 1.2;
}

a { color: var(--clr-accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--clr-accent2); }

img { max-width: 100%; height: auto; }

/* ── Topbar ───────────────────────────────── */
.topbar {
  background: var(--clr-accent);
  color: var(--clr-white);
  font-size: 13px;
  padding: 8px 0;
}
.topbar span { color: var(--clr-white); }
.topbar a { color: var(--clr-white); font-size: 15px; }
.topbar a:hover { opacity: .8; }

/* ── Navbar ───────────────────────────────── */
.main-navbar {
  background: rgba(14,14,14,.97);
  border-bottom: 2px solid var(--clr-accent);
  backdrop-filter: blur(8px);
  padding: 12px 0;
  transition: all .3s;
}
.main-navbar .navbar-brand { display: flex; align-items: center; gap: 10px; }
.logo-img  { height: 48px; width: auto; object-fit: contain; }
.logo-text { font-family: var(--ff-heading); font-size: 22px; font-weight: 700; color: var(--clr-white); letter-spacing: 1px; }

.main-navbar .nav-link {
  color: var(--clr-text) !important;
  font-family: var(--ff-heading);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .5px;
  padding: 8px 14px !important;
  text-transform: uppercase;
  transition: color .2s;
}
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active { color: var(--clr-accent) !important; }

.navbar-toggler { border-color: var(--clr-accent); }
.navbar-toggler-icon { filter: invert(1); }

/* ── Buttons ──────────────────────────────── */
.btn-accent {
  background: var(--clr-accent);
  color: var(--clr-white) !important;
  border: none;
  border-radius: 4px;
  padding: 10px 24px;
  font-family: var(--ff-heading);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: background .2s, transform .1s;
}
.btn-accent:hover { background: var(--clr-accent2); transform: translateY(-1px); }

.btn-outline-accent {
  background: transparent;
  color: var(--clr-accent) !important;
  border: 2px solid var(--clr-accent);
  border-radius: 4px;
  padding: 10px 24px;
  font-family: var(--ff-heading);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all .2s;
}
.btn-outline-accent:hover { background: var(--clr-accent); color: var(--clr-white) !important; }

/* ── Section helpers ──────────────────────── */
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

.section-label {
  display: inline-block;
  background: var(--clr-accent);
  color: var(--clr-white);
  font-family: var(--ff-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 2px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 46px);
  margin-bottom: 16px;
}

.section-divider {
  width: 50px;
  height: 3px;
  background: var(--clr-accent);
  margin-bottom: 20px;
  border-radius: 2px;
}

/* ── Hero / Slider ────────────────────────── */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('{{THEME_ASSET_BASE}}/images/hero-bg.jpg') center/cover no-repeat;
  opacity: .18;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,76,30,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,76,30,.07) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; }
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--clr-accent);
  font-family: var(--ff-heading);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-label::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--clr-accent);
}
.hero-title {
  font-size: clamp(36px, 6vw, 76px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-title span { color: var(--clr-accent); }
.hero-desc { font-size: 18px; color: #aaa; max-width: 540px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--clr-border);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: var(--ff-heading);
  font-size: 42px;
  font-weight: 800;
  color: var(--clr-accent);
  line-height: 1;
}
.hero-stat-label { font-size: 13px; color: var(--clr-muted); text-transform: uppercase; letter-spacing: 1px; }

/* ── Features strip ───────────────────────── */
.features-strip { background: var(--clr-surface); border-top: 1px solid var(--clr-border); border-bottom: 1px solid var(--clr-border); }
.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 0;
}
.feature-icon {
  width: 54px;
  height: 54px;
  background: var(--clr-accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--clr-white);
  flex-shrink: 0;
}
.feature-text h6 { font-family: var(--ff-heading); font-size: 16px; margin-bottom: 2px; color: var(--clr-white); }
.feature-text p  { font-size: 13px; color: var(--clr-muted); margin: 0; }

/* ── About section ────────────────────────── */
.about-img-wrap { position: relative; }
.about-img-main {
  border-radius: 6px;
  object-fit: cover;
  width: 100%;
  height: 440px;
  filter: brightness(.85);
}
.about-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: var(--clr-accent);
  color: var(--clr-white);
  padding: 20px 24px;
  border-radius: 6px;
  text-align: center;
  font-family: var(--ff-heading);
}
.about-badge .num { font-size: 42px; font-weight: 800; line-height: 1; }
.about-badge .lbl { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }

.about-list { list-style: none; padding: 0; margin: 0; }
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
}
.about-list li i { color: var(--clr-accent); margin-top: 3px; }

/* ── Services cards ───────────────────────── */
.service-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
  height: 100%;
}
.service-card:hover { border-color: var(--clr-accent); transform: translateY(-4px); }
.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.service-card-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--clr-accent);
}
.service-card-body { padding: 24px; }
.service-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(232,76,30,.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--clr-accent);
  margin-bottom: 16px;
}
.service-card-body h4 { font-size: 20px; margin-bottom: 10px; }
.service-card-body p  { font-size: 14px; color: var(--clr-muted); margin-bottom: 18px; }
.service-card-link {
  color: var(--clr-accent);
  font-family: var(--ff-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card-link:hover { gap: 10px; }

/* ── Capability numbers ───────────────────── */
.numbers-section { background: var(--clr-accent); }
.stat-block { text-align: center; padding: 20px; }
.stat-block .num {
  font-family: var(--ff-heading);
  font-size: 64px;
  font-weight: 800;
  color: var(--clr-white);
  line-height: 1;
}
.stat-block .unit { font-size: 32px; }
.stat-block .lbl { font-size: 14px; color: rgba(255,255,255,.8); text-transform: uppercase; letter-spacing: 1px; margin-top: 6px; }

/* ── Process steps ────────────────────────── */
.process-section { background: var(--clr-surface); }
.process-step {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  transition: border-color .3s;
}
.process-step:hover { border-color: var(--clr-accent); }
.process-num {
  font-family: var(--ff-heading);
  font-size: 48px;
  font-weight: 800;
  color: rgba(232,76,30,.2);
  line-height: 1;
  min-width: 60px;
  transition: color .3s;
}
.process-step:hover .process-num { color: var(--clr-accent); }
.process-step h5 { font-size: 18px; margin-bottom: 8px; }
.process-step p  { font-size: 14px; color: var(--clr-muted); margin: 0; }

/* ── Why choose us ────────────────────────── */
.why-card {
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  padding: 28px;
  text-align: center;
  transition: border-color .3s, transform .3s;
  height: 100%;
}
.why-card:hover { border-color: var(--clr-accent); transform: translateY(-4px); }
.why-card-icon {
  width: 70px;
  height: 70px;
  background: rgba(232,76,30,.1);
  border: 1px solid rgba(232,76,30,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--clr-accent);
  margin: 0 auto 20px;
}
.why-card h5 { font-size: 18px; margin-bottom: 10px; }
.why-card p  { font-size: 14px; color: var(--clr-muted); margin: 0; }

/* ── Gallery grid ─────────────────────────── */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(232,76,30,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 32px; color: #fff; }

/* ── CTA band ─────────────────────────────── */
.cta-section {
  background: linear-gradient(90deg, var(--clr-accent) 0%, #c03010 100%);
  padding: 60px 0;
}
.cta-section h2 { color: #fff; }
.cta-section p  { color: rgba(255,255,255,.85); }
.btn-white {
  background: #fff;
  color: var(--clr-accent) !important;
  border: none;
  border-radius: 4px;
  padding: 12px 32px;
  font-family: var(--ff-heading);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all .2s;
}
.btn-white:hover { background: #f0f0f0; transform: translateY(-1px); }

/* ── Page header (inner pages) ────────────── */
.page-header {
  background: linear-gradient(90deg, #0a0a0a 0%, #1a1a1a 100%);
  border-bottom: 2px solid var(--clr-accent);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,76,30,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,76,30,.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.page-header .breadcrumb { background: none; padding: 0; margin: 0; }
.page-header .breadcrumb-item { font-size: 14px; color: var(--clr-muted); }
.page-header .breadcrumb-item a { color: var(--clr-accent); }
.page-header .breadcrumb-item.active { color: var(--clr-text); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: var(--clr-muted); }
.page-header h1 { position: relative; z-index: 1; }

/* ── Contact form ─────────────────────────── */
.contact-form-wrap {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  padding: 40px;
}
.form-label { color: var(--clr-text); font-size: 14px; font-weight: 500; }
.form-control, .form-select {
  background: var(--clr-surface2);
  border: 1px solid var(--clr-border);
  border-radius: 4px;
  color: var(--clr-text);
  padding: 12px 16px;
  transition: border-color .2s;
}
.form-control:focus, .form-select:focus {
  background: var(--clr-surface2);
  border-color: var(--clr-accent);
  color: var(--clr-white);
  box-shadow: 0 0 0 3px rgba(232,76,30,.15);
}
.form-control::placeholder { color: #555; }
textarea.form-control { min-height: 140px; resize: vertical; }

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(232,76,30,.1);
  border: 1px solid rgba(232,76,30,.3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--clr-accent);
  flex-shrink: 0;
}
.contact-info-item h6 { font-size: 14px; color: var(--clr-muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: .5px; }
.contact-info-item p  { color: var(--clr-text); margin: 0; font-size: 15px; }

/* ── Blog / news cards ────────────────────── */
.blog-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
  height: 100%;
}
.blog-card:hover { border-color: var(--clr-accent); transform: translateY(-4px); }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.blog-card-body { padding: 20px; }
.blog-card-date { font-size: 12px; color: var(--clr-accent); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.blog-card-body h5 { font-size: 18px; margin-bottom: 10px; }
.blog-card-body p  { font-size: 14px; color: var(--clr-muted); }

/* ── Footer ───────────────────────────────── */
.footer { background: #080808; border-top: 2px solid var(--clr-accent); }
.footer-top { padding: 70px 0 50px; }
.footer-logo { max-height: 50px; }
.footer-title { font-family: var(--ff-heading); font-size: 22px; color: var(--clr-white); }
.footer-desc { font-size: 14px; color: var(--clr-muted); line-height: 1.7; }
.footer-heading { font-family: var(--ff-heading); font-size: 16px; color: var(--clr-white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid var(--clr-border); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--clr-muted); font-size: 14px; transition: color .2s, padding-left .2s; }
.footer-links a:hover { color: var(--clr-accent); padding-left: 6px; }
.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.footer-contact-list i { color: var(--clr-accent); margin-top: 3px; width: 16px; }
.footer-contact-list a, .footer-contact-list span { color: var(--clr-muted); font-size: 14px; }
.footer-contact-list a:hover { color: var(--clr-accent); }
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-muted) !important;
  font-size: 15px;
  transition: all .2s;
}
.social-btn:hover { background: var(--clr-accent); border-color: var(--clr-accent); color: #fff !important; }
.footer-bottom { background: #050505; padding: 18px 0; font-size: 13px; color: var(--clr-muted); border-top: 1px solid var(--clr-border); }
.footer-bottom a { color: var(--clr-accent); }

/* ── Scrollbar ────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: var(--clr-accent); border-radius: 3px; }

/* ── Responsive tweaks ────────────────────── */
@media (max-width: 991px) {
  .hero { min-height: 60vh; }
  .about-badge { left: 10px; }
  .hero-stats { gap: 24px; }
}
@media (max-width: 767px) {
  .section-pad { padding: 60px 0; }
  .stat-block .num { font-size: 48px; }
  .contact-form-wrap { padding: 24px; }
}
