/* ============================================================
   EVA ISI – Global Stylesheet
   ============================================================ */

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

:root {
  --gold: #b89a2c;
  --gold-dark: #967e22;
  --navy: #1a2d4a;
  --navy-dark: #0f1e30;
  --white: #ffffff;
  --gray: #f4f5f7;
  --gray2: #e2e5e9;
  --text: #2a2a2a;
  --text-light: #6b7280;
  --radius: 6px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; color: var(--text); background: #fff; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* ── TOPBAR ── */
.topbar { background: #fff; border-bottom: 1px solid var(--gray2); }
.topbar .inner {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  min-height: 44px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}
.topbar-badge {
  background: var(--gold);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  margin-left: -28px;
}
.topbar-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.topbar-info span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--text-light);
}
.topbar-info a { color: var(--text-light); }
.topbar-info a:hover { color: var(--gold); }
.topbar-social { display: flex; align-items: center; gap: 12px; }
.topbar-social a { color: var(--text-light); font-size: 14px; transition: color .2s; }
.topbar-social a:hover { color: var(--gold); }

/* ── NAVBAR ── */
.navbar {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar .inner {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: stretch;
  min-height: 78px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}
.logo { display: flex; align-items: center; }
.logo img { height: 54px; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  padding: 10px 14px;
  letter-spacing: .6px;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-links .dropdown { position: relative; }
.nav-links .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
  padding: 8px 0;
  min-width: 180px;
  z-index: 200;
}
.nav-links .dropdown:hover .dropdown-menu { display: block; }
.nav-links .dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
}
.nav-links .dropdown-menu a:hover { background: #faf8f0; color: var(--gold); }
.nav-links .dropdown-menu a.current { color: var(--gold); }

.nav-right { display: flex; align-items: center; gap: 18px; }
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-light);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

/* Navbar phone block (anasayfa versiyonu) */
.nav-phone-block {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--navy);
  padding: 0 24px;
  align-self: stretch;
}
.phone-avatar {
  width: 44px; height: 44px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  background: rgba(255,255,255,.08);
}
.nav-phone-block .num { color: #fff; font-size: 17px; font-weight: 800; white-space: nowrap; }
.btn-teklif-outline {
  display: flex;
  align-items: center;
  align-self: stretch;
  padding: 0 28px;
  border: 2.5px solid var(--navy);
  border-left: none;
  background: #fff;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .5px;
  white-space: nowrap;
  cursor: pointer;
  transition: all .2s;
}
.btn-teklif-outline:hover { background: var(--navy); color: #fff; }

/* Navbar teklif gold (iç sayfalar) */
.btn-teklif-gold {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  background: var(--gold);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  border-radius: 100px;
  letter-spacing: .4px;
  transition: background .2s;
  white-space: nowrap;
}
.btn-teklif-gold:hover { background: var(--gold-dark); }

/* ── GENEL BUTONLAR ── */
.btn-navy {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 14px;
  transition: background .2s;
}
.btn-navy:hover { background: #243d60; }

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 14px;
  transition: background .2s;
}
.btn-gold:hover { background: var(--gold-dark); }

/* ── ORTAK TIPOGRAFI ── */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--gold); }
.eyebrow.center { justify-content: center; }
.eyebrow.center::before { display: none; }
.eyebrow.center::after { content: ''; width: 28px; height: 2px; background: var(--gold); }
.eyebrow.icon-mode::before { display: none; }

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-title.white { color: #fff; }
.section-title.center { text-align: center; }

/* ── PAGE HERO (iç sayfalar) ── */
.page-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .25;
}
.page-hero-icons { position: absolute; inset: 0; pointer-events: none; }
.hero-icon-float {
  position: absolute;
  color: rgba(255,255,255,.12);
  font-size: 48px;
  line-height: 1;
}
.hi1 { top: 18%; left: 22%; }
.hi2 { top: 55%; left: 14%; }
.hi3 { top: 25%; right: 14%; }

.page-hero-content { position: relative; z-index: 2; text-align: center; }
.page-hero-content h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 800;
  color: #fff;
}
.breadcrumb-bar {
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  padding: 14px 36px;
  border-radius: 100px 100px 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.breadcrumb-bar a { color: rgba(255,255,255,.8); }
.breadcrumb-bar a:hover { color: #fff; }
.breadcrumb-bar .sep { opacity: .6; }

/* ── ANASAYFA: HERO SLIDER ── */
.hero { position: relative; min-height: 580px; overflow: hidden; }
.hero-slide { display: none; position: relative; min-height: 580px; }
.hero-slide.active { display: flex; align-items: center; }
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center right;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.92) 40%, rgba(255,255,255,.1) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 80px 0; max-width: 560px; }
.hero-content .hero-icon { font-size: 44px; display: block; margin-bottom: 10px; }
.hero-content h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 5.5vw, 66px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-content p { color: var(--text-light); font-size: 17px; margin-bottom: 34px; }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5; width: 42px; height: 42px;
  background: rgba(255,255,255,.85); border: none; border-radius: 50%;
  cursor: pointer; font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.hero-arrow:hover { background: var(--gold); color: #fff; }
.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }

/* ── CTA STRIP ── */
.cta-strip { background: var(--navy); }
.cta-strip .container { display: grid; grid-template-columns: 1fr 1fr; }
.cta-item {
  display: flex; align-items: center; gap: 16px;
  padding: 22px 32px; color: #fff;
  border-right: 1px solid rgba(255,255,255,.08);
  cursor: pointer; transition: background .2s;
}
.cta-item:last-child { border-right: none; }
.cta-item:hover { background: rgba(255,255,255,.05); }
.cta-icon {
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(184,154,44,.2);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.cta-item h4 { font-size: 15px; font-weight: 700; }
.cta-item p { font-size: 13px; color: rgba(255,255,255,.55); margin-top: 2px; }
.cta-arrow { margin-left: auto; color: var(--gold); font-size: 22px; }

/* ── ABOUT (anasayfa) ── */
.about { padding: 90px 0; }
.about .container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-imgs-home { position: relative; padding-bottom: 48px; }
.about-imgs-home .img1 { width: 80%; border-radius: 8px; box-shadow: 0 12px 40px rgba(0,0,0,.12); }
.about-imgs-home .img2 { position: absolute; width: 52%; border-radius: 8px; bottom: 0; right: 0; border: 5px solid #fff; box-shadow: 0 8px 32px rgba(0,0,0,.15); }
.about-badge {
  position: absolute; top: 20px; right: 20%;
  background: var(--gold); color: #fff;
  padding: 12px 18px; border-radius: 6px; text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  box-shadow: 0 4px 16px rgba(184,154,44,.4);
}
.about-badge .num { font-size: 40px; font-weight: 800; display: block; line-height: 1; }
.about-badge .lbl { font-size: 12px; font-weight: 600; }
.about-text p { color: var(--text-light); line-height: 1.85; font-size: 15px; margin-bottom: 22px; }

/* ── ABOUT (hakkımızda sayfası) ── */
.about-section { padding: 90px 0; }
.about-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-imgs-page { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-imgs-page img { width: 100%; border-radius: 8px; box-shadow: 0 8px 32px rgba(0,0,0,.1); }
.about-imgs-page img:first-child { margin-top: 32px; }

/* ── STATS ── */
.stats { background: var(--navy); }
.stats .container { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { padding: 48px 24px; text-align: center; border-right: 1px solid rgba(255,255,255,.07); }
.stat-item:last-child { border-right: none; }
.stat-item img { width: 44px; margin: 0 auto 14px; }
.stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 52px; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-label { color: rgba(255,255,255,.5); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.stat-sub { color: #fff; font-size: 14px; font-weight: 600; margin-top: 2px; }

/* ── SERVICES ── */
.services { padding: 90px 0; background: var(--gray); }
.section-head { text-align: center; margin-bottom: 52px; }
.services-main { display: grid; grid-template-columns: 260px 1fr; gap: 20px; }
.services-list { display: flex; flex-direction: column; gap: 4px; }
.service-tab {
  padding: 15px 20px; border-radius: var(--radius);
  cursor: pointer; font-size: 14px; font-weight: 700;
  color: var(--text); background: #fff;
  border: 2px solid transparent; transition: all .2s;
  display: flex; align-items: center; gap: 10px;
}
.service-tab.active, .service-tab:hover { background: var(--navy); color: #fff; }
.service-detail { display: none; background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.service-detail.active { display: block; }
.service-detail img { width: 100%; height: 280px; object-fit: cover; }
.service-detail-body { padding: 28px 32px; }
.service-detail-body h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.service-detail-body p { color: var(--text-light); line-height: 1.8; font-size: 15px; margin-bottom: 20px; }
.detail-link { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-weight: 700; font-size: 14px; }
.detail-link:hover { text-decoration: underline; }

/* ── CONTACT FORM ── */
.contact-section {
  padding: 90px 0;
  background: url('https://evaisi.com/wp-content/uploads/2021/08/choose-bg.jpg') center/cover no-repeat;
  position: relative;
}
.contact-section::before { content: ''; position: absolute; inset: 0; background: rgba(15,30,48,.9); }
.contact-section .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.contact-left { color: #fff; }
.contact-left .eyebrow { color: var(--gold); }
.contact-left .eyebrow::before { background: var(--gold); }
.contact-left .section-title { color: #fff; }
.contact-left p { color: rgba(255,255,255,.7); line-height: 1.85; font-size: 15px; }
.exp-badge { display: flex; align-items: center; gap: 14px; margin-top: 32px; }
.exp-num { font-family: 'Barlow Condensed', sans-serif; font-size: 88px; font-weight: 800; color: var(--gold); line-height: 1; }
.exp-text { font-size: 15px; color: rgba(255,255,255,.8); max-width: 140px; line-height: 1.5; font-weight: 600; }
.form-card { background: #fff; border-radius: 10px; padding: 38px; }
.form-card h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 700; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--gray2); border-radius: var(--radius);
  padding: 11px 14px; font-size: 14px; font-family: inherit;
  color: var(--text); outline: none; transition: border .2s; background: #fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group.full { grid-column: 1 / -1; }
.form-submit {
  width: 100%; padding: 14px;
  background: var(--navy); color: #fff;
  font-weight: 800; font-size: 15px;
  border: none; border-radius: var(--radius);
  cursor: pointer; transition: background .2s; letter-spacing: .5px;
}
.form-submit:hover { background: #243d60; }

/* ── PORTFOLIO GRID ── */
.portfolio { padding: 90px 0; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 40px; }
.portfolio-card { position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.portfolio-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.portfolio-card:hover img { transform: scale(1.06); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15,30,48,.9) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px; opacity: 0; transition: opacity .3s;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay .tag { font-size: 11px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; }
.portfolio-overlay h4 { color: #fff; font-size: 16px; font-weight: 700; margin-top: 4px; }

/* ── WHY US ── */
.why-us {
  padding: 90px 0;
  background: url('https://evaisi.com/wp-content/uploads/2021/08/choose-bg.jpg') center/cover no-repeat;
  position: relative;
}
.why-us::before { content: ''; position: absolute; inset: 0; background: rgba(15,30,48,.87); }
.why-us .container { position: relative; z-index: 1; }
.features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 48px; }
.feature-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px; padding: 32px 22px; text-align: center; transition: all .2s;
}
.feature-card:hover { background: rgba(184,154,44,.12); transform: translateY(-4px); border-color: var(--gold); }
.feature-icon { font-size: 36px; margin-bottom: 14px; }
.feature-card h4 { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { color: rgba(255,255,255,.5); font-size: 13px; line-height: 1.7; }

/* ── TECH SECTION (hakkımızda) ── */
.tech-section {
  padding: 80px 0;
  background: url('https://evaisi.com/wp-content/uploads/2021/08/choose-bg.jpg') center/cover no-repeat;
  position: relative;
}
.tech-section::before { content: ''; position: absolute; inset: 0; background: rgba(15,30,48,.88); }
.tech-section .container { position: relative; z-index: 1; }
.tech-head { text-align: center; margin-bottom: 52px; }
.tech-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.tech-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; padding: 36px 24px; text-align: center; transition: all .25s; cursor: pointer;
}
.tech-card:hover { background: rgba(184,154,44,.15); border-color: var(--gold); transform: translateY(-5px); }
.tech-card .tc-icon { font-size: 42px; margin-bottom: 16px; }
.tech-card h4 { color: #fff; font-size: 16px; font-weight: 700; }

/* ── TESTIMONIALS ── */
.testimonials { padding: 90px 0; background: var(--gray); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 48px; }
.testimonial-card { background: #fff; border-radius: 8px; padding: 32px; box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.quote-mark { font-family: Georgia, serif; font-size: 64px; color: var(--gold); line-height: .7; margin-bottom: 14px; opacity: .3; }
.testimonial-card p { color: var(--text-light); line-height: 1.8; font-size: 15px; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-author h5 { font-weight: 700; color: var(--navy); }
.stars { color: var(--gold); font-size: 13px; margin-top: 2px; }

/* ── BRANDS ── */
.brands { padding: 48px 0; background: #fff; border-top: 1px solid var(--gray2); border-bottom: 1px solid var(--gray2); }
.brands-row { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 24px; }
.brands-row img { height: 48px; object-fit: contain; filter: grayscale(1) opacity(.4); transition: filter .2s; }
.brands-row img:hover { filter: none; }

/* ── FOOTER ── */
.footer { background: var(--navy-dark); color: rgba(255,255,255,.6); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1.2fr 1.5fr 1.5fr; gap: 40px; margin-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo img { height: 44px; }
.footer-about p { font-size: 14px; line-height: 1.85; }
.footer h4 { color: #fff; font-size: 13px; font-weight: 800; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .5px; }
.footer h4::after { content: ''; display: block; width: 28px; height: 2px; background: var(--gold); margin-top: 8px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.55); display: flex; align-items: center; gap: 8px; transition: color .2s; }
.footer-links a::before { content: '›'; color: var(--gold); font-size: 16px; }
.footer-links a:hover { color: var(--gold); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; }
.footer-contact-item .ico { color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.footer-contact-item a { color: rgba(255,255,255,.55); }
.footer-contact-item a:hover { color: var(--gold); }
.newsletter-form { display: flex; margin-top: 14px; }
.newsletter-form input { flex: 1; padding: 11px 14px; border: none; border-radius: var(--radius) 0 0 var(--radius); font-size: 14px; outline: none; }
.newsletter-form button { background: var(--gold); color: #fff; border: none; padding: 11px 16px; border-radius: 0 var(--radius) var(--radius) 0; cursor: pointer; font-weight: 700; font-size: 13px; transition: background .2s; }
.newsletter-form button:hover { background: var(--gold-dark); }
.footer-bottom { background: rgba(0,0,0,.3); padding: 18px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.35); }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 36px; height: 36px; background: rgba(255,255,255,.07); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.45); font-size: 12px; font-weight: 700; transition: all .2s; }
.social-links a:hover { background: var(--gold); color: #fff; }

/* ── FLOATING BUTTONS ── */
.float-btns { position: fixed; bottom: 24px; right: 24px; display: flex; flex-direction: column; gap: 12px; z-index: 999; }
.float-btn { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; box-shadow: 0 4px 16px rgba(0,0,0,.25); transition: transform .2s; }
.float-btn:hover { transform: scale(1.1); }
.float-btn.wa { background: #25d366; color: #fff; }
.float-btn.ph { background: var(--navy); color: #fff; border: 2px solid var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .about .container,
  .about-section .container,
  .contact-section .container { grid-template-columns: 1fr; }
  .about-imgs-home { display: none; }
  .stats .container,
  .features-grid,
  .tech-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid,
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-main { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-strip .container { grid-template-columns: 1fr; }
  .topbar-badge { display: none; }
}
@media (max-width: 580px) {
  .portfolio-grid,
  .testimonials-grid,
  .tech-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .nav-phone-block .num { display: none; }
}



/* ============================================================
   RESPONSIVE + HAMBURGER  —  tek temiz versiyon
   ============================================================ */

/* ── Hamburger butonu — masaüstünde gizli ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 300;
}
.hamburger span {
  display: block;
  width: 25px; height: 2.5px;
  background: var(--navy);
  border-radius: 3px;
  transition: all .3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── 1024px ── */
@media (max-width: 1024px) {
  .container { padding: 0 20px; }
  .topbar .inner { grid-template-columns: 160px 1fr auto; }
  .topbar-info { gap: 14px; }
  .topbar-info span { font-size: 12px; }
  .navbar .inner { padding: 0 20px; }
  .nav-links a { padding: 10px 10px; font-size: 12px; letter-spacing: .3px; }
  .nav-phone-block { padding: 0 16px; }
  .nav-phone-block .num { font-size: 14px; }
  .btn-teklif-outline { padding: 0 16px; font-size: 13px; }
  .hero-content h1 { font-size: 48px; }
  .stats .container { grid-template-columns: repeat(4,1fr); }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 24px; }
}

/* ── 768px — Tablet / Hamburger devreye girer ── */
@media (max-width: 768px) {

  /* Topbar */
  .topbar .inner { grid-template-columns: 1fr; min-height: auto; }
  .topbar-badge { margin-left: 0; padding: 8px 20px; }
  .topbar-info { padding: 6px 20px; flex-wrap: wrap; gap: 8px; justify-content: flex-start; }
  .topbar-info span:nth-child(2) { display: none; }
  .topbar-social { display: none; }

  /* Navbar */
  .navbar .inner {
    grid-template-columns: 1fr auto auto;
    min-height: 64px;
    padding: 0 16px;
    align-items: center;
  }

  /* Hamburger göster */
  .hamburger { display: flex; }

  /* Nav linkleri gizle — JS ile .open gelince göster */
  .nav-links {
    display: none !important;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0,0,0,.15);
    z-index: 999;
    flex-direction: column;
    padding: 8px 0 20px;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
  .nav-links.open {
    display: flex !important;
  }
  .nav-links > li > a {
    display: block;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    border-bottom: 1px solid var(--gray2);
    border-radius: 0;
    letter-spacing: .3px;
  }
  .nav-links > li > a:hover { color: var(--gold); background: #faf8f0; }
  .nav-links > li:last-child > a { border-bottom: none; }

  /* Dropdown — hover kapalı, sadece .dropdown-open ile açılır */
  .nav-links .dropdown-menu {
    display: none !important;
    position: static;
    box-shadow: none;
    border-top: none;
    border-radius: 0;
    border-left: 3px solid var(--gold);
    margin: 0 0 0 24px;
    padding: 4px 0;
    background: #faf8f0;
  }
  .nav-links .dropdown.dropdown-open .dropdown-menu {
    display: block !important;
  }
  .nav-links .dropdown-menu a {
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    border-bottom: none;
    display: block;
  }
  .nav-links .dropdown-menu a:hover { color: var(--gold); }

  /* Nav sağ */
  .nav-right { align-items: center; gap: 8px; }
  .nav-phone-block { background: none; padding: 0; gap: 8px; }
  .nav-phone-block .num { color: var(--navy); font-size: 13px; display: none; }
  .phone-avatar { width: 36px; height: 36px; background: transparent; font-size: 15px; }
  .btn-teklif-outline { display: none; }
  .btn-teklif-gold { padding: 8px 16px; font-size: 13px; }

  /* Hero */
  .hero, .hero-slide { min-height: 380px; }
  .hero-bg::after { background: linear-gradient(90deg, rgba(255,255,255,.95) 55%, rgba(255,255,255,.2) 100%); }
  .hero-content { padding: 50px 0; max-width: 100%; }
  .hero-content h1 { font-size: 34px; }
  .hero-content .hero-icon { font-size: 32px; }
  .hero-content p { font-size: 14px; margin-bottom: 24px; }
  .hero-arrow { display: none; }

  /* Page hero */
  .page-hero { min-height: 240px; }
  .page-hero-content h1 { font-size: 44px; }
  .hero-icon-float { display: none; }
  .breadcrumb-bar { font-size: 12px; padding: 10px 20px; }

  /* CTA strip */
  .cta-strip .container { grid-template-columns: 1fr; }
  .cta-item { padding: 14px 20px; }

  /* About */
  .about { padding: 56px 0; }
  .about .container { grid-template-columns: 1fr; gap: 28px; }
  .about-imgs-home { display: none; }

  /* Hakkımızda about */
  .about-section { padding: 56px 0; }
  .about-section .container { grid-template-columns: 1fr; gap: 28px; }
  .about-imgs-page { grid-template-columns: 1fr 1fr; gap: 12px; }
  .about-imgs-page img:first-child { margin-top: 0; }

  /* Stats */
  .stats .container { grid-template-columns: repeat(2,1fr); }
  .stat-item { padding: 28px 16px; border-bottom: 1px solid rgba(255,255,255,.07); }
  .stat-num { font-size: 40px; }

  /* Services */
  .services { padding: 56px 0; }
  .services-main { grid-template-columns: 1fr; gap: 16px; }
  .services-list { flex-direction: row; flex-wrap: wrap; gap: 6px; }
  .service-tab { padding: 9px 14px; font-size: 12px; flex: 1 1 auto; text-align: center; justify-content: center; }
  .service-detail img { height: 200px; }
  .service-detail-body { padding: 18px; }

  /* Contact anasayfa */
  .contact-section { padding: 56px 0; }
  .contact-section .container { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .exp-num { font-size: 60px; }

  /* Portfolio */
  .portfolio { padding: 56px 0; }
  .portfolio-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }

  /* Why us */
  .why-us { padding: 56px 0; }
  .features-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .feature-card { padding: 22px 16px; }

  /* Testimonials */
  .testimonials { padding: 56px 0; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 14px; }

  /* Brands */
  .brands-row img { height: 32px; }

  /* Footer */
  .footer { padding: 40px 0 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 28px; }
  .footer-bottom .container { flex-direction: column; gap: 10px; }

  /* Tech section */
  .tech-section { padding: 52px 0; }
  .tech-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }

  /* Hizmet detay */
  .hizmet-detay-section { padding: 52px 0 60px; }
  .hizmet-detay-section .container { grid-template-columns: 1fr; gap: 28px; }
  .hizmet-boxes { grid-template-columns: 1fr; }
  .hizmet-sidebar { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* Hizmetler grid */
  .hizmet-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .why-strip .container { grid-template-columns: repeat(2,1fr); }
  .why-strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); padding: 20px; }
  .other-services-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* Referanslar */
  .brands-full-grid { grid-template-columns: repeat(3,1fr); }
  .ref-stats .container { grid-template-columns: repeat(2,1fr); }
  .ref-testimonials-grid { grid-template-columns: 1fr; gap: 14px; }

  /* İletişim */
  .contact-top { grid-template-columns: 1fr; }
  .contact-visual { min-height: 260px; border-radius: 12px 12px 0 0; }
  .contact-form-panel { border-radius: 0 0 12px 12px; padding: 28px 20px; }
  .cf-grid { grid-template-columns: 1fr; }
  .quick-contact-bar { padding: 24px 0; }
  .quick-contact-bar .container { grid-template-columns: 1fr; gap: 16px; padding: 0 20px; }
  .qc-item { border-right: none; padding: 0; }

  /* SSS */
  .faq-section { padding: 56px 0; }
  .faq-section .container { grid-template-columns: 1fr; gap: 28px; }
  .faq-support-card { position: static; }
  .acc-header h4 { font-size: 14px; }

  /* Float butonlar */
  .float-btns { bottom: 16px; right: 16px; gap: 10px; }
  .float-btn { width: 46px; height: 46px; }
}

/* ── 480px — Mobil ── */
@media (max-width: 480px) {

  /* Hero */
  .hero, .hero-slide { min-height: 300px; }
  .hero-content h1 { font-size: 26px; }
  .hero-content p { font-size: 13px; }

  /* Page hero */
  .page-hero { min-height: 200px; }
  .page-hero-content h1 { font-size: 32px; }

  /* Section title */
  .section-title { font-size: 24px; }

  /* Stats */
  .stats .container { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 32px; }
  .stat-item { padding: 20px 10px; }

  /* Services tabs */
  .service-tab { font-size: 11px; padding: 8px 10px; }

  /* Portfolio */
  .portfolio-grid { grid-template-columns: 1fr; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }

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

  /* Hizmetler */
  .hizmet-grid { grid-template-columns: 1fr; }
  .why-strip .container { grid-template-columns: 1fr; }
  .other-services-grid { grid-template-columns: 1fr; }
  .hizmet-sidebar { grid-template-columns: 1fr; }
  .filter-bar { gap: 6px; }
  .filter-btn { padding: 8px 14px; font-size: 12px; }

  /* Tech */
  .tech-grid { grid-template-columns: 1fr 1fr; }

  /* Referanslar */
  .brands-full-grid { grid-template-columns: repeat(2,1fr); }

  /* İletişim */
  .contact-visual-body { padding: 24px 18px; }
  .contact-visual-body h2 { font-size: 24px; }
  .contact-form-panel { padding: 20px 14px; }
  .contact-form-panel h2 { font-size: 24px; }

  /* Exp badge */
  .exp-num { font-size: 52px; }

  /* About imgs */
  .about-imgs-page { grid-template-columns: 1fr; }
}

/* ── Slider animasyonu ── */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}
.hero-slide.active .hero-bg { animation: kenBurns 6s ease-out forwards; }
.hero-slide.active .hero-icon { animation: fadeInUp .5s ease both; animation-delay: .1s; }
.hero-slide.active h1 { animation: slideInLeft .6s ease both; animation-delay: .25s; }
.hero-slide.active p { animation: fadeInUp .6s ease both; animation-delay: .45s; }
.hero-slide.active .btn-navy { animation: fadeInUp .6s ease both; animation-delay: .6s; }

/* ── REFERANSLAR sayfası responsive düzeltme ── */
@media (max-width: 768px) {

  /* Topbar inner — referanslar'da farklı yapı */
  .topbar .inner {
    display: flex;
    flex-wrap: wrap;
    padding: 6px 16px;
    gap: 6px;
  }
  .topbar-badge { width: 100%; padding: 6px 0; margin: 0; }
  .topbar-info { gap: 10px; }
  .topbar-social { margin-left: auto; }

  /* Navbar inner — hamburger sağda görünsün */
  .navbar .inner {
    display: flex !important;
    align-items: center;
    padding: 0 16px;
    min-height: 64px;
    gap: 0;
  }
  .navbar .inner .logo { flex: 1; }
  .navbar .inner .nav-links { order: 99; }
  .navbar .inner .hamburger { order: 2; margin-left: 12px; }
  .navbar .inner .nav-right { order: 1; }

  /* Nav-right içindeki lang-btn gizle */
  .lang-btn { display: none; }
  .btn-teklif-gold { padding: 8px 14px; font-size: 12px; border-radius: 100px; }

  /* Referanslar brands */
  .brands-section { padding: 48px 0 36px; }
  .brands-full-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .brands-full-grid .brand-cell { padding: 28px 16px; }
  .brands-full-grid .brand-cell:nth-child(2n) { border-right: none !important; }
  .brands-full-grid .brand-cell:nth-child(5n) { border-right: 1px solid var(--gray2) !important; }
  .brand-cell img { max-height: 36px; max-width: 100px; }

  /* Stats */
  .ref-stats .container { grid-template-columns: repeat(2, 1fr) !important; }

  /* Testimonials */
  .ref-testimonials { padding: 48px 0; }
  .ref-testimonials-grid { grid-template-columns: 1fr !important; gap: 14px; }
}

@media (max-width: 480px) {
  .brands-full-grid .brand-cell { padding: 20px 12px; }
  .brand-cell img { max-height: 28px; max-width: 80px; }
  .ref-stats .container { grid-template-columns: 1fr 1fr !important; }
}

/* ── Hero overlay — daha az beyaz ── */
.hero-bg::after {
  background: linear-gradient(90deg, rgba(255,255,255,.55) 0%, rgba(255,255,255,.3) 50%, rgba(255,255,255,.05) 100%) !important;
}

.hero-content h1 { text-shadow: 0 2px 12px rgba(0,0,0,.15); }
.hero-content p { text-shadow: 0 1px 6px rgba(0,0,0,.1); }

/* ── Font Awesome İkon Stilleri ── */

/* Stat FA ikonları */
.stat-fa-icon {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 14px;
  opacity: .85;
}

/* Feature card ikonları */
.feature-icon i { font-size: 32px; color: var(--gold); }

/* Tech card ikonları */
.tc-icon i { font-size: 36px; color: var(--gold); }

/* Why strip ikonları */
.ws-icon i { font-size: 28px; color: var(--gold); }

/* Hero icon */
.hero-icon i { font-size: 40px; color: var(--gold); }

/* CTA strip */
.cta-icon i { font-size: 20px; color: var(--gold); }
.cta-arrow i { font-size: 16px; }

/* Topbar */
.topbar-info span i { color: var(--gold); font-size: 13px; }
.topbar-social a i { font-size: 14px; }

/* Footer contact */
.ico i { font-size: 14px; }

/* Footer social */
.social-links a i { font-size: 13px; }

/* Navbar phone avatar */
.phone-avatar i { font-size: 16px; color: var(--gold); }

/* Contact info */
.ci-icon i { font-size: 18px; color: var(--gold); }

/* Quick contact */
.qc-icon i { font-size: 20px; color: var(--gold); }

/* FAQ contact */
.faq-contact-icon i { font-size: 16px; color: var(--gold); }

/* Sidebar CTA icon */
.cta-icon-big i { font-size: 40px; color: var(--gold); display: block; margin-bottom: 12px; }

/* Eyebrow icon */
.eyebrow.icon-mode i { font-size: 16px; }

/* Service tabs */
.service-tab i { font-size: 14px; }

/* Lang btn */
.lang-btn i { font-size: 13px; }

/* ============================================================
   HİZMET DETAY SAYFASI
   ============================================================ */

.hizmet-detay-section {
  padding: 80px 0 100px;
  background: #fff;
}
.hizmet-detay-section .container {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.hizmet-main-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 36px rgba(0,0,0,.1);
  margin-bottom: 36px;
  display: block;
}
.hizmet-desc { margin-bottom: 36px; }
.hizmet-desc h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.15;
}
.hizmet-desc p {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.9;
}
.hizmet-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.hizmet-box {
  background: var(--gray);
  border-radius: 10px;
  padding: 28px 24px;
  border-left: 4px solid var(--gold);
}
.hizmet-box h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hizmet-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hizmet-box ul li {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.hizmet-box ul li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}

/* Sidebar */
.hizmet-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px;
}
.sidebar-services {
  background: var(--navy);
  border-radius: 10px;
  overflow: hidden;
}
.sidebar-services h4 {
  background: var(--gold);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 16px 22px;
  text-transform: uppercase;
  letter-spacing: .8px;
  margin: 0;
}
.sidebar-services h4::after { display: none; }
.sidebar-services ul { padding: 6px 0; list-style: none; }
.sidebar-services ul li a {
  display: flex;
  align-items: center;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  border-bottom: 1px solid rgba(255,255,255,.06);
  text-decoration: none;
  transition: all .2s;
  gap: 10px;
}
.sidebar-services ul li:last-child a { border-bottom: none; }
.sidebar-services ul li a i {
  color: rgba(255,255,255,.4);
  font-size: 13px;
  width: 16px;
  flex-shrink: 0;
  transition: color .2s;
}
.sidebar-services ul li a .arrow {
  margin-left: auto;
  font-size: 16px;
  color: rgba(255,255,255,.3);
  transition: all .2s;
}
.sidebar-services ul li a:hover,
.sidebar-services ul li a.active {
  color: #fff;
  background: rgba(255,255,255,.06);
  padding-left: 26px;
}
.sidebar-services ul li a:hover i,
.sidebar-services ul li a.active i { color: var(--gold); }
.sidebar-services ul li a:hover .arrow,
.sidebar-services ul li a.active .arrow { color: var(--gold); }
.sidebar-services ul li a.active {
  background: rgba(184,154,44,.15);
  border-left: 3px solid var(--gold);
}
.sidebar-cta {
  background: var(--navy);
  border-radius: 10px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sidebar-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: url('/img/evaIsiAdam.jpg') center/cover no-repeat;
  opacity: .1;
}
.sidebar-cta > * { position: relative; z-index: 1; }
.sidebar-cta .cta-icon-big {
  display: block;
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 14px;
}
.sidebar-cta h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.3;
}
.sidebar-cta h4::after { display: none; }
.sidebar-cta p {
  color: rgba(255,255,255,.65);
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.sidebar-cta a {
  display: block;
  background: var(--gold);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 13px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background .2s;
  margin-bottom: 12px;
}
.sidebar-cta a:hover { background: var(--gold-dark); }
.sidebar-cta .phone-line {
  font-size: 13px;
  color: rgba(255,255,255,.55);
}
.sidebar-cta .phone-line a {
  display: inline;
  background: none;
  padding: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 0;
}
.sidebar-cta .phone-line a:hover { background: none; text-decoration: underline; }

/* Diğer hizmetler */
.other-services {
  padding: 60px 0 80px;
  background: var(--gray);
}
.other-services .section-title { margin-bottom: 32px; }
.other-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.other-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.07);
  transition: transform .25s, box-shadow .25s;
}
.other-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,.12); }
.other-card img { width: 100%; height: 200px; object-fit: cover; display: block; transition: transform .4s; }
.other-card:hover img { transform: scale(1.04); }
.other-card-body {
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.other-card-body h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
}
.other-card-body h4 i { color: var(--gold); font-size: 14px; }
.other-card-body a {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  white-space: nowrap;
}
.other-card-body a:hover { text-decoration: underline; }

/* Hizmet detay responsive */
@media (max-width: 1000px) {
  .hizmet-detay-section .container { grid-template-columns: 1fr; gap: 36px; }
  .hizmet-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 768px) {
  .hizmet-main-img { height: 260px; }
  .hizmet-boxes { grid-template-columns: 1fr; }
  .hizmet-sidebar { grid-template-columns: 1fr; }
  .other-services-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .other-card img { height: 160px; }
}
@media (max-width: 480px) {
  .hizmet-main-img { height: 200px; }
  .other-services-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   MARKALAR / KULLANDIĞIMIZ ISI POMPASI MARKALARI
   ============================================================ */

.brand-showcase {
  margin: 40px 0;
}
.brand-showcase .eyebrow {
  margin-bottom: 10px;
}
.brand-showcase h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.brand-showcase > p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 640px;
}

.brand-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.brand-card {
  background: #fff;
  border: 1.5px solid var(--gray2);
  border-radius: 12px;
  overflow: hidden;
  transition: all .25s;
}
.brand-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 32px rgba(0,0,0,.1);
  transform: translateY(-5px);
}
.brand-card-img {
  position: relative;
  height: 170px;
  overflow: hidden;
  background: var(--gray);
}
.brand-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.brand-card:hover .brand-card-img img { transform: scale(1.07); }
.brand-card-logo {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(255,255,255,.95);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: .4px;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.brand-card-body {
  padding: 20px 22px 24px;
}
.brand-card-body h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand-card-body h4 i { color: var(--gold); font-size: 14px; }
.brand-card-body p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 14px;
}
.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.brand-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  background: rgba(184,154,44,.1);
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: .3px;
}

@media (max-width: 1000px) {
  .brand-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .brand-cards { grid-template-columns: 1fr; }
}