/* ============================================================
   Gemlik DTK - Ana Stil Dosyası
   Font: Barlow (modern, endüstriyel)
   Palet: Koyu lacivert + turuncu + beyaz
   ============================================================ */

:root {
  --navy:       #0d1b2a;
  --navy-light: #1a2e45;
  --orange:     #e85d04;
  --orange-dark:#c44d00;
  --orange-glow:rgba(232,93,4,.15);
  --white:      #ffffff;
  --off-white:  #f5f7fa;
  --gray-100:   #f0f2f5;
  --gray-300:   #d1d5db;
  --gray-500:   #6b7280;
  --gray-700:   #374151;
  --text:       #1f2937;
  --border:     #e5e7eb;
  --shadow:     0 4px 24px rgba(13,27,42,.10);
  --shadow-lg:  0 8px 40px rgba(13,27,42,.18);
  --radius:     8px;
  --radius-lg:  16px;
  --transition: .25s ease;
  --font-main:  'Barlow', sans-serif;
  --font-cond:  'Barlow Condensed', sans-serif;
}

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

/* ── Yardımcılar ────────────────────────────────────────────── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-wide { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 20px; }
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.text-center { text-align: center; }
.text-orange { color: var(--orange); }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-cond); font-weight: 700; font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 12px;
}
.section-label::before,
.section-label::after {
  content: ''; display: block; width: 28px; height: 2px; background: var(--orange);
}

.section-title {
  font-family: var(--font-cond); font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1;
  color: var(--navy); margin-bottom: 16px;
}
.section-title.light { color: var(--white); }
.section-desc { color: var(--gray-500); max-width: 580px; font-size: 1.05rem; }
.section-desc.mx-auto { margin-left: auto; margin-right: auto; }

/* ── Butonlar ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius);
  font-weight: 700; font-size: .95rem; cursor: pointer;
  transition: all var(--transition); border: 2px solid transparent;
  letter-spacing: .03em;
}
.btn-primary {
  background: var(--orange); color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,93,4,.35); }
.btn-outline {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-navy {
  background: var(--navy); color: var(--white); border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-sm { padding: 9px 20px; font-size: .88rem; }
.btn-lg { padding: 17px 38px; font-size: 1.05rem; }

/* ── Üst Bar ────────────────────────────────────────────────── */
.topbar {
  background: var(--navy); color: rgba(255,255,255,.75);
  font-size: .82rem; padding: 8px 0;
}
.topbar .container-wide { 
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1400px; width: 100%; margin: 0 auto; padding: 0 20px;
}
.topbar-left { display: flex; align-items: center; gap: 20px; }
.topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar a { color: rgba(255,255,255,.75); transition: color var(--transition); }
.topbar a:hover { color: var(--orange); }
.topbar i { margin-right: 5px; color: var(--orange); }

/* ── Header ─────────────────────────────────────────────────── */
.main-header {
  background: var(--white); padding: 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  position: sticky; top: 0; z-index: 1000;
  transition: all var(--transition);
}
.main-header .container-wide { 
  display: flex; align-items: center; justify-content: space-between; 
  height: 72px; gap: 16px; 
  max-width: 1400px; width: 100%; margin: 0 auto; padding: 0 20px;
}

.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-img { height: 52px; width: auto; object-fit: contain; max-width: 280px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main { font-family: var(--font-cond); font-weight: 800; font-size: 1.5rem; color: var(--navy); letter-spacing: .05em; }
.logo-sub { font-size: .72rem; color: var(--gray-500); letter-spacing: .08em; text-transform: uppercase; }

.main-nav ul { display: flex; gap: 2px; }
.main-nav a {
  display: block; padding: 10px 12px; font-weight: 600; font-size: .88rem;
  color: var(--navy); border-radius: 6px; transition: all var(--transition);
  position: relative; white-space: nowrap;
}
.main-nav a::after {
  content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 2px; background: var(--orange); transform: scaleX(0); transition: transform var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--orange); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }

.nav-cta { font-size: .85rem; padding: 9px 20px; }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; flex-direction: column; gap: 5px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--navy); transition: all var(--transition); border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 90vh;
  display: flex; align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/assets/images/hero.jpg');
  background-size: cover; background-position: center;
  opacity: .3;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(13,27,42,.95) 40%, rgba(13,27,42,.5));
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,93,4,.15); border: 1px solid rgba(232,93,4,.3);
  color: var(--orange); padding: 6px 16px; border-radius: 50px;
  font-size: .8rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-cond); font-weight: 900;
  font-size: clamp(2.8rem, 6vw, 5rem); line-height: 1.0;
  color: var(--white); margin-bottom: 12px;
}
.hero-title span { color: var(--orange); }
.hero-subtitle {
  font-size: 1.15rem; color: rgba(255,255,255,.75);
  margin-bottom: 36px; max-width: 560px; font-weight: 400; line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stat-num {
  font-family: var(--font-cond); font-size: 2.4rem; font-weight: 900; line-height: 1;
  color: var(--white);
}
.hero-stat-num span { color: var(--orange); }
.hero-stat-label { font-size: .78rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .08em; margin-top: 2px; }

/* ── Features Şeridi ────────────────────────────────────────── */
.features-bar {
  background: var(--orange); padding: 0;
}
.features-bar .container {
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.feature-item {
  display: flex; align-items: center; gap: 16px;
  padding: 28px 32px;
  border-right: 1px solid rgba(255,255,255,.2);
}
.feature-item:last-child { border-right: none; }
.feature-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(255,255,255,.2); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--white);
}
.feature-text h4 { font-weight: 800; color: var(--white); font-size: 1rem; margin-bottom: 2px; }
.feature-text p { color: rgba(255,255,255,.8); font-size: .85rem; }

/* ── Hakkımızda Bölümü ──────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image { position: relative; }
.about-image img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--orange); color: var(--white);
  padding: 20px 28px; border-radius: var(--radius);
  text-align: center; font-family: var(--font-cond);
}
.about-badge-num { font-size: 2.5rem; font-weight: 900; line-height: 1; }
.about-badge-txt { font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.about-list { margin: 24px 0; display: flex; flex-direction: column; gap: 10px; }
.about-item { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.about-item i { color: var(--orange); font-size: .9rem; }

/* ── Hizmetler Kartları ─────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--border);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--orange); }
.service-card-img { position: relative; height: 200px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  display: flex; align-items: center; justify-content: center;
}
.service-card-img-placeholder i { font-size: 3rem; color: rgba(255,255,255,.3); }
.service-icon-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--orange); color: var(--white);
  width: 40px; height: 40px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.service-card-body { padding: 24px; }
.service-card-body h3 { font-weight: 800; font-size: 1.1rem; margin-bottom: 8px; color: var(--navy); }
.service-card-body p { color: var(--gray-500); font-size: .9rem; line-height: 1.6; margin-bottom: 16px; }
.service-card-body .btn-sm { font-size: .8rem; }

/* ── Referanslar ────────────────────────────────────────────── */
.refs-section { background: var(--gray-100); }
.refs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.ref-card {
  background: var(--white); border-radius: var(--radius);
  padding: 24px 20px; display: flex; flex-direction: column;
  align-items: center; gap: 12px; text-align: center;
  border: 1px solid var(--border); transition: all var(--transition);
}
.ref-card:hover { box-shadow: var(--shadow); border-color: var(--orange); transform: translateY(-4px); }
.ref-card img { width: 100%; height: 140px; object-fit: contain; transition: all var(--transition); }
.ref-card-name { font-weight: 700; font-size: .95rem; color: var(--gray-700); }
.ref-sector { font-size: .78rem; color: var(--gray-500); }

/* ── İstatistikler ──────────────────────────────────────────── */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative; overflow: hidden;
}
.stats-section::before {
  content: ''; position: absolute; inset: 0;
  background: url('/assets/images/stats-bg.jpg') center/cover no-repeat;
  opacity: .07;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; position: relative; }
.stat-item { text-align: center; }
.stat-circle {
  width: 110px; height: 110px; border-radius: 50%;
  border: 3px solid rgba(232,93,4,.4);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; position: relative;
}
.stat-circle::before {
  content: ''; position: absolute; inset: 6px; border-radius: 50%;
  background: rgba(232,93,4,.1);
}
.stat-num {
  font-family: var(--font-cond); font-weight: 900; font-size: 2rem;
  color: var(--white); line-height: 1; position: relative; z-index: 1;
}
.stat-num span { color: var(--orange); }
.stat-label { color: rgba(255,255,255,.65); font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }

/* ── Yönetim Kartları ───────────────────────────────────────── */
.board-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 48px; }
.board-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  text-align: center; transition: all var(--transition);
}
.board-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.board-img { position: relative; height: 240px; overflow: hidden; background: var(--gray-100); }
.board-img img { width: 100%; height: 100%; object-fit: cover; }
.board-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #e5e7eb, #d1d5db);
}
.board-img-placeholder i { font-size: 4rem; color: #9ca3af; }
.board-info { padding: 24px; }
.board-name { font-weight: 800; font-size: 1.15rem; color: var(--navy); margin-bottom: 4px; }
.board-title {
  font-size: .82rem; text-transform: uppercase; letter-spacing: .1em;
  color: var(--orange); font-weight: 700; margin-bottom: 12px;
}
.board-bio { color: var(--gray-500); font-size: .88rem; margin-bottom: 16px; }
.board-social { display: flex; justify-content: center; gap: 10px; }
.board-social a {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--gray-100); color: var(--gray-700);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; transition: all var(--transition);
}
.board-social a:hover { background: var(--orange); color: var(--white); }

/* ── Breadcrumb ─────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(105deg, var(--navy) 60%, var(--navy-light));
  padding: 64px 0 48px; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; right: -60px; top: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(232,93,4,.08);
}
.page-hero-title { font-family: var(--font-cond); font-weight: 900; font-size: clamp(2rem,4vw,3.2rem); color: var(--white); margin-bottom: 8px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.5); font-size: .85rem; }
.breadcrumb a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb i { font-size: .65rem; }
.breadcrumb .current { color: var(--orange); font-weight: 600; }

/* ── İletişim ───────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow);
}
.contact-info-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--orange-glow); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 1.2rem;
}
.contact-info-text h5 { font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.contact-info-text a, .contact-info-text p { color: var(--gray-500); font-size: .92rem; transition: color var(--transition); }
.contact-info-text a:hover { color: var(--orange); }

.contact-form-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 40px;
  border: 1px solid var(--border);
}
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: 6px; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: .95rem; color: var(--text); background: var(--gray-100);
  transition: all var(--transition); outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange); background: var(--white);
  box-shadow: 0 0 0 3px rgba(232,93,4,.1);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-alert { padding: 12px 16px; border-radius: var(--radius); margin-bottom: 16px; font-size: .9rem; }
.form-alert.success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.form-alert.error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ── Galeri ─────────────────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 40px; }
.gallery-item {
  aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius);
  cursor: pointer; position: relative;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(13,27,42,.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
}
.gallery-overlay i { color: var(--white); font-size: 1.8rem; }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 9999;
  display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close {
  position: absolute; top: 20px; right: 28px;
  color: var(--white); font-size: 2rem; cursor: pointer; background: none; border: none;
}

/* ── Map ─────────────────────────────────────────────────────── */
.map-wrapper { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.map-wrapper iframe { display: block; }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer { background: var(--navy); color: rgba(255,255,255,.7); }
.footer-top { padding: 80px 0 60px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 48px; }
.footer-logo img { height: 44px; width: auto; margin-bottom: 16px; }
.footer-about { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.55); margin-bottom: 20px; max-width: 280px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.65);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; transition: all var(--transition);
}
.social-links a:hover { background: var(--orange); color: var(--white); }
.footer-title {
  font-family: var(--font-cond); font-weight: 700; font-size: 1rem;
  text-transform: uppercase; letter-spacing: .1em; color: var(--white);
  margin-bottom: 20px; padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,.55); font-size: .88rem; transition: all var(--transition); }
.footer-links a:hover { color: var(--orange); padding-left: 4px; }
.footer-links i { color: var(--orange); margin-right: 6px; font-size: .7rem; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; font-size: .88rem; }
.footer-contact i { color: var(--orange); margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-contact a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0; text-align: center;
  font-size: .82rem; color: rgba(255,255,255,.35);
}

/* ── Flash ──────────────────────────────────────────────────── */
.flash-msg {
  padding: 14px 20px; border-radius: var(--radius);
  margin-bottom: 20px; font-weight: 600; font-size: .92rem;
}
.flash-success { background: #d1fae5; color: #065f46; }
.flash-error { background: #fee2e2; color: #991b1b; }
.flash-info { background: #dbeafe; color: #1e40af; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .refs-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .features-bar .container { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); }
  .feature-item:last-child { border-bottom: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .board-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .topbar .container-wide { flex-wrap: wrap; gap: 4px; }
  .topbar-left { gap: 12px; }
  .topbar-right { display: none; }
  .main-nav { 
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); box-shadow: var(--shadow-lg); padding: 16px 20px;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 2px; }
  .main-nav a { padding: 12px 16px; border-radius: var(--radius); }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .main-header { position: relative; }
  .hero { min-height: 80vh; }
  .hero-stats { gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .refs-grid { grid-template-columns: repeat(2,1fr); }
  .board-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .about-badge { position: static; margin-top: 16px; display: inline-block; }
}
@media (max-width: 480px) {
  .refs-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
