/* ============================================================
   Edirneliler İnşaat — Design System v2
   ============================================================ */

/* ── Custom Properties ──────────────────────────────────── */
:root {
  --white:      #FFFFFF;
  --cream:      #F7F5F0;
  --cream-2:    #EDEAE3;
  --border:     #E5E5E5;
  --border-nav: #EBEBEB;
  --gold:       #C9A84C;
  --gold-dk:    #B08A35;
  --text:       #1C1C1C;
  --text-2:     #777777;
  --text-3:     #999999;
  --font:       'Inter', system-ui, sans-serif;
  --nav-h:      68px;
  --max-w:      1200px;
  --r:          2px;
  --gap:        96px;
  --t:          0.2s ease;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body {
  font-family: var(--font);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }

/* ── Container ──────────────────────────────────────────── */
.container {
  width: 92%;
  max-width: var(--max-w);
  margin: 0 auto;
}
.container-map {
  width: 88%;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--text);
  color: var(--white);
  padding: 12px 26px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  border: 1.5px solid var(--text);
  border-radius: var(--r);
  cursor: pointer;
  font-family: var(--font);
  transition: background var(--t), border-color var(--t);
}
.btn-primary:hover { background: #333; border-color: #333; color: var(--white); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  padding: 12px 26px;
  font-size: 14px;
  font-weight: 500;
  border: 1.5px solid var(--gold);
  border-radius: var(--r);
  cursor: pointer;
  font-family: var(--font);
  transition: background var(--t), color var(--t);
}
.btn-secondary:hover { background: var(--gold); color: var(--white); }

/* Legacy cta-button → maps to primary */
.cta-button,
a.cta-button,
input[type="submit"].cta-button {
  display: inline-block;
  background: var(--text);
  color: var(--white);
  padding: 11px 24px;
  font-size: 14px;
  font-weight: 500;
  border: 1.5px solid var(--text);
  border-radius: var(--r);
  cursor: pointer;
  font-family: var(--font);
  transition: background var(--t);
  text-decoration: none;
}
.cta-button:hover,
a.cta-button:hover { background: #333; border-color: #333; color: var(--white); }

/* Global button reset */
button {
  background: var(--text);
  color: var(--white);
  padding: 11px 24px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  border-radius: var(--r);
  cursor: pointer;
  font-family: var(--font);
  transition: background var(--t);
}
button:hover { background: #333; }

/* ── Section Title ───────────────────────────────────────── */
.section-title {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.3px;
  position: relative;
  padding-left: 16px;
  margin-bottom: 48px;
}
.section-title::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
}
.section-title::after { display: none; }

/* Small uppercase label variant */
.section-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.section-label::before {
  content: "";
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.highlight { color: var(--gold); font-weight: 500; }

/* ── Alert ───────────────────────────────────────────────── */
.alert { padding: 12px 16px; margin-bottom: 18px; font-size: 14px; border-radius: var(--r); }
.alert-success { background: #f0fdf4; border: 1px solid #86efac; color: #166534; }

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border-nav);
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 92%;
  max-width: var(--max-w);
  margin: 0 auto;
  height: var(--nav-h);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}
.nav-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: none;
}
.nav-logo span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text);
}
.nav-links {
  display: flex;
  list-style: none;
  margin: 0; padding: 0;
  align-items: center;
  gap: 2px;
}
.nav-links li { position: relative; }
.nav-links li a {
  display: block;
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 400;
  color: #555;
  transition: color var(--t);
}
.nav-links li a:hover { color: var(--text); }
.nav-links li a.active { color: var(--text); font-weight: 500; }

/* CTA nav button (İletişim) */
.nav-links li a.nav-cta {
  background: var(--text);
  color: var(--white);
  padding: 8px 18px;
  border-radius: var(--r);
  font-weight: 500;
  font-size: 13px;
  transition: background var(--t);
  margin-left: 6px;
}
.nav-links li a.nav-cta:hover { background: #333; color: var(--white); }
.nav-links li a.nav-cta.active { background: #333; color: var(--white); }

/* Arrow */
.nav-links li .arrow { font-size: 0.65em; margin-left: 3px; opacity: 0.45; }

/* Dropdown */
ul.dropdown-menu { list-style: none; padding: 0; margin: 0; }
ul.dropdown-menu li { list-style: none; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  min-width: 200px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
  z-index: 1001;
  flex-direction: column;
}
.dropdown-menu li a {
  padding: 11px 18px;
  font-size: 13px;
  color: #555;
  border-bottom: 1px solid var(--border);
  transition: background var(--t), color var(--t);
}
.dropdown-menu li:last-child a { border-bottom: none; }
.dropdown-menu li a:hover { color: var(--text); background: var(--cream); }
.dropdown.active .dropdown-menu { display: flex; }

/* Hamburger */
button.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
  padding: 6px;
  margin-left: auto;
  margin-right: 12px;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text);
  margin: 4px 0;
  transition: all var(--t);
}

/* Desktop / Mobile visibility */
.desktop-only { display: list-item; }
.mobile-only  { display: none; }

/* ============================================================
   HERO SECTION (index.php)
   ============================================================ */
.hero-section {
  position: relative;
  background: var(--cream);
  min-height: calc(100vh - var(--nav-h));
  margin-top: var(--nav-h);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Hero Collage */
.hero-collage {
  position: absolute;
  top: 0; right: 0;
  width: 48%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}
.hero-collage-inner {
  display: flex;
  gap: 8px;
  height: calc(100% + 80px);
  margin-top: -40px;
  padding-right: 0;
}
.hero-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.hero-col--left  { transform: translateY(-30px); }
.hero-col--right { transform: translateY(30px); }
.hero-col-img {
  position: relative;
  flex: 1;
  overflow: hidden;
  min-height: 160px;
}
.cell-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.cell-slide.active { opacity: 1; }
.hero-col-img::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.22);
  transition: opacity var(--t);
  pointer-events: none;
  z-index: 1;
}
.hero-col-img:hover::after { opacity: 0; }
.hero-collage-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--cream) 0%, rgba(247,245,240,0.8) 32%, rgba(247,245,240,0.2) 60%, transparent 80%);
  pointer-events: none;
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 92%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 72px 0 56px;
  gap: 40px;
}

.hero-left {
  flex: 0 0 54%;
  max-width: 54%;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
}

.hero-title {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
}
.hero-title strong {
  font-weight: 500;
  display: block;
}

.hero-desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 440px;
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* Stats block */
.hero-right {
  flex: 0 0 38%;
  max-width: 38%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  align-self: flex-end;
  padding-bottom: 4px;
}

.hero-stats {
  display: flex;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.stat-item {
  padding: 22px 28px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  display: block;
  font-size: 30px;
  font-weight: 300;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -1px;
}
.stat-plus {
  font-size: 18px;
  color: var(--gold);
  font-weight: 500;
}
.stat-label {
  display: block;
  font-size: 11px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ============================================================
   PROJECT GRID — card layout
   ============================================================ */
.projects-section {
  background: var(--white);
  padding: var(--gap) 0;
}
.projects-section + .projects-section {
  background: var(--cream);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media screen and (min-width: 769px) {
  .project-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
  }
}

.project-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: box-shadow var(--t), transform var(--t);
  cursor: pointer;
}
a.project-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.project-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.11);
  transform: translateY(-4px) scale(1.01);
}

.card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--cream);
}
.card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-card:hover .card-image img { transform: scale(1.04); }

.card-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: var(--r);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.card-body {
  padding: 18px 20px 22px;
}

.card-type {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.card-title {
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.card-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 16px;
  font-weight: 300;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.2px;
  transition: gap var(--t);
}
.card-link:hover { gap: 9px; }

/* ── Legacy project-item (detail listing pages) ─────────── */
.project-item {
  display: flex;
  align-items: center;
  position: relative;
  overflow: visible;
  margin-bottom: 60px;
}
.project-image1,
.project-image2 {
  flex: 0 0 65%;
  max-width: 65%;
  height: auto;
  object-fit: cover;
  transform: translateY(24px);
  opacity: 0;
  transition: transform 1.1s ease-out, opacity 1.1s ease-out;
}
.reveal { transform: translateY(0) !important; opacity: 1 !important; }

.project-content {
  flex: 0 0 42%;
  margin-left: -7%;
  background: var(--white);
  color: var(--text);
  padding: 32px 28px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  z-index: 2;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: box-shadow var(--t);
}
.project-content:hover { box-shadow: 0 8px 36px rgba(0,0,0,0.11); }
.project-content h6 {
  font-size: 10px; font-weight: 600;
  color: var(--text-3); text-transform: uppercase;
  letter-spacing: 2px; margin-bottom: 8px;
}
.project-content h3 {
  font-size: 22px; font-weight: 500;
  color: var(--text); margin-bottom: 12px; line-height: 1.25;
}
.project-content p {
  font-size: 14px; color: var(--text-2);
  line-height: 1.65; margin-bottom: 20px; font-weight: 300;
}
.project-content a.cta-button { display: block; width: 100%; text-align: center; }

/* ── Redirect button rows (listing pages) ─────────────────── */
.section-redirect {
  text-align: center;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--cream);
  padding: var(--gap) 0;
}
.testimonials-section h2 {
  font-size: 26px; font-weight: 500;
  margin-bottom: 48px; padding-left: 16px;
  position: relative;
}
.testimonials-section h2::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--gold);
}
.testimonials-container { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.testimonial-item {
  flex: 0 0 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  background: var(--white);
  padding: 30px 24px;
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  transition: transform var(--t);
}
.testimonial-item:hover { transform: translateY(-4px); }
.testimonial-quote p { font-size: 14px; font-style: italic; color: var(--text-2); margin-bottom: 18px; line-height: 1.65; font-weight: 300; }
.testimonial-author { font-size: 14px; font-weight: 500; color: var(--text); }

/* ============================================================
   EMEGE SAYGI SLOGAN
   ============================================================ */
.emege-saygi {
  background-color: #1C1C1C;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 32px,
      rgba(201,168,76,0.08) 32px,
      rgba(201,168,76,0.08) 32.5px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 32px,
      rgba(201,168,76,0.08) 32px,
      rgba(201,168,76,0.08) 32.5px
    );
  padding: 80px 0;
  overflow: hidden;
}
.emege-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 48px;
}
.emege-quote-mark {
  font-size: 180px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.25;
  font-family: Georgia, serif;
  flex-shrink: 0;
  margin-top: -40px;
  user-select: none;
}
.emege-text {
  flex: 1;
  text-align: center;
}
.emege-slogan {
  font-size: 48px;
  font-weight: 300;
  letter-spacing: 4px;
  color: var(--white);
  margin: 0 0 20px;
  text-transform: uppercase;
}
.emege-line {
  width: 60px;
  height: 1.5px;
  background: var(--gold);
  margin: 0 auto 20px;
}
.emege-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  font-style: italic;
  margin: 0;
  letter-spacing: 0.3px;
  line-height: 1.7;
}
.emege-stats {
  display: flex;
  flex-direction: column;
  gap: 28px;
  flex-shrink: 0;
  min-width: 120px;
}
.emege-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.emege-stat-num {
  font-size: 28px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 1px;
  line-height: 1;
}
.emege-stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
}

/* ============================================================
   SUPPLIERS
   ============================================================ */
.suppliers-section {
  background-color: #1C1C1C;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 28px,
      rgba(201,168,76,0.15) 28px,
      rgba(201,168,76,0.15) 28.5px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 28px,
      rgba(201,168,76,0.15) 28px,
      rgba(201,168,76,0.15) 28.5px
    );
  padding: 80px 0;
  text-align: center;
  position: relative;
  color: var(--white);
  overflow: hidden;
}
/* Sol üst köşe kutu */
.suppliers-section::before {
  content: '';
  position: absolute;
  top: -50px; left: -50px;
  width: 240px; height: 240px;
  border: 1px solid rgba(201,168,76,0.1);
  pointer-events: none;
  z-index: 0;
}
/* Sağ alt köşe kutu */
.suppliers-section::after {
  content: '';
  position: absolute;
  bottom: -50px; right: -50px;
  width: 300px; height: 300px;
  border: 1px solid rgba(201,168,76,0.1);
  pointer-events: none;
  z-index: 0;
}
.suppliers-section > .container { position: relative; z-index: 1; }
.suppliers-section h2 {
  font-size: 32px; font-weight: 300;
  color: var(--white); letter-spacing: -0.5px;
  margin-bottom: 0;
}
.suppliers-section h2::after {
  content: '';
  display: block;
  width: 48px; height: 1.5px;
  background: var(--gold);
  margin: 12px auto 20px;
}
.suppliers-section p { font-size: 15px; color: rgba(255,255,255,0.72); max-width: 600px; margin: 0 auto 44px; line-height: 1.7; font-weight: 300; }
.brand-logos { display: flex; justify-content: center; align-items: center; gap: 44px; flex-wrap: wrap; }
.brand-logo { width: 100px; }
.brand-logo img { width: 100%; height: auto; object-fit: contain; filter: brightness(0) invert(1) opacity(0.7); transition: filter var(--t); }
.brand-logo img:hover { filter: brightness(0) invert(1) opacity(1); }

/* ============================================================
   QUOTE / MISSION BAND
   ============================================================ */
.quote-section {
  background: var(--cream);
  padding: 72px 0;
  text-align: center;
}
.quote-section blockquote {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 300;
  color: var(--text);
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;
  letter-spacing: -0.3px;
}
.quote-section blockquote strong { font-weight: 500; color: var(--text); }

/* ============================================================
   CONTACT SECTION (index map)
   ============================================================ */
.contact-section {
  background: var(--white);
  padding: var(--gap) 0;
}
.contact-section h2.section-title { margin-bottom: 32px; }
.map-container { margin-bottom: 32px; }
.map-container iframe { width: 100%; height: 420px; border: 0; display: block; }
.contact-info { margin-top: 28px; }
.contact-box { background: var(--cream); border: 1px solid var(--border); border-left: 3px solid var(--gold); padding: 28px 24px; max-width: 620px; }
.contact-box h3 { font-size: 16px; font-weight: 500; margin-bottom: 14px; }
.contact-box p { font-size: 14px; color: var(--text-2); line-height: 1.65; margin-bottom: 8px; }
.contact-box a { color: var(--text); transition: color var(--t); }
.contact-box a:hover { color: var(--gold); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  background: var(--cream);
  padding: var(--gap) 0;
  margin-top: var(--nav-h);
}
.about-hero__inner { display: flex; align-items: flex-start; gap: 56px; }
.about-hero__text { flex: 1; }
.about-hero__text h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300; margin-bottom: 24px;
  letter-spacing: -0.5px; color: var(--text);
}
.about-hero__text p { font-size: 15px; color: var(--text-2); line-height: 1.75; margin-bottom: 16px; font-weight: 300; }
.about-hero__image { flex: 1; text-align: right; }
.about-hero__image img { max-width: 100%; height: auto; display: inline-block; }
.about-container { width: 88%; max-width: var(--max-w); margin: 0 auto; }
.about-text p { font-size: 15px; line-height: 1.75; margin-bottom: 18px; color: #444; font-weight: 300; }

.hero {
  position: relative; width: 100%; height: 52vh;
  background: url('edirneliler_images/Hakkimizda/Hero.jpg') center/cover no-repeat;
  margin-top: var(--nav-h);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.42);
  display: flex; justify-content: center; align-items: center;
}
.hero-overlay h1 {
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 300; color: var(--white);
  text-align: center; padding: 0 20px; letter-spacing: -0.5px;
}

.split-section {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px;
}
.split-section div {
  background: var(--cream); padding: 32px;
  border-left: 3px solid var(--gold);
}
.split-section h3 { font-size: 18px; font-weight: 500; margin-bottom: 10px; }
.split-section p { font-size: 14px; line-height: 1.65; color: var(--text-2); font-weight: 300; }

.values { display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between; margin-top: 40px; }
.value-card {
  flex: 1 1 calc(33% - 14px); background: var(--white); padding: 22px 18px;
  border: 1px solid var(--border); border-top: 2px solid var(--gold); text-align: center;
  transition: box-shadow var(--t);
}
.value-card:hover { box-shadow: 0 6px 22px rgba(0,0,0,0.06); }
.value-card h4 { font-size: 15px; font-weight: 500; margin-bottom: 8px; color: var(--gold); }
.value-card p { font-size: 13px; color: var(--text-2); line-height: 1.6; font-weight: 300; }

.team { margin-top: 56px; }
.team-members { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.team-members .member { text-align: center; }
.team-members .member img {
  width: 170px; height: 170px; object-fit: cover;
  border-radius: 50%; border: 3px solid var(--gold); margin-bottom: 12px;
}
.member h5 { font-size: 15px; font-weight: 500; margin-top: 10px; }
.member p { font-size: 13px; color: var(--text-2); font-weight: 300; }

/* ============================================================
   BLOG
   ============================================================ */
.posts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.post-card {
  background: var(--white); border: 1px solid var(--border);
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow var(--t), transform var(--t);
}
.post-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.08); transform: translateY(-2px); }
.post-card img { width: 100%; height: 180px; object-fit: cover; }
.post-content {
  padding: 20px 20px 22px; flex: 1;
  display: flex; flex-direction: column;
  border-top: 2px solid var(--gold);
}
.post-content h3 { font-size: 17px; font-weight: 500; margin: 0 0 8px; color: var(--text); line-height: 1.35; }
.post-content .date { font-size: 11px; color: var(--text-3); margin-bottom: 10px; letter-spacing: 0.3px; }
.post-content p { font-size: 13px; color: var(--text-2); flex: 1; line-height: 1.65; font-weight: 300; }
.post-content a.read-more {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 16px; font-size: 13px; font-weight: 500; color: var(--gold);
  transition: gap var(--t);
}
.post-content a.read-more:hover { gap: 9px; }

.pagination { display: flex; justify-content: center; gap: 6px; margin: 56px 0; }
.pagination a {
  padding: 8px 14px; border: 1px solid var(--border);
  font-size: 13px; color: var(--text-2); border-radius: var(--r); transition: background var(--t);
}
.pagination a.active, .pagination a:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

.subscribe { background: var(--cream); padding: 80px 0; text-align: center; }
.subscribe p { font-size: 15px; margin-bottom: 20px; color: var(--text-2); }
.subscribe input[type="email"] {
  padding: 11px 14px; width: 270px; max-width: 80%;
  border: 1px solid var(--border); border-radius: var(--r);
  margin-right: 8px; font-family: var(--font); font-size: 14px;
}
.subscribe button { border-radius: var(--r); font-size: 14px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-map { background: var(--cream); padding: var(--gap) 0; }
.contact-info-map .grid-two { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-info-map .section-title { color: var(--text); }

.contact-details .contact-item { display: flex; align-items: flex-start; margin-bottom: 26px; }
.contact-details .icon { font-size: 20px; margin-right: 14px; color: var(--gold); line-height: 1; flex-shrink: 0; margin-top: 2px; }
.contact-details .label { font-size: 10px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-3); margin-bottom: 3px; font-weight: 500; }
.contact-details a, .contact-details address {
  font-size: 15px; color: var(--text); line-height: 1.5; font-style: normal;
}
.contact-details a:hover { color: var(--gold); }
.contact-map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; }

.call-us { background: var(--white); padding: 80px 0; text-align: center; }
.call-us__numbers { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 24px; }
.call-us__item {
  display: inline-flex; align-items: center;
  background: var(--cream); padding: 13px 20px;
  border: 1px solid var(--border); border-left: 3px solid var(--gold);
  transition: transform var(--t);
}
.call-us__item:hover { transform: translateY(-2px); }
.call-us__icon { font-size: 18px; margin-right: 10px; }
.call-us__text { font-size: 16px; font-weight: 500; }

.whatsapp-contact { background: var(--white); padding: 72px 0; text-align: center; border-top: 1px solid var(--border); }
.whatsapp-contact .section-title { justify-content: center; }
.whatsapp-contact p { margin-bottom: 24px; font-size: 15px; color: var(--text-2); }
.whatsapp-button {
  display: inline-flex; align-items: center;
  background: #25D366; color: var(--white);
  padding: 12px 24px; border-radius: 50px;
  font-weight: 500; font-size: 15px; transition: background var(--t);
}
.whatsapp-button .icon { font-size: 20px; margin-right: 10px; }
.whatsapp-button:hover { background: #1ebe5b; }

/* ── Forms ─────────────────────────────────────────────── */
label { display: block; margin-bottom: 5px; font-weight: 500; font-size: 13px; color: var(--text); }
input, textarea, select {
  width: 100%; padding: 11px 13px; margin-bottom: 16px;
  border: 1px solid var(--border); border-radius: var(--r);
  font-size: 14px; font-family: var(--font); font-weight: 300;
  outline: none; background: var(--white); color: var(--text);
  transition: border-color var(--t);
}
input:focus, textarea:focus { border-color: var(--gold); }

.yer-oner-container { width: 60%; max-width: 580px; margin: 0 auto; padding: 80px 0; }

/* ============================================================
   PROJECT DETAIL PAGES
   ============================================================ */
.project-hero {
  position: relative; width: 100%;
  height: calc(100vh - var(--nav-h));
  overflow: hidden; margin-top: var(--nav-h);
}
.project-hero img,
.project-hero video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; display: block; }
.project-hero:hover img { transform: scale(1.02); }
.project-hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to top,  rgba(0,0,0,0.60) 0%, rgba(0,0,0,0.20) 55%, transparent 100%),
    linear-gradient(to right, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.10) 55%, transparent 100%);
  z-index: 1;
}
.project-hero-content {
  position: absolute; top: 50%; left: 8%;
  transform: translateY(-50%);
  color: var(--white); max-width: 600px; z-index: 2;
}
.project-hero-content h1 {
  font-size: clamp(36px, 5vw, 60px); font-weight: 500;
  margin-bottom: 18px; color: var(--white); letter-spacing: -0.5px; line-height: 1.1;
  text-shadow: 0 2px 16px rgba(0,0,0,0.55);
}
.project-hero-content p {
  font-size: 15px; line-height: 1.7; max-width: 550px;
  color: var(--white); background: none; padding: 0; display: block; font-weight: 300;
  text-shadow: 0 1px 6px rgba(0,0,0,0.45);
}
.hero-cta-group {
  display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap;
}
.hero-btn-gold {
  background: var(--gold); color: var(--white);
  border: none; padding: 12px 28px;
  font-size: 14px; font-weight: 500; letter-spacing: 0.03em;
  cursor: pointer; border-radius: var(--r);
  font-family: var(--font); transition: background var(--t);
}
.hero-btn-gold:hover { background: var(--gold-dk); }
.hero-btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.75);
  padding: 12px 28px;
  font-size: 14px; font-weight: 500; letter-spacing: 0.03em;
  cursor: pointer; border-radius: var(--r);
  font-family: var(--font); transition: background var(--t), color var(--t), border-color var(--t);
}
.hero-btn-outline:hover { background: var(--white); color: var(--text); border-color: var(--white); }

.project-hero-voque { width: 100%; text-align: center; margin-top: var(--nav-h); }
.project-hero-voque video { width: 100%; height: auto; display: block; }

.project-about { background: var(--white); padding: var(--gap) 0; }
.project-about .container { width: 88%; max-width: var(--max-w); }
.project-about h2 {
  font-size: 28px; font-weight: 500; margin-bottom: 22px; text-align: center;
}
.project-about p { font-size: 15px; line-height: 1.75; margin-bottom: 16px; color: #444; font-weight: 300; }

.tech-specs, ul.tech-specs {
  list-style: none; padding: 0; margin: 16px 0 0;
}
.tech-specs li, ul.tech-specs li {
  padding: 11px 0 11px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 14px; color: #444; position: relative; font-weight: 300;
}
.tech-specs li::before, ul.tech-specs li::before {
  content: ""; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px; background: var(--gold); border-radius: 50%;
}

/* Gallery */
.project-gallery { background: var(--cream); padding: var(--gap) 0; text-align: center; }
.project-gallery h2 { font-size: 28px; font-weight: 500; margin-bottom: 32px; }
.gallery-tabs { margin-bottom: 26px; }
.gallery-tabs .tab-button {
  padding: 8px 20px; margin: 0 3px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r); cursor: pointer;
  font-size: 13px; font-weight: 500; color: var(--text-2);
  font-family: var(--font); transition: all var(--t);
}
.gallery-tabs .tab-button.active,
.gallery-tabs .tab-button:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

.gallery-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; width: 92%; margin: 0 auto; }
.gallery-container img {
  width: calc(33.333% - 12px); height: 230px; object-fit: cover;
  cursor: pointer; transition: transform var(--t), box-shadow var(--t);
}
.gallery-container img:hover { transform: scale(1.02); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }

/* ── Gallery Viewer (featured + thumbnails) ─────────────────────────── */
.gallery-viewer { width: 100%; max-width: 940px; margin: 0 auto; }

.gallery-featured { width: 100%; margin-bottom: 10px; overflow: hidden; }
.gallery-featured-img {
  width: 100%; height: 500px; object-fit: cover;
  cursor: pointer; display: block;
  transition: opacity var(--t);
}
.gallery-featured-img:hover { opacity: 0.92; }

.gallery-thumb-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.gallery-thumb-nav {
  flex: 0 0 36px;
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: 18px;
  cursor: pointer;
  font-family: var(--font);
  user-select: none;
  transition: background var(--t), color var(--t);
}
.gallery-thumb-nav:hover { background: var(--gold); color: var(--white); }

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  flex: 1 1 0;
  min-width: 0;
}
.gallery-thumb {
  width: 100%; height: 108px; object-fit: cover;
  cursor: pointer; display: block;
  opacity: 0.55;
  outline: 2px solid transparent;
  outline-offset: 0;
  transition: opacity var(--t), outline-color var(--t);
}
.gallery-thumb:hover { opacity: 0.82; }
.gallery-thumb.active { opacity: 1; outline-color: var(--gold); }

.gallery-see-all-wrap { text-align: center; }
.gallery-see-all-btn {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 10px 28px;
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  border-radius: var(--r);
  font-family: var(--font);
  transition: background var(--t), color var(--t);
}
.gallery-see-all-btn:hover { background: var(--gold); color: var(--white); }

.gallery-modal {
  display: none; position: fixed; z-index: 3000;
  inset: 0; background: rgba(0,0,0,0.92);
  justify-content: center; align-items: center;
}
.gallery-modal.active { display: flex; }
.gallery-modal .gm-img { max-width: 90%; max-height: 90%; }
.gallery-modal .gm-close {
  position: absolute; top: 18px; right: 22px;
  font-size: 30px; color: var(--white); cursor: pointer;
  opacity: 0.6; transition: opacity var(--t); line-height: 1;
}
.gallery-modal .gm-close:hover { opacity: 1; }
.gallery-modal .gm-prev, .gallery-modal .gm-next {
  position: absolute; top: 50%; font-size: 38px; color: var(--white);
  padding: 10px; cursor: pointer; user-select: none;
  background: rgba(0,0,0,0.28); transform: translateY(-50%);
  transition: background var(--t);
}
.gallery-modal .gm-prev { left: 16px; }
.gallery-modal .gm-next { right: 16px; }
.gallery-modal .gm-prev:hover, .gallery-modal .gm-next:hover { background: rgba(201,168,76,0.35); }

/* Videos */
.project-videos { background: var(--white); padding: var(--gap) 0; text-align: center; }
.project-videos h2 { font-size: 28px; font-weight: 500; margin-bottom: 32px; }
.video-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.video-container iframe { width: 90%; max-width: 820px; height: 460px; border: none; }

/* Location */
.project-location { background: var(--cream); padding: var(--gap) 0; text-align: center; }
.project-location h2 { font-size: 28px; font-weight: 500; margin-bottom: 28px; }
.project-location .map-container { width: 100%; }
.project-location iframe { width: 100%; height: 440px; border: 0; }

/* Digital catalog */
.digital-catalog { background: var(--cream); padding: var(--gap) 0; text-align: center; }
.digital-catalog h2 { font-size: 28px; font-weight: 500; margin-bottom: 18px; }
.digital-catalog p { font-size: 15px; margin-bottom: 24px; color: var(--text-2); }

/* Info / Bilgi Al */
.info-section { background: var(--cream); padding: 72px 0; text-align: center; }
.info-section .info-title { font-size: 26px; font-weight: 500; margin-bottom: 12px; }
.info-section .info-text {
  font-size: 15px; margin-bottom: 28px;
  max-width: 600px; margin-left: auto; margin-right: auto;
  color: var(--text-2); font-weight: 300;
}
.info-button-container { text-align: center; }
.info-cta-button {
  background: var(--text); color: var(--white);
  border: none; padding: 12px 30px; font-size: 14px; font-weight: 500;
  border-radius: var(--r); cursor: pointer;
  font-family: var(--font); transition: background var(--t);
}
.info-cta-button:hover { background: #333; }

/* ── Modal ───────────────────────────────────────────────── */
.modal {
  display: none; position: fixed; z-index: 2000;
  inset: 0; background: rgba(0,0,0,0.45);
  overflow-y: auto; padding: 20px;
}
.modal-content {
  background: var(--white); margin: 5% auto;
  padding: 40px 36px; max-width: 460px; width: 90%;
  border-top: 3px solid var(--gold);
  box-shadow: 0 4px 40px rgba(0,0,0,0.14);
  position: relative;
}
.modal-content h2 { font-size: 22px; font-weight: 500; margin-bottom: 24px; }
.modal-content .close {
  position: absolute; top: 14px; right: 16px;
  font-size: 20px; color: var(--text-2); cursor: pointer;
  transition: color var(--t); line-height: 1;
}
.modal-content .close:hover { color: var(--text); }
.modal-content form { display: flex; flex-direction: column; gap: 2px; }
.modal-content form input, .modal-content form textarea { margin-bottom: 10px; }
.modal-content form input[type="submit"] {
  background: var(--text); color: var(--white); border: none;
  cursor: pointer; font-size: 14px; font-weight: 500;
  padding: 12px; border-radius: var(--r);
  font-family: var(--font); transition: background var(--t);
}
.modal-content form input[type="submit"]:hover { background: #333; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--cream);
  border-top: 1px solid var(--border);
  font-family: var(--font);
  color: var(--text);
}
.footer-top-line { display: none; }
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 56px 0 36px;
  width: 92%; max-width: var(--max-w); margin: 0 auto;
}
.footer-container > div {
  flex: 1; min-width: 160px;
  text-align: left; margin: 0 20px 24px 0;
}
.footer-brand h3 {
  font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 10px; color: var(--text);
}
.footer-brand p { font-size: 13px; color: var(--text-2); line-height: 1.65; font-weight: 300; }
.footer-column h4 {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--text); margin-bottom: 14px;
}
.footer-column p { font-size: 13px; color: var(--text-2); line-height: 1.55; margin-bottom: 8px; font-weight: 300; }
.footer-column ul { list-style: none; padding: 0; margin: 0; }
.footer-column ul li { margin-bottom: 8px; }
.footer-column ul li a { font-size: 13px; color: var(--text-2); font-weight: 300; transition: color var(--t); }
.footer-column ul li a:hover { color: var(--gold); }
.contact-button {
  display: inline-block; background: var(--text); color: var(--white);
  padding: 9px 18px; font-size: 12px; font-weight: 500;
  border-radius: var(--r); margin-top: 10px; transition: background var(--t);
}
.contact-button:hover { background: #333; }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 16px 0;
}
.footer-bottom-container {
  max-width: var(--max-w); margin: 0 auto; padding: 0 4%;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-links a { color: var(--text-3); font-size: 12px; margin-right: 14px; transition: color var(--t); }
.footer-links a:hover { color: var(--gold); }
.back-to-top a { font-size: 12px; color: var(--text-3); transition: color var(--t); }
.back-to-top a:hover { color: var(--gold); }

/* ============================================================
   FLOATING / COOKIE
   ============================================================ */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  width: 50px; height: 50px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  transition: transform var(--t), box-shadow var(--t);
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(0,0,0,0.24); }
.whatsapp-float svg { width: 26px; height: 26px; fill: var(--white); }

#cookieBanner {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
  background: var(--text); color: rgba(255,255,255,0.85);
  padding: 14px 24px; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; font-size: 13px; line-height: 1.6; font-weight: 300;
}
#cookieBanner p { margin: 0; flex: 1; }
#cookieBanner a { color: var(--gold); text-decoration: underline; }
#cookieAccept {
  background: var(--gold); color: var(--white); border: none;
  padding: 9px 20px; border-radius: var(--r); cursor: pointer;
  font-size: 13px; font-weight: 500; font-family: var(--font);
  white-space: nowrap; transition: background var(--t);
}
#cookieAccept:hover { background: var(--gold-dk); }

/* ============================================================
   MISC
   ============================================================ */
.container > header, .container > main { text-align: center; margin: 40px 0; }
header h1 { font-size: 36px; font-weight: 300; margin-bottom: 10px; letter-spacing: -0.5px; }
header p { font-size: 15px; color: var(--text-2); }
main p { font-size: 22px; line-height: 1.4; color: var(--text-2); font-weight: 300; }

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media screen and (max-width: 768px) {
  :root { --gap: 56px; }
  .container { width: 100%; padding: 0 16px; }
  .container-map { width: 100%; padding: 0 16px; }

  /* NAV */
  .nav-container { width: 100%; padding: 0 16px; }
  .nav-logo span { font-size: 11px; letter-spacing: 0.8px; }
  button.hamburger { display: flex; }
  .desktop-only { display: none; }
  .mobile-only  { display: list-item; }
  .nav-links {
    position: absolute; top: 100%; left: 0; width: 100%;
    background: var(--white); border-top: 1px solid var(--border);
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease;
    flex-direction: column; text-align: center; z-index: 999; gap: 0;
  }
  .nav-links.active { max-height: calc(100vh - var(--nav-h)); overflow-y: auto; }
  .nav-links li { margin: 0; }
  .nav-links li a { padding: 14px 16px; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--text); }
  .nav-links li a.nav-cta { background: transparent; color: var(--gold); margin-left: 0; }

  /* HERO */
  .hero-inner { flex-direction: column; padding: 48px 0; gap: 32px; }
  .hero-left { flex: none; max-width: 100%; }
  .hero-right { flex: none; max-width: 100%; width: 100%; justify-content: flex-start; }
  .hero-collage { display: none; }
  .hero-title { font-size: 34px; }
  .hero-stats { width: 100%; }
  .stat-item { padding: 16px 20px; flex: 1; }
  .stat-num { font-size: 24px; }

  /* EMEGE SAYGI */
  .emege-inner { flex-direction: column; padding: 0 20px; gap: 32px; text-align: center; }
  .emege-quote-mark { display: none; }
  .emege-slogan { font-size: 32px; letter-spacing: 2px; }
  .emege-stats { flex-direction: row; justify-content: center; gap: 32px; }
  .emege-stat { align-items: center; }

  /* PROJECT GRID */
  .project-grid { grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }

  /* LEGACY PROJECT ITEMS */
  .project-item { display: block; margin-bottom: 28px; }
  .project-image1, .project-image2 { width: 100%; max-width: 100%; flex: none; }
  .project-content {
    width: 100%; max-width: 100%; margin-left: 0;
    border-left: none; border-top: 3px solid var(--gold);
    box-shadow: none; padding: 18px 14px;
  }
  .project-content h6 { display: none; }

  /* GALLERY */
  .gallery-container img { width: calc(50% - 8px); height: 150px; }
  .gallery-featured-img { height: 360px; }
  .project-gallery .container { padding: 0 16px; }
  .gallery-thumb-row { padding: 0; gap: 6px; }
  .gallery-thumbs {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 6px;
    grid-template-columns: none;
    scrollbar-width: none;
  }
  .gallery-thumbs::-webkit-scrollbar { display: none; }
  .gallery-thumb {
    flex: 0 0 80px;
    width: 80px;
    min-width: 80px;
    height: 60px;
  }
  .gallery-thumb-nav {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  /* ABOUT */
  .about-hero__inner { flex-direction: column; }
  .about-container { width: 92%; }
  .split-section { grid-template-columns: 1fr; }
  .values { flex-direction: column; }

  /* BLOG */
  .posts { grid-template-columns: 1fr; }

  /* CONTACT */
  .contact-info-map .grid-two { grid-template-columns: 1fr; gap: 28px; }
  .yer-oner-container { width: 92%; padding: 56px 0; }

  /* TESTIMONIALS */
  .testimonial-item { flex: 1 1 100%; max-width: 100%; }

  /* PROJECT DETAIL */
  .project-about .container { width: 92%; }
  .project-about h2 { font-size: 22px; text-align: left; }
  .project-hero-voque video { height: 36vh; object-fit: cover; }
  .project-hero-content { left: 5%; max-width: calc(100% - 10%); }
  .hero-cta-group { gap: 10px; margin-top: 20px; }
  .hero-btn-gold, .hero-btn-outline { padding: 10px 20px; font-size: 13px; }

  /* FOOTER */
  .footer-container { flex-direction: column; width: 100%; padding: 40px 16px 24px; }
  .footer-container > div { width: 100%; margin: 0 0 20px; }
  .footer-bottom-container { flex-direction: column; gap: 8px; padding: 0 16px; font-size: 12px; }
}

/* ── 500px ── */
@media screen and (max-width: 500px) {
  .project-grid { grid-template-columns: 1fr; }
  .gallery-container img { width: 100%; height: 200px; }
  .gallery-featured-img { height: 240px; }
  .gallery-thumb { height: 60px; }
  .gallery-thumb-nav { height: 40px; }
  .hero-title { font-size: 28px; }
  .hero-stats { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .video-container iframe { height: 220px; }
}
