/* ============================================================
   DIZAYN MOBİLYA DÖŞEME — style.css
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  --bg:           #FAFAF8;
  --surface:      #F2EDE6;
  --heading:      #1C1C1A;
  --body-text:    #4A4A47;
  --accent:       #8B6F47;
  --accent-light: #C4A882;
  --accent-dark:  #6B5237;
  --white:        #ffffff;
  --border:       #E8E2DA;

  --shadow-sm: 0 2px 8px  rgba(28, 28, 26, 0.06);
  --shadow-md: 0 4px 20px rgba(28, 28, 26, 0.10);
  --shadow-lg: 0 8px 32px rgba(28, 28, 26, 0.14);

  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 20px;

  --transition:  0.3s ease;
  --container:   1200px;
  --navbar-h:    72px;
}

/* ============================================================
   PERFORMANCE
   ============================================================ */

/* Reduce layout shift for images */
img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* Off-screen sections — browser skips rendering until near viewport */
.services,
.areas,
.contact,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}

/* GPU-accelerate animated elements */
.whatsapp-float,
.hero-img img,
.service-card,
.stat-card {
  will-change: transform;
}

/* Pulse animation needs BOTH transform + opacity on compositor */
.whatsapp-float::before {
  will-change: transform, opacity;
}

/* Smooth font rendering */
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-h);
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--body-text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Mobile nav backdrop overlay */
body.nav-open::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 998;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--heading);
  line-height: 1.25;
}

h1 { font-size: 52px; font-weight: 700; }
h2 { font-size: 36px; font-weight: 600; }
h3 { font-size: 22px; font-weight: 600; }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 111, 71, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--heading);
  border-color: rgba(28, 28, 26, 0.25);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-nav {
  background: var(--accent);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
}
.btn-nav:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 16px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 16px;
  transition: all var(--transition);
  margin-top: 8px;
}
.btn-whatsapp:hover {
  background: #1EBE59;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ---- Section Shared ---- */
section { padding: 96px 0; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-desc {
  max-width: 560px;
  margin: 14px auto 0;
  font-size: 17px;
  color: var(--body-text);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-md);
}
/* Always show solid background when menu is open on mobile */
@media (max-width: 768px) {
  .navbar {
    background: rgba(250, 250, 248, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
  }
  .navbar.scrolled {
    background: var(--white);
  }
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon { flex-shrink: 0; }
.logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--heading);
  letter-spacing: -0.01em;
}
.logo-accent { color: var(--accent); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--heading);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover {
  color: var(--accent);
  background: var(--surface);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(28,28,26,0.12);
  cursor: pointer;
  padding: 10px;
  border-radius: var(--radius-sm);
  z-index: 1002;
  position: relative;
  transition: background var(--transition), border-color var(--transition);
  -webkit-tap-highlight-color: transparent;
}
.hamburger:hover {
  background: var(--surface);
  border-color: var(--border);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--heading);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}
.hamburger.active {
  background: var(--surface);
  border-color: var(--accent);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #F5EDE0 0%, #EDE4D2 45%, #E5D8C2 100%);
  padding-top: var(--navbar-h);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 80% 15%, rgba(196, 168, 130, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 85%, rgba(139, 111, 71, 0.10) 0%, transparent 45%);
  pointer-events: none;
}

/* Subtle grain lines */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    91deg,
    transparent 0px,
    transparent 22px,
    rgba(139, 111, 71, 0.025) 22px,
    rgba(139, 111, 71, 0.025) 23px
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 80px 28px;
}

.hero-content { max-width: 720px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(139, 111, 71, 0.10);
  border: 1px solid rgba(139, 111, 71, 0.22);
  padding: 7px 16px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero h1 {
  font-size: clamp(36px, 5.5vw, 58px);
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 24px;
  line-height: 1.12;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 18px;
  color: var(--body-text);
  max-width: 580px;
  margin-bottom: 44px;
  line-height: 1.78;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--bg); }

.service-group { margin-bottom: 60px; }
.service-group:last-child { margin-bottom: 0; }

.group-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--heading);
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--surface);
}

.group-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  color: var(--accent);
  flex-shrink: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  color: var(--accent);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.card-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
  line-height: 1.4;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--surface); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text .section-label { display: block; margin-bottom: 12px; }
.about-text h2 { margin-bottom: 22px; }

.about-body {
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 40px;
  color: var(--body-text);
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 22px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.value-icon {
  width: 46px;
  height: 46px;
  background: rgba(139, 111, 71, 0.10);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.value-item strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 5px;
  font-family: 'Inter', sans-serif;
}
.value-item p {
  font-size: 15px;
  color: var(--body-text);
  margin: 0;
  line-height: 1.6;
}

/* Stats */
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-full {
  grid-column: 1 / -1;
  background: var(--accent);
  border-color: var(--accent);
}
.stat-full .stat-number,
.stat-full .stat-label { color: var(--white); }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 50px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--body-text);
  line-height: 1.4;
}

/* ============================================================
   SERVICE AREAS
   ============================================================ */
.areas { background: var(--bg); }

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.area-badge {
  display: inline-block;
  padding: 10px 22px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  color: var(--heading);
  transition: all var(--transition);
  cursor: default;
}
.area-badge:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(139, 111, 71, 0.30);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--surface); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: stretch;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(139, 111, 71, 0.10);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 5px;
}

.contact-value {
  font-size: 17px;
  font-weight: 600;
  color: var(--heading);
}
a.contact-value:hover { color: var(--accent); }

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 420px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--heading); }

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  padding: 68px 28px 52px;
  flex-wrap: wrap;
}

.footer .logo-text { color: var(--white); }
.logo-accent-light { color: var(--accent-light); }

.footer-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 14px;
  max-width: 280px;
  line-height: 1.65;
}

.footer-col { display: flex; flex-direction: column; gap: 4px; }
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.60);
  padding: 5px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--accent-light); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 108px 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.30);
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.55);
  transition: background var(--transition), color var(--transition), transform var(--transition);
  text-decoration: none;
}
.footer-social a:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}
@media (max-width: 480px) {
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   WHATSAPP FLOAT BUTTON
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 62px;
  height: 62px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 22px rgba(37, 211, 102, 0.50);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.60);
}

/* Pulse ring */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: pulse-ring 2.2s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.35); }
}

/* ============================================================
   SCROLL REVEAL (JS adds these inline, transition base)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — Tablet (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { gap: 52px; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 44px; }
  h2 { font-size: 32px; }
}

/* ============================================================
   RESPONSIVE — Mobile (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --navbar-h: 64px; }

  h1 { font-size: 34px; line-height: 1.2; }
  h2 { font-size: 27px; }
  h3 { font-size: 19px; }
  section { padding: 64px 0; }

  .container { padding: 0 20px; }

  /* Mobile Nav */
  .hamburger { display: flex; margin-left: auto; }

  .nav-links {
    position: fixed;
    top: var(--navbar-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 20px;
    gap: 2px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.25s ease;
    pointer-events: none;
    border-bottom: 3px solid var(--accent);
    z-index: 999;
    max-height: calc(100vh - var(--navbar-h));
    overflow-y: auto;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-link {
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 500;
    color: var(--heading);
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(232,226,218,0.5);
  }
  .nav-link:last-of-type { border-bottom: none; }
  .nav-link:hover,
  .nav-link:active { background: var(--surface); color: var(--accent); }

  .nav-links li:last-child {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
  }
  .btn-nav {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 15px;
    text-align: center;
    display: block;
  }

  /* Hero */
  .hero-inner { padding: 40px 20px 60px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { justify-content: center; width: 100%; }
  .hero-sub { font-size: 16px; margin-bottom: 32px; }
  .hero-badge { font-size: 11px; }

  /* Services */
  .service-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .section-header { margin-bottom: 40px; }
  .section-desc { font-size: 15px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .about-body { font-size: 16px; margin-bottom: 28px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { min-height: 280px; }
  .contact-map iframe { min-height: 280px; }
  .contact-card { padding: 18px 16px; gap: 14px; }

  /* Footer */
  .footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
    padding: 48px 20px 32px;
  }
  .footer-inner > div:first-child {
    grid-column: 1 / -1;
  }
  .footer-col { gap: 2px; }
  .footer-col a { padding: 7px 0; min-height: 40px; display: flex; align-items: center; }
}

/* ============================================================
   RESPONSIVE — Small (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  h1 { font-size: 29px; }
  h2 { font-size: 24px; }
  h3 { font-size: 18px; }
  section { padding: 52px 0; }

  .container { padding: 0 16px; }

  .service-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .service-card { padding: 20px 12px; }
  .card-icon { width: 50px; height: 50px; }
  .card-name { font-size: 13px; }

  .about-stats { grid-template-columns: 1fr 1fr; }
  .stat-card { padding: 28px 16px; }
  .stat-number { font-size: 38px; }

  .stat-full { grid-column: 1 / -1; }

  .hero h1 { font-size: 27px; }
  .hero-sub { font-size: 15px; }

  .section-header { margin-bottom: 32px; }

  .areas-grid { gap: 8px; }
  .area-badge { font-size: 14px; padding: 8px 16px; }

  .whatsapp-float { bottom: 18px; right: 16px; width: 54px; height: 54px; }
  .footer-bottom { padding: 22px 88px 22px 20px; }

  .footer-inner { padding: 36px 16px 28px; gap: 20px 14px; }
}

/* ============================================================
   RESPONSIVE — XSmall (≤ 375px)
   ============================================================ */
@media (max-width: 375px) {
  :root { --navbar-h: 60px; }
  h1 { font-size: 25px; }
  h2 { font-size: 22px; }
  section { padding: 44px 0; }
  .container { padding: 0 14px; }
  .service-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .service-card { padding: 16px 10px; gap: 10px; }
  .hero-inner { padding: 32px 14px 52px; }
}
