/* ============================================================
   AAA Renovations of NC, LLC — style.css
   Premium light theme — Cream/White/Navy/Orange
   ============================================================ */

:root {
  --cream:        #faf6ef;
  --cream-soft:   #f3ecdf;
  --cream-deep:   #ece2cf;
  --white:        #ffffff;
  --navy:         #0b1a2e;
  --navy-mid:     #1a2d4a;
  --navy-soft:    #2a3e5e;
  --orange:       #e8621a;
  --orange-dark:  #c4511a;
  --orange-light: #ff8a4d;
  --orange-glow:  rgba(232,98,26,0.12);
  --text-dark:    #1a2438;
  --text-mid:     #4a5670;
  --text-soft:    #7a8499;
  --border:       rgba(11,26,46,0.08);
  --border-strong:rgba(11,26,46,0.14);

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Outfit', sans-serif;

  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  32px;

  --shadow-sm:    0 4px 14px rgba(11,26,46,0.06);
  --shadow-md:    0 10px 30px rgba(11,26,46,0.08);
  --shadow-card:  0 18px 50px rgba(11,26,46,0.10);
  --shadow-hover: 0 30px 70px rgba(11,26,46,0.18);
  --shadow-orange:0 14px 40px rgba(232,98,26,0.32);
  --transition:   0.35s cubic-bezier(0.25,0.46,0.45,0.94);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; min-width: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
body.menu-open { overflow: hidden; }
section, header, footer, nav { max-width: 100vw; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--orange); color: var(--white); }

/* ===== UTILITIES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.section-eyebrow.light { color: var(--orange-light); }

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.05;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}
.section-title.light { color: var(--white); }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.7;
}
.section-sub.light { color: rgba(255,255,255,0.78); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-sub { margin: 0 auto; }

.accent { color: var(--orange); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  isolation: isolate;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(232,98,26,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-3px);
}
.btn-outline.on-dark { color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline.on-dark:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-full { width: 100%; justify-content: center; }
.mt-btn { margin-top: 32px; }

/* Shine effect */
.btn-shine { overflow: hidden; }
.btn-shine::after {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 80%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
  z-index: -1;
}
.btn-shine:hover::after { left: 130%; }

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  box-shadow: 0 0 12px rgba(232,98,26,0.6);
  z-index: 1100;
  transition: width 0.1s linear;
}

/* ===== NAVBAR (always white) ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.4s ease, padding 0.3s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 6px 30px rgba(11,26,46,0.10);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  height: 96px;
  transition: transform 0.35s ease;
}
.nav-logo:hover { transform: scale(1.05); }
.nav-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  color: var(--text-dark);
  padding: 10px 16px;
  border-radius: 100px;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 18px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: transform 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after { transform: translateX(-50%) scaleX(1); }
.nav-link:hover, .nav-link.active { color: var(--orange); }

.btn-nav {
  background: var(--orange);
  color: var(--white) !important;
  padding: 12px 26px;
  border-radius: 100px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(232,98,26,0.4);
}
.btn-nav::after { display: none; }
.btn-nav:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(232,98,26,0.5);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 28px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.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;
  margin-top: 110px;
  height: calc(100vh - 110px);
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(11,26,46,0.85) 0%, rgba(11,26,46,0.55) 55%, rgba(232,98,26,0.25) 100%);
}

/* Hero animated shapes */
.hero-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  mix-blend-mode: screen;
}
.orb-1 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(232,98,26,0.95), transparent 70%);
  top: -90px; left: -120px;
  animation: orbFloat 14s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(50,90,150,1), transparent 70%);
  bottom: -180px; right: -140px;
  animation: orbFloat 18s ease-in-out infinite reverse;
}
.orb-3 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(255,138,77,0.7), transparent 70%);
  top: 35%; left: 60%;
  animation: orbFloat 11s ease-in-out infinite 2s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(40px,-30px) scale(1.08); }
  66%      { transform: translate(-30px,40px) scale(0.95); }
}
.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, #000 25%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 25%, transparent 75%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 20px;
  width: 100%;
  max-width: 880px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 22px;
  padding: 8px 18px;
  background: rgba(232,98,26,0.15);
  border: 1px solid rgba(232,98,26,0.35);
  border-radius: 100px;
  backdrop-filter: blur(8px);
  max-width: 100%;
  text-align: center;
}
.hero-eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(232,98,26,0.3);
  animation: dotPulse 2s ease infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(232,98,26,0.3); }
  50%      { box-shadow: 0 0 0 8px rgba(232,98,26,0); }
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 7vw, 5.8rem);
  line-height: 1.0;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
.gradient-text {
  background: linear-gradient(90deg, var(--orange-light), var(--orange), #ffb380, var(--orange), var(--orange-light));
  background-size: 200% auto;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: gradientShift 5s linear infinite;
}
@keyframes gradientShift { to { background-position: 200% center; } }

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-btns .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.05);
}
.hero-btns .btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

/* Trust pill */
.hero-trust {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  backdrop-filter: blur(10px);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.92);
  max-width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-trust strong { color: var(--white); }
.trust-stars { display: inline-flex; gap: 3px; color: var(--orange-light); }
.trust-stars i { animation: starPulse 2.4s ease-in-out infinite; }
.trust-stars i:nth-child(2) { animation-delay: 0.15s; }
.trust-stars i:nth-child(3) { animation-delay: 0.3s; }
.trust-stars i:nth-child(4) { animation-delay: 0.45s; }
.trust-stars i:nth-child(5) { animation-delay: 0.6s; }
@keyframes starPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 transparent); }
  50%      { transform: scale(1.25); filter: drop-shadow(0 0 8px rgba(255,138,77,0.9)); }
}

/* Hero scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.hero-scroll-hint:hover { opacity: 1; }
.scroll-mouse {
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.scroll-wheel {
  width: 4px; height: 8px;
  background: var(--orange);
  border-radius: 2px;
  animation: scrollWheel 1.8s ease infinite;
}
@keyframes scrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

.fade-in-1 { animation: fadeInUp 0.9s 0.2s both; }
.fade-in-2 { animation: fadeInUp 0.9s 0.4s both; }
.fade-in-3 { animation: fadeInUp 0.9s 0.6s both; }
.fade-in-4 { animation: fadeInUp 0.9s 0.8s both; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.reveal-right { transform: translateX(44px); }
.reveal.visible { opacity: 1; transform: translate(0); }

/* ===== MARQUEE ===== */
.marquee {
  background: var(--navy);
  overflow: hidden;
  padding: 22px 0;
  position: relative;
}
.marquee::before, .marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--navy), transparent); }
.marquee::after  { right: 0; background: linear-gradient(-90deg, var(--navy), transparent); }
.marquee-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}
.marquee-track span i { color: var(--orange); font-size: 1rem; }
@keyframes marqueeScroll { to { transform: translateX(-50%); } }

/* ===== ABOUT (cream bg) ===== */
.about {
  padding: 130px 0;
  background: var(--cream);
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.about-img-main img {
  width: 100%; height: 460px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img-main:hover img { transform: scale(1.06); }

.about-badge {
  position: absolute;
  bottom: -30px; right: -30px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 28px;
  text-align: center;
  box-shadow: var(--shadow-orange);
  z-index: 2;
}
.badge-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.4rem;
  line-height: 1;
}
.badge-txt {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 4px;
  opacity: 0.95;
}
.about-img-small {
  position: absolute;
  top: 40px; left: -40px;
  width: 180px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 6px solid var(--cream);
  z-index: 2;
}
.about-img-small img {
  width: 100%; height: 130px;
  object-fit: cover;
}

.about-text { padding-left: 8px; }
.about-desc {
  color: var(--text-mid);
  font-size: 1.04rem;
  line-height: 1.8;
  margin-bottom: 18px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 32px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  padding: 14px 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.feature-item i {
  color: var(--orange);
  font-size: 1.1rem;
  width: 22px;
  flex-shrink: 0;
}

/* ===== SERVICES (white bg) ===== */
.services {
  padding: 130px 0;
  background: var(--white);
  position: relative;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, var(--orange), transparent 50%, var(--orange));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.service-card:hover::before { opacity: 1; }
.service-card-featured {
  background: linear-gradient(135deg, var(--white), var(--cream-soft));
}
.service-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-img img { transform: scale(1.1); }
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,26,46,0.65));
  display: flex;
  align-items: flex-end;
  padding: 18px;
}
.service-img-overlay i {
  font-size: 1.7rem;
  color: var(--white);
  background: var(--orange);
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-orange);
}
.service-body { padding: 28px; }
.service-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-body p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: gap var(--transition);
}
.service-link:hover { gap: 12px; }

/* ===== WHY US (dark navy) ===== */
.why-us {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
  background: var(--navy);
}
.why-bg { position: absolute; inset: 0; z-index: 0; }
.why-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.18;
}
.why-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,26,46,0.92) 0%, rgba(26,45,74,0.88) 100%);
}
.why-us .container { position: relative; z-index: 1; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 70px;
}
.stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 40px 24px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
}
.stat-card:hover {
  background: rgba(232,98,26,0.15);
  border-color: var(--orange);
  transform: translateY(-6px);
}
.stat-icon {
  font-size: 2.2rem;
  color: var(--orange-light);
  margin-bottom: 18px;
  display: block;
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.4rem;
  color: var(--white);
  line-height: 1;
  display: inline;
}
.stat-plus {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--orange);
  display: inline;
}
.stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.7);
  margin-top: 10px;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.usp-item {
  text-align: center;
  padding: 36px 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  transition: background var(--transition), transform var(--transition);
}
.usp-item:hover {
  background: rgba(232,98,26,0.1);
  transform: translateY(-4px);
}
.usp-item i {
  font-size: 2.2rem;
  color: var(--orange);
  margin-bottom: 16px;
  display: block;
}
.usp-item h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 12px;
}
.usp-item p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
}

/* ===== PROCESS (cream-soft bg) ===== */
.process {
  padding: 130px 0;
  background: var(--cream-soft);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(232,98,26,0.08), transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 64px; left: 12%; right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(232,98,26,0.45) 0 10px, transparent 10px 20px);
  z-index: 0;
}
.process-step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 26px 34px;
  text-align: center;
  z-index: 1;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.process-step:hover {
  transform: translateY(-12px);
  border-color: var(--orange);
  box-shadow: var(--shadow-hover);
}
.step-num {
  position: absolute;
  top: -24px; left: 50%;
  transform: translateX(-50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-orange);
  letter-spacing: 0.04em;
}
.process-step:hover .step-num { animation: stepBounce 0.6s ease; }
@keyframes stepBounce {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50%      { transform: translateX(-50%) scale(1.2); }
}
.step-icon {
  font-size: 2.5rem;
  color: var(--orange);
  margin: 20px 0 20px;
  display: block;
  transition: transform 0.4s ease;
}
.process-step:hover .step-icon { transform: scale(1.18) rotate(-8deg); }
.process-step h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin-bottom: 12px;
}
.process-step p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ===== GALLERY (white bg) ===== */
.gallery {
  padding: 130px 0;
  background: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 18px;
}
.gi-large { grid-column: span 2; grid-row: span 2; }
.gi-wide  { grid-column: span 2; }

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream-soft);
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.gallery-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.gi-large { aspect-ratio: 1; }
.gi-wide  { aspect-ratio: 2/1; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.gallery-item:hover img { transform: scale(1.12); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,26,46,0.92));
  display: flex;
  align-items: flex-end;
  padding: 22px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
}

/* ===== TESTIMONIALS (cream bg) ===== */
.testimonials {
  padding: 130px 0;
  background: var(--cream);
}
.testimonial-slider-wrap { position: relative; }
.testimonial-track-outer { overflow: hidden; border-radius: var(--radius-lg); }
.testimonial-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.testimonial-slide { min-width: 100%; padding: 0 8px; }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 60px;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-card);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 24px; left: 44px;
  font-family: Georgia, serif;
  font-size: 7.5rem;
  line-height: 1;
  color: var(--orange);
  opacity: 0.18;
}
.t-stars {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 26px;
}
.t-stars i { color: var(--orange); font-size: 1.15rem; }
.t-text {
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.85;
  margin-bottom: 36px;
  font-style: italic;
  font-weight: 400;
}
.t-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.t-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 3px solid var(--orange);
  padding: 3px;
  background: var(--white);
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(232,98,26,0.3);
  position: relative;
}
.t-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.t-author strong {
  display: block;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.02rem;
}
.t-author span {
  display: block;
  font-size: 0.82rem;
  color: var(--text-soft);
  margin-top: 2px;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 36px;
}
.slider-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border-strong);
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.slider-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}
.slider-dots { display: flex; gap: 10px; }
.dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--border-strong);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, width 0.3s;
  border: none;
}
.dot.active {
  background: var(--orange);
  width: 28px;
  border-radius: 6px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 0;
  background: var(--cream);
  margin: 0;
  padding-bottom: 0;
}
.cta-banner .container { padding-top: 30px; padding-bottom: 30px; }
.cta-inner {
  position: relative;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 60%, #9c3e10 100%);
  border-radius: var(--radius-xl);
  padding: 60px 64px;
  display: grid;
  grid-template-columns: 1.6fr auto;
  gap: 36px;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(232,98,26,0.35);
}
.cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255,255,255,0.22), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(0,0,0,0.18), transparent 50%);
  pointer-events: none;
}
.cta-inner::after {
  content: '';
  position: absolute;
  top: -50%; right: -8%;
  width: 320px; height: 320px;
  border: 2px dashed rgba(255,255,255,0.22);
  border-radius: 50%;
  animation: ctaSpin 30s linear infinite;
  pointer-events: none;
}
@keyframes ctaSpin { to { transform: rotate(360deg); } }
.cta-inner h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
}
.cta-inner p {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.95);
  max-width: 560px;
  position: relative;
  line-height: 1.65;
}
.cta-btn {
  background: var(--white) !important;
  color: var(--navy) !important;
  border-color: var(--white) !important;
  box-shadow: 0 14px 40px rgba(0,0,0,0.2) !important;
  font-weight: 700;
  padding: 17px 34px;
}
.cta-btn:hover {
  background: var(--navy) !important;
  color: var(--white) !important;
  border-color: var(--navy) !important;
  transform: translateY(-3px);
}

/* ===== CONTACT ===== */
.contact {
  padding: 130px 0;
  background: var(--cream);
  position: relative;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-desc {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 40px;
  font-size: 1.02rem;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 18px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-detail-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}
.cd-icon {
  width: 50px; height: 50px;
  border-radius: var(--radius-sm);
  background: var(--orange-glow);
  border: 1px solid rgba(232,98,26,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.15rem;
  flex-shrink: 0;
}
.contact-detail-item strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-soft);
  margin-bottom: 3px;
  font-weight: 600;
}
.contact-detail-item span {
  font-size: 1rem;
  color: var(--navy);
  font-weight: 600;
}

/* Contact Form */
.contact-form-wrap { position: relative; }
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px 44px;
  box-shadow: var(--shadow-card);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 22px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full-width { margin-bottom: 26px; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.96rem;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-soft); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(232,98,26,0.12);
}
.form-group select option { background: var(--white); color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group input.error,
.form-group textarea.error { border-color: #e53e3e; }
.error-msg { font-size: 0.78rem; color: #e53e3e; min-height: 14px; }
.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-top: 16px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 72px 40px;
  background: var(--white);
  border: 1px solid rgba(72,187,120,0.3);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}
.form-success.show { display: block; }
.success-icon {
  font-size: 3.6rem;
  color: #38a169;
  margin-bottom: 20px;
  animation: popIn 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes popIn {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--navy);
  margin-bottom: 14px;
}
.form-success p { color: var(--text-mid); }

/* ===== FOOTER ===== */
.footer { background: var(--navy); color: rgba(255,255,255,0.7); }
.footer-top { padding: 90px 0 60px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 50px;
}
.footer-logo {
  display: block;
  height: 110px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  margin-bottom: 26px;
  background: var(--white);
  padding: 16px 22px;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.footer-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(232,98,26,0.3);
}
.footer-brand p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 26px;
  max-width: 300px;
}
.social-icons { display: flex; gap: 10px; }
.social-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-icon:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: translateY(-3px);
}
.footer-links-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--white);
  margin-bottom: 22px;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col ul li a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.3s, padding 0.3s;
}
.footer-links-col ul li a:hover {
  color: var(--orange-light);
  padding-left: 6px;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
}
.footer-contact-list i { color: var(--orange); margin-top: 3px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 26px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom .credit a {
  color: var(--orange-light);
  font-weight: 600;
  transition: color 0.3s ease;
}
.footer-bottom .credit a:hover { color: var(--orange); }

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed;
  bottom: 32px; right: 28px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--orange);
  border: none;
  color: var(--white);
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s, background 0.3s;
  z-index: 900;
  box-shadow: var(--shadow-orange);
}
.back-top.visible { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--orange-dark); transform: translateY(-3px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 90px; }
  .about-images { max-width: 560px; margin: 0 auto; }
  .about-text { padding-left: 0; }
  .about-img-small { left: -16px; }
  .about-badge { right: -16px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .usp-grid    { grid-template-columns: repeat(2, 1fr); }

  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 56px 26px; }
  .process-grid::before { display: none; }

  .cta-inner { grid-template-columns: 1fr; padding: 48px 40px; text-align: center; }
  .cta-inner p { margin: 0 auto; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gi-large { grid-column: span 1; grid-row: span 1; }
  .gi-wide  { grid-column: span 2; }

  .contact-grid { grid-template-columns: 1fr; gap: 56px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 42px; }
}

@media (max-width: 768px) {
  .nav-container { height: 84px; padding: 0 18px; }
  .nav-logo { height: 68px; }
  .hero { margin-top: 84px; height: auto; min-height: calc(100vh - 84px); padding: 60px 0; width: 100%; }
  .hero-content { padding: 0 18px; max-width: 100%; }
  .hero-headline { font-size: clamp(2rem, 9vw, 3.4rem); }
  .hero-eyebrow { font-size: 0.68rem; padding: 7px 14px; gap: 8px; letter-spacing: 0.18em; }
  .btn { white-space: normal; padding: 14px 26px; }
  .hero-tagline { margin-bottom: 28px; }
  .hero-trust { margin-top: 28px; }
  .about { padding: 90px 0; }
  .about-grid { gap: 70px; }
  .about-img-main img { height: 360px; }
  .section-header { margin-bottom: 44px; }
  .stats-grid { gap: 16px; }
  .stat-card { padding: 28px 16px; }
  .stat-num { font-size: 2.6rem; }
  .stat-plus { font-size: 2rem; }
  .testimonial-card::before { font-size: 5rem; left: 24px; top: 14px; }
  .t-text { font-size: 1rem; line-height: 1.75; margin-bottom: 28px; }
  .t-avatar { width: 56px; height: 56px; }
  .gallery-grid { gap: 12px; }
  .contact-form { padding: 30px 22px; }
  .contact-detail-item { padding: 14px 16px; gap: 14px; }
  .cd-icon { width: 44px; height: 44px; font-size: 1rem; }
  .footer-top { padding: 70px 0 50px; }
  .footer-bottom .container { gap: 6px; }
  .back-top { width: 44px; height: 44px; bottom: 22px; right: 18px; }

  .nav-links {
    position: fixed;
    top: 84px;
    left: 0; right: 0;
    bottom: 0;
    height: calc(100vh - 84px);
    overflow-y: auto;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    padding: 24px 28px 40px;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
    box-shadow: 0 20px 50px rgba(11,26,46,0.12);
    z-index: 999;
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0s;
  }
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  .nav-links li:last-child {
    border-bottom: none;
    margin-top: 20px;
  }
  .nav-link {
    display: block;
    color: var(--text-dark) !important;
    padding: 18px 4px;
    width: 100%;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    background: transparent !important;
    border-radius: 0;
    transition: color 0.25s ease, padding 0.25s ease;
  }
  .nav-link::after { display: none; }
  .nav-link:hover, .nav-link.active {
    color: var(--orange) !important;
    padding-left: 10px;
  }
  .btn-nav {
    display: block !important;
    text-align: center;
    background: var(--orange) !important;
    color: var(--white) !important;
    padding: 16px 24px !important;
    border-radius: 100px !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
  }
  .btn-nav:hover { padding-left: 24px !important; }
  .hamburger { display: flex; }

  .marquee-track { gap: 40px; }
  .marquee-track span { font-size: 1rem; }

  .hero-headline { font-size: clamp(2.2rem, 10vw, 3.5rem); }

  .services-grid { grid-template-columns: 1fr; }
  .process { padding: 90px 0; }
  .testimonial-card { padding: 40px 28px; }
  .cta-inner { padding: 40px 26px; }
  .cta-inner h2 { font-size: 1.6rem; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 36px 26px; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom .container { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .process-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-trust {
    font-size: 0.78rem;
    padding: 10px 16px;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
  }
  .hero-headline { margin-bottom: 18px; }
  .hero-tagline { font-size: 0.95rem; }
  .testimonial-card { padding: 36px 22px; }
  .testimonial-card::before { font-size: 4rem; }
  .t-text { font-size: 0.95rem; }
  .t-author { flex-direction: column; gap: 10px; }
  .t-author > div:last-child { text-align: center; }
  .marquee-track { gap: 28px; }
  .marquee-track span { font-size: 0.88rem; gap: 10px; }
  .stat-card { padding: 24px 14px; }
  .stat-num { font-size: 2.2rem; }
  .feature-item { padding: 12px 14px; font-size: 0.88rem; }

  .about { padding: 90px 0; }
  .about-img-small { display: none; }
  .about-badge { right: 12px; bottom: -22px; padding: 16px 20px; }
  .about-features { grid-template-columns: 1fr; }

  .services       { padding: 90px 0; }
  .why-us         { padding: 90px 0; }
  .gallery        { padding: 90px 0; }
  .testimonials   { padding: 90px 0; }
  .contact        { padding: 90px 0; }
  .footer-top     { padding: 64px 0 44px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .usp-grid   { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gi-large { grid-column: span 2; }
  .gi-wide  { grid-column: span 2; }

  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 280px; justify-content: center; }

  .section-title { font-size: 2rem; }
  .footer-logo { height: 90px; padding: 12px 18px; max-width: 180px; }
}
