/* ============================================================
   APEX COUVERTURE — Global Stylesheet
   ============================================================ */

:root {
  --navy:      #1a2332;
  --navy-mid:  #243044;
  --orange:    #e07b39;
  --orange-dk: #c4692a;
  --light:     #f5f7fa;
  --white:     #ffffff;
  --gray:      #e8ecf0;
  --text:      #2c3e50;
  --text-muted:#6b7a8d;
  --radius:    8px;
  --radius-lg: 16px;
  --shadow:    0 4px 24px rgba(26,35,50,.10);
  --shadow-lg: 0 12px 48px rgba(26,35,50,.16);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ── */
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--text-muted); line-height: 1.75; }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.text-center { text-align: center; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-size: .95rem; font-weight: 600; transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange); color: var(--white);
  box-shadow: 0 4px 16px rgba(224,123,57,.35);
}
.btn-primary:hover { background: var(--orange-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(224,123,57,.45); }
.btn-secondary {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-secondary:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-outline {
  background: transparent; color: var(--navy);
  border: 2px solid var(--gray);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-mid); transform: translateY(-2px); }

/* ── Section Labels ── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--orange); margin-bottom: 16px;
}
.section-label::before {
  content: ''; display: block; width: 24px; height: 2px; background: var(--orange);
}
.section-title { color: var(--navy); margin-bottom: 16px; }
.section-subtitle { font-size: 1.1rem; max-width: 560px; }
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* ── Badge ── */
.badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: .78rem; font-weight: 600; }
.badge-orange { background: rgba(224,123,57,.12); color: var(--orange); }
.badge-navy  { background: rgba(26,35,50,.08); color: var(--navy); }

/* ── Card ── */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: 32px;
  transition: var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* ── Divider ── */
.divider { width: 56px; height: 4px; background: var(--orange); border-radius: 2px; margin: 20px 0 28px; }
.divider.centered { margin: 20px auto 28px; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: var(--navy);
  box-shadow: 0 4px 24px rgba(0,0,0,.2);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 72px; max-width: 1200px; margin: 0 auto;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
}
.nav-logo-icon {
  width: 40px; height: 40px; background: var(--orange);
  border-radius: var(--radius); display: grid; place-items: center;
  flex-shrink: 0;
}
.nav-logo-icon svg { width: 22px; height: 22px; fill: var(--white); }
.nav-logo-text { font-size: 1.2rem; font-weight: 800; color: var(--white); letter-spacing: -.02em; }
.nav-logo-text span { color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link {
  padding: 8px 16px; border-radius: var(--radius);
  color: rgba(255,255,255,.85); font-size: .9rem; font-weight: 500;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--white); background: rgba(255,255,255,.1); }
.nav-link.active { color: var(--orange); background: rgba(224,123,57,.1); }
.nav-cta { margin-left: 16px; padding: 10px 22px; font-size: .875rem; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.mobile-menu {
  display: none; position: fixed; inset: 0; background: var(--navy);
  z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link { font-size: 1.4rem; padding: 14px 32px; }
.mobile-menu-close {
  position: absolute; top: 24px; right: 24px;
  color: var(--white); font-size: 2rem; background: none; border: none;
  cursor: pointer; opacity: .7;
}
.mobile-menu-close:hover { opacity: 1; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1621905252507-b35492cc74b4?w=1600&q=80') center/cover no-repeat;
  opacity: .22;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,35,50,.95) 0%, rgba(26,35,50,.7) 60%, rgba(26,35,50,.4) 100%);
}
.hero-content {
  position: relative; z-index: 1; padding: 120px 24px 80px;
  max-width: 1200px; margin: 0 auto; width: 100%;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(224,123,57,.15); border: 1px solid rgba(224,123,57,.3);
  color: var(--orange); font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  padding: 8px 16px; border-radius: 20px; margin-bottom: 28px;
}
.hero-title { color: var(--white); margin-bottom: 24px; max-width: 680px; }
.hero-title span { color: var(--orange); }
.hero-subtitle {
  font-size: 1.15rem; color: rgba(255,255,255,.75);
  max-width: 520px; margin-bottom: 40px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats {
  display: flex; gap: 48px; flex-wrap: wrap;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat-value {
  font-size: 2.4rem; font-weight: 800; color: var(--white); line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-value span { color: var(--orange); }
.hero-stat-label { font-size: .85rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .06em; }
.hero-badge {
  position: absolute; right: 24px; bottom: 80px;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 16px 20px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  animation: float 4s ease-in-out infinite;
}
.hero-badge-stars { color: #f5c518; font-size: 1rem; letter-spacing: 2px; }
.hero-badge-label { font-size: .78rem; color: var(--text-muted); }
.hero-badge-rating { font-size: 1.4rem; font-weight: 800; color: var(--navy); }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--orange);
  padding: 20px 0; overflow: hidden;
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: var(--white); font-size: .875rem; font-weight: 600;
}
.trust-item svg { width: 20px; height: 20px; fill: rgba(255,255,255,.8); flex-shrink: 0; }

/* ============================================================
   INTRO / ABOUT PREVIEW
   ============================================================ */
.intro-image-wrap {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.intro-image-wrap img { width: 100%; height: 480px; object-fit: cover; }
.intro-img-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--white); border-radius: var(--radius);
  padding: 16px 20px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 14px;
}
.intro-img-badge-icon { width: 44px; height: 44px; background: var(--orange); border-radius: var(--radius); display: grid; place-items: center; flex-shrink: 0; }
.intro-img-badge-icon svg { width: 22px; height: 22px; fill: var(--white); }
.intro-img-badge-text strong { display: block; font-size: .95rem; color: var(--navy); }
.intro-img-badge-text span { font-size: .8rem; color: var(--text-muted); }
.intro-features { display: flex; flex-direction: column; gap: 20px; margin: 28px 0 36px; }
.intro-feature { display: flex; align-items: flex-start; gap: 16px; }
.intro-feature-icon {
  width: 44px; height: 44px; background: rgba(224,123,57,.1);
  border-radius: var(--radius); display: grid; place-items: center; flex-shrink: 0;
}
.intro-feature-icon svg { width: 22px; height: 22px; fill: var(--orange); }
.intro-feature-title { font-weight: 700; color: var(--navy); margin-bottom: 2px; font-size: .95rem; }
.intro-feature p { font-size: .875rem; margin: 0; }

/* ============================================================
   SERVICES PREVIEW
   ============================================================ */
.services-section { background: var(--light); }
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 28px; box-shadow: var(--shadow);
  transition: var(--transition); border: 2px solid transparent;
  cursor: default;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--orange); }
.service-icon {
  width: 56px; height: 56px; border-radius: var(--radius);
  background: rgba(224,123,57,.1); display: grid; place-items: center; margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--orange); }
.service-icon svg { width: 28px; height: 28px; fill: var(--orange); transition: var(--transition); }
.service-card:hover .service-icon svg { fill: var(--white); }
.service-title { color: var(--navy); margin-bottom: 10px; font-size: 1.1rem; }
.service-desc { font-size: .875rem; margin-bottom: 16px; }
.service-price { font-size: .82rem; color: var(--orange); font-weight: 600; }

/* ============================================================
   STATS COUNTER
   ============================================================ */
.stats-section {
  background: var(--navy);
  padding: 72px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat-item { text-align: center; padding: 32px 16px; }
.stat-num {
  font-size: 3rem; font-weight: 800; color: var(--white); line-height: 1;
  margin-bottom: 8px;
}
.stat-num span { color: var(--orange); }
.stat-label { font-size: .85rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .08em; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: flex; gap: 24px; padding: 28px 0;
  border-bottom: 1px solid var(--gray);
}
.process-step:last-child { border-bottom: none; }
.process-num {
  font-size: 2.5rem; font-weight: 800; color: var(--gray);
  line-height: 1; flex-shrink: 0; width: 48px;
  transition: var(--transition);
}
.process-step:hover .process-num { color: var(--orange); }
.process-step-title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.process-step p { font-size: .875rem; margin: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--light); }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-stars { color: #f5c518; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: .95rem; color: var(--text); font-style: italic; margin-bottom: 20px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  display: grid; place-items: center; font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: var(--navy); font-size: .9rem; }
.testimonial-loc  { font-size: .8rem; color: var(--text-muted); }

/* ============================================================
   REALISATIONS / GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-item {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,35,50,.85) 0%, transparent 60%);
  opacity: 0; transition: var(--transition); display: flex; align-items: flex-end; padding: 24px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-info { color: var(--white); }
.gallery-info h4 { font-size: 1rem; margin-bottom: 4px; }
.gallery-info span { font-size: .8rem; color: rgba(255,255,255,.7); }
.gallery-item.large { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; aspect-ratio: unset; min-height: 480px; }

/* Before / After */
.before-after {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3px; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 16/7;
}
.ba-panel { position: relative; overflow: hidden; }
.ba-panel img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.ba-panel:hover img { transform: scale(1.06); }
.ba-label {
  position: absolute; top: 16px; left: 16px;
  background: rgba(26,35,50,.75); backdrop-filter: blur(4px);
  color: var(--white); font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 6px 12px; border-radius: 20px;
}
.ba-label.after { background: var(--orange); left: auto; right: 16px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.team-card { text-align: center; }
.team-photo {
  width: 120px; height: 120px; border-radius: 50%;
  background: var(--gray); margin: 0 auto 20px;
  overflow: hidden; border: 4px solid var(--white);
  box-shadow: 0 4px 16px rgba(26,35,50,.12);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-name { color: var(--navy); font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: .85rem; color: var(--orange); font-weight: 600; margin-bottom: 10px; }
.team-bio { font-size: .85rem; }
.values-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.value-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow); border-left: 4px solid var(--orange);
  transition: var(--transition);
}
.value-card:hover { transform: translateX(4px); }
.value-icon { width: 44px; height: 44px; background: rgba(224,123,57,.1); border-radius: var(--radius); display: grid; place-items: center; margin-bottom: 16px; }
.value-icon svg { width: 22px; height: 22px; fill: var(--orange); }

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -50%; left: -20%;
  width: 500px; height: 500px; background: rgba(224,123,57,.08);
  border-radius: 50%; pointer-events: none;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,.7); margin-bottom: 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Certifications */
.cert-strip {
  background: var(--light);
  padding: 40px 0;
}
.cert-items { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.cert-item { display: flex; align-items: center; gap: 12px; color: var(--text-muted); font-size: .875rem; font-weight: 600; }
.cert-item svg { width: 32px; height: 32px; fill: var(--orange); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; align-items: start; }
.contact-info-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--gray); }
.contact-info-item:last-child { border-bottom: none; }
.contact-info-icon { width: 44px; height: 44px; background: rgba(224,123,57,.1); border-radius: var(--radius); display: grid; place-items: center; flex-shrink: 0; }
.contact-info-icon svg { width: 20px; height: 20px; fill: var(--orange); }
.contact-info-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); margin-bottom: 4px; }
.contact-info-value { color: var(--navy); font-weight: 600; font-size: .95rem; }
.form-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--navy); }
.form-control {
  padding: 12px 16px; border-radius: var(--radius);
  border: 2px solid var(--gray); font-family: inherit; font-size: .9rem;
  color: var(--text); background: var(--white); transition: var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(224,123,57,.12); }
.form-control::placeholder { color: #aab4c0; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7a8d' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 15px; font-size: 1rem; font-weight: 700; border-radius: var(--radius); background: var(--orange); color: var(--white); transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 10px; }
.form-submit:hover { background: var(--orange-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(224,123,57,.4); }
.form-success {
  display: none; text-align: center; padding: 48px 24px;
}
.form-success-icon {
  width: 72px; height: 72px; background: rgba(34,197,94,.1); border-radius: 50%;
  display: grid; place-items: center; margin: 0 auto 20px;
}
.form-success-icon svg { width: 36px; height: 36px; fill: #22c55e; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--navy); padding: 140px 0 72px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80') center/cover no-repeat;
  opacity: .1;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); font-size: clamp(2rem,4vw,3rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.1rem; max-width: 560px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.breadcrumb a { color: rgba(255,255,255,.6); font-size: .85rem; font-weight: 500; transition: var(--transition); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,.3); font-size: .85rem; }
.breadcrumb .current { color: var(--orange); font-size: .85rem; font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); color: rgba(255,255,255,.75); }
.footer-main { padding: 72px 0 48px; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand p { font-size: .875rem; line-height: 1.75; margin: 16px 0 24px; color: rgba(255,255,255,.55); }
.footer-socials { display: flex; gap: 12px; }
.footer-social {
  width: 36px; height: 36px; border-radius: var(--radius);
  background: rgba(255,255,255,.08); display: grid; place-items: center;
  transition: var(--transition);
}
.footer-social:hover { background: var(--orange); }
.footer-social svg { width: 16px; height: 16px; fill: rgba(255,255,255,.8); }
.footer-col h4 { color: var(--white); font-size: .9rem; font-weight: 700; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.55); transition: var(--transition); }
.footer-links a:hover { color: var(--orange); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: .875rem; color: rgba(255,255,255,.55); }
.footer-contact-item svg { width: 16px; height: 16px; fill: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0; display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: .8rem; color: rgba(255,255,255,.35); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--orange); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp { from { opacity:0; transform:translateY(32px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes slideLeft { from { opacity:0; transform:translateX(-32px); } to { opacity:1; transform:translateX(0); } }
@keyframes slideRight { from { opacity:0; transform:translateX(32px); } to { opacity:1; transform:translateX(0); } }

.animate { opacity: 0; }
.animate.fade-up  { animation: fadeUp .7s ease forwards; }
.animate.fade-in  { animation: fadeIn .7s ease forwards; }
.animate.slide-left  { animation: slideLeft .7s ease forwards; }
.animate.slide-right { animation: slideRight .7s ease forwards; }
.animate.delay-1 { animation-delay: .1s; }
.animate.delay-2 { animation-delay: .2s; }
.animate.delay-3 { animation-delay: .3s; }
.animate.delay-4 { animation-delay: .4s; }
.animate.delay-5 { animation-delay: .5s; }
.animate.delay-6 { animation-delay: .6s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.large { grid-column: span 1; }
  .gallery-item.tall { min-height: 280px; }
  .before-after { grid-template-columns: 1fr; aspect-ratio: unset; }
  .ba-panel { aspect-ratio: 16/9; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-badge { display: none; }
  .hero-stats { gap: 28px; }
  .cta-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 20px; }
  .form-card { padding: 24px; }
}

/* ============================================================
   SCROLL BAR & SELECTION
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }
::selection { background: rgba(224,123,57,.2); }
