/* =========================================
   AKINCI NAKLİYAT - ANA CSS
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

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

:root {
  --navy: #1a2744;
  --navy-light: #2d4a80;
  --gold: #c9a227;
  --gold-dark: #a8841e;
  --white: #ffffff;
  --gray-50: #f8f9fb;
  --gray-100: #f1f3f7;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --text: #1a1a2e;
  --font: 'Nunito', sans-serif;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(26,39,68,.10);
  --shadow-lg: 0 8px 40px rgba(26,39,68,.16);
  --transition: .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* CONTAINER */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ---- TICKER ---- */
.ticker-wrap {
  background: var(--navy);
  overflow: hidden;
  white-space: nowrap;
  padding: 9px 0;
  position: relative;
  z-index: 100;
}
.ticker-track {
  display: inline-flex;
  gap: 32px;
  animation: ticker 35s linear infinite;
  white-space: nowrap;
}
.ticker-track span {
  color: #e0e8f8;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  flex-shrink: 0;
}
.ticker-track span:nth-child(odd) { color: var(--gold); }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- HEADER ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
  transition: box-shadow var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 72px;
}
.site-logo img { width: 60px; height: 60px; object-fit: contain; }
.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: 4px; align-items: center; }
.main-nav a {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  padding: 7px 13px;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  background: var(--navy);
  color: var(--white);
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  padding: 9px 18px;
  border-radius: 50px;
  white-space: nowrap;
  transition: background var(--transition);
  margin-left: 12px;
}
.header-phone:hover { background: var(--gold); }
.header-phone svg { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 800;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  line-height: 1.2;
}
.btn-primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn-outline { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-white { background: transparent; border-color: rgba(255,255,255,.7); color: var(--white); }
.btn-outline-white:hover { background: rgba(255,255,255,.15); }
.btn-whatsapp { background: #25d366; border-color: #25d366; color: var(--white); }
.btn-whatsapp:hover { background: #1da851; border-color: #1da851; }
.btn-whatsapp-outline { background: transparent; border-color: #25d366; color: #25d366; }
.btn-whatsapp-outline:hover { background: #25d366; color: var(--white); }
.btn-sm { padding: 9px 20px; font-size: 13px; }
.btn-full { width: 100%; }

/* ---- SECTIONS ---- */
.section { padding: 80px 0; }
.bg-light { background: var(--gray-50); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
}
.section-divider {
  width: 64px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin: 16px auto 0;
}
.section-desc { margin-top: 16px; color: var(--gray-500); font-size: 16px; max-width: 620px; margin-left: auto; margin-right: auto; }
.section-cta { text-align: center; margin-top: 48px; }
.text-gold { color: var(--gold); }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(1px) brightness(.45);
  transform: scale(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,39,68,.85) 40%, rgba(26,39,68,.3));
}
.hero-content { position: relative; z-index: 2; max-width: 640px; padding: 80px 24px; }
.hero-eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.hero-content h1 {
  font-size: clamp(32px, 5.5vw, 60px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-desc { color: rgba(255,255,255,.85); font-size: 17px; margin-bottom: 36px; max-width: 520px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- STATS ---- */
.stats-bar { background: var(--navy); padding: 36px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-item { text-align: center; }
.stat-num { display: block; font-size: clamp(26px, 4vw, 38px); font-weight: 900; color: var(--gold); }
.stat-label { display: block; font-size: 13px; color: rgba(255,255,255,.75); font-weight: 600; letter-spacing: .05em; margin-top: 4px; }

/* ---- FEATURES GRID ---- */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0f4ff, #e8eeff);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--navy);
}
.feature-card h3 { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.feature-card p { color: var(--gray-500); font-size: 14.5px; }

/* ---- SERVICES OVERVIEW ---- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-img-wrap { height: 210px; overflow: hidden; }
.service-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.service-card:hover .service-img-wrap img { transform: scale(1.05); }
.service-body { padding: 24px; }
.service-body h3 { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.service-body p { color: var(--gray-500); font-size: 14.5px; margin-bottom: 16px; }

/* ---- GALLERY ---- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gallery-item { overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.07); }

/* ---- AREAS ---- */
.areas-tags { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.area-tag {
  background: var(--white);
  border: 2px solid var(--navy);
  color: var(--navy);
  font-size: 13.5px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  transition: all var(--transition);
  cursor: default;
}
.area-tag:hover { background: var(--navy); color: var(--white); }

/* ---- CTA SECTION ---- */
.cta-section { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-text h2 { font-size: clamp(22px, 3.5vw, 32px); font-weight: 900; color: var(--white); margin-bottom: 8px; }
.cta-text p { color: rgba(255,255,255,.8); }
.cta-btns { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }

/* ---- FOOTER CTA BAND ---- */
.footer-cta-band {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 80px 0;
}
.footer-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,39,68,.92) 0%, rgba(26,39,68,.82) 100%);
}
.footer-cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-cta-text h2 { font-size: clamp(22px, 3.5vw, 34px); font-weight: 900; color: var(--white); margin-bottom: 10px; }
.footer-cta-text p { color: rgba(255,255,255,.8); font-size: 16px; }
.footer-cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- MAIN FOOTER ---- */
.site-footer { background: #0f1929; color: rgba(255,255,255,.8); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-col h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.footer-brand img { margin-bottom: 14px; }
.footer-brand h3 { font-size: 16px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 20px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,.65);
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}
.footer-links a:hover { color: var(--gold); padding-left: 6px; }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13.5px;
  color: rgba(255,255,255,.65);
}
.footer-contact-list a { color: rgba(255,255,255,.8); transition: color var(--transition); }
.footer-contact-list a:hover { color: var(--gold); }
.footer-contact-list svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }

/* Social */
.social-links { display: flex; gap: 10px; }
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.8);
  transition: all var(--transition);
}
.social-btn:hover { background: var(--gold); color: var(--white); }

/* Footer bottom */
.footer-bottom {
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
}
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,.5); }
.footer-seo-text a { color: rgba(255,255,255,.5); margin: 0 4px; transition: color var(--transition); }
.footer-seo-text a:hover { color: var(--gold); }

/* ---- FLOATING BUTTONS ---- */
.floating-buttons { position: fixed; bottom: 28px; right: 24px; display: flex; flex-direction: column; gap: 12px; z-index: 9999; }
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  transition: transform var(--transition), box-shadow var(--transition);
  color: var(--white);
}
.float-btn:hover { transform: scale(1.12) translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,.3); }
.float-phone { background: var(--navy); }
.float-whatsapp { background: #25d366; }
.float-whatsapp svg { fill: var(--white); }

/* ---- PAGE HERO ---- */
.page-hero { padding: 80px 0; text-align: center; }
.page-hero-content h1 { font-size: clamp(28px, 5vw, 50px); font-weight: 900; color: var(--white); margin-bottom: 12px; }
.page-hero-content p { color: rgba(255,255,255,.8); font-size: 16px; max-width: 600px; margin: 0 auto; }

/* ---- ABOUT PAGE ---- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about-text h2 { font-size: clamp(26px, 3.5vw, 36px); font-weight: 900; color: var(--navy); margin-bottom: 16px; }
.about-text p { color: var(--gray-700); margin-bottom: 16px; line-height: 1.8; }
.about-values { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.value-item { display: flex; align-items: center; gap: 12px; font-weight: 700; color: var(--navy); font-size: 14.5px; }
.about-images { position: relative; }
.about-img-main img { width: 100%; border-radius: 16px; box-shadow: var(--shadow-lg); }
.about-img-secondary { position: absolute; bottom: -24px; right: -20px; border: 4px solid var(--white); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-secondary img { width: 200px; height: 160px; object-fit: cover; }

/* ---- SERVICES FULL ---- */
.services-full-grid { display: flex; flex-direction: column; gap: 80px; }
.service-full-card { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.service-full-card.reverse { direction: rtl; }
.service-full-card.reverse > * { direction: ltr; }
.service-full-img img { width: 100%; border-radius: 16px; box-shadow: var(--shadow-lg); object-fit: cover; height: 360px; }
.service-icon-wrap {
  width: 64px; height: 64px; border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); margin-bottom: 20px;
}
.service-full-body h2 { font-size: 28px; font-weight: 900; color: var(--navy); margin-bottom: 14px; }
.service-full-body p { color: var(--gray-700); margin-bottom: 20px; line-height: 1.8; }
.service-features { margin-bottom: 28px; }
.service-features li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--gray-700);
  font-size: 14.5px;
  border-bottom: 1px solid var(--gray-100);
}
.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}

.mini-services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.mini-service {
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}
.mini-service:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.mini-service svg { margin: 0 auto 14px; }
.mini-service h4 { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.mini-service p { font-size: 13.5px; color: var(--gray-500); }

/* ---- DISTRICTS ---- */
.districts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }
.district-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.district-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.district-icon { color: var(--navy); margin: 0 auto 12px; }
.district-card h3 { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.district-card p { font-size: 12.5px; color: var(--gray-500); }

.cities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.city-card {
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}
.city-card:hover { background: var(--navy); color: var(--white); }
.city-card:hover h3, .city-card:hover p { color: var(--white) !important; }
.city-icon { color: var(--navy); margin: 0 auto 14px; transition: color var(--transition); }
.city-card:hover .city-icon { color: var(--gold); }
.city-card h3 { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 8px; transition: color var(--transition); }
.city-card p { font-size: 13.5px; color: var(--gray-500); transition: color var(--transition); }

/* ---- CONTACT ---- */
.contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px; align-items: start; }
.contact-info-col h2 { font-size: 26px; font-weight: 900; color: var(--navy); margin-bottom: 12px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 16px;
}
.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.phone-icon { background: var(--navy); }
.whatsapp-icon { background: #25d366; }
.email-icon { background: var(--gold); }
.address-icon { background: #6366f1; }
.contact-card > div { display: flex; flex-direction: column; gap: 3px; }
.contact-card strong { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-500); }
.contact-card a { font-size: 16px; font-weight: 700; color: var(--navy); transition: color var(--transition); }
.contact-card a:hover { color: var(--gold); }
.contact-card span { font-size: 12.5px; color: var(--gray-500); }
.contact-direct-btns { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }

.contact-form-box {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.contact-form-box h2 { font-size: 22px; font-weight: 900; color: var(--navy); margin-bottom: 8px; }
.contact-form-box > p { color: var(--gray-500); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 800; color: var(--navy); }
.form-group input, .form-group textarea, .form-group select {
  font-family: var(--font);
  font-size: 15px;
  padding: 12px 16px;
  border: 2px solid var(--gray-300);
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  background: #f0fdf4;
  border: 2px solid #22c55e;
  border-radius: 10px;
  padding: 20px;
  color: #166534;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-secondary { display: none; }
  .service-full-card { grid-template-columns: 1fr; }
  .service-full-card.reverse { direction: ltr; }
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .main-nav, .header-phone { display: none; }
  .hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-cta-inner { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-box { padding: 24px; }
  .hero-content { padding: 60px 24px; }
  .section { padding: 56px 0; }
  .hero { min-height: 520px; }
  .service-full-img img { height: 240px; }

  .main-nav.mobile-open {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    z-index: 9998;
    align-items: center;
    justify-content: center;
  }
  .main-nav.mobile-open ul { flex-direction: column; gap: 8px; text-align: center; }
  .main-nav.mobile-open a { color: var(--white); font-size: 20px; padding: 14px 32px; }
  .main-nav.mobile-open a:hover, .main-nav.mobile-open a.active { background: var(--gold); border-radius: 8px; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; width: 100%; }
  .footer-cta-actions { flex-direction: column; width: 100%; }
}
