/* ============================================================
   Norfolk Smart Property Renovations — Main Stylesheet
   Tailwind CDN + custom design tokens (SCSS-style organisation)
   ============================================================ */

/* --- Design tokens ---------------------------------------- */
:root {
  --blue-900: #0a3d62;
  --blue-700: #0d5a8e;
  --blue-500: #1a8fc4;
  --blue-400: #1fb8e8;
  --blue-100: #e8f6fc;
  --orange-500: #f47920;
  --orange-400: #f9943d;
  --orange-100: #fff3e8;
  --white: #ffffff;
  --grey-50: #f9fafb;
  --grey-100: #f3f4f6;
  --grey-600: #4b5563;
  --grey-800: #1f2937;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --shadow-card: 0 4px 24px rgba(10, 61, 98, 0.10);
  --shadow-strong: 0 8px 40px rgba(10, 61, 98, 0.18);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  color: var(--grey-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

/* --- Typography ------------------------------------------- */
.heading-xl {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.heading-lg {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
}
.heading-md {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
}
.text-balance { text-wrap: balance; }

/* --- Utility colours -------------------------------------- */
.text-blue  { color: var(--blue-500); }
.text-orange { color: var(--orange-500); }
.text-white { color: var(--white); }
.bg-blue-900 { background: var(--blue-900); }
.bg-blue-500 { background: var(--blue-500); }
.bg-orange   { background: var(--orange-500); }
.bg-grey     { background: var(--grey-50); }

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--orange-500);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--orange-400);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(244, 121, 32, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-blue {
  background: var(--blue-500);
  color: var(--white);
}
.btn-blue:hover {
  background: var(--blue-700);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(26, 143, 196, 0.4);
}

/* --- Section layout --------------------------------------- */
.section { padding: 5rem 1.5rem; }
.section--lg { padding: 7rem 1.5rem; }
.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: 0.75rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}
#site-nav.nav--scrolled {
  background: rgba(10, 61, 98, 0.97);
  backdrop-filter: blur(12px);
  padding: 0.75rem 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.nav-logo { height: 52px; width: auto; }
.nav-logo.nav--scrolled-logo { height: 40px; }
.nav-cta { display: flex; gap: 1rem; align-items: center; }
.nav-phone {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
}
.nav-phone:hover { color: var(--orange-400); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--blue-900);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(10,61,98,0.96) 0%, rgba(13,90,142,0.90) 50%, rgba(244,121,32,0.15) 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="g" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="1" cy="1" r="1" fill="rgba(255,255,255,0.04)"/></pattern></defs><rect width="100" height="100" fill="url(%23g)"/></svg>');
}
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}
.hero-shape-1 {
  width: 700px; height: 700px;
  background: var(--blue-400);
  top: -200px; right: -200px;
}
.hero-shape-2 {
  width: 400px; height: 400px;
  background: var(--orange-500);
  bottom: -100px; left: -100px;
}
.hero-shape-3 {
  width: 200px; height: 200px;
  background: var(--blue-400);
  top: 40%; left: 60%;
  opacity: 0.05;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 7rem 2rem 4rem;
  width: 100%;
}
.hero-text {}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(244, 121, 32, 0.15);
  border: 1px solid rgba(244, 121, 32, 0.4);
  color: var(--orange-400);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange-400);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 span { color: var(--orange-400); }
.hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.trust-icon {
  width: 18px; height: 18px;
  color: var(--orange-400);
  flex-shrink: 0;
}

/* hero right panel */
.hero-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}
.hero-card-title {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-card-title::before {
  content: '';
  width: 4px; height: 20px;
  background: var(--orange-500);
  border-radius: 2px;
}
.service-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.6rem;
  margin-bottom: 0.6rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
  cursor: default;
}
.service-pill:hover {
  background: rgba(244,121,32,0.15);
  border-color: rgba(244,121,32,0.3);
  transform: translateX(4px);
}
.service-pill-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}
.service-pill-name {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
}

/* hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background: var(--grey-50); }
.services-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(10,61,98,0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--orange-500));
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}
.service-card:hover::before { opacity: 1; }
.service-card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.service-card:hover .service-card-icon {
  background: linear-gradient(135deg, var(--blue-500), var(--orange-500));
}
.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 0.6rem;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--grey-600);
  line-height: 1.65;
}
.service-card-arrow {
  margin-top: 1.25rem;
  color: var(--orange-500);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  opacity: 0;
  transition: var(--transition);
  transform: translateX(-8px);
}
.service-card:hover .service-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 100%);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="h" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="60" height="60" fill="url(%23h)"/></svg>');
}
.why-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-text .section-label { color: var(--orange-400); }
.why-text h2 { color: var(--white); margin-bottom: 1.25rem; }
.why-desc {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.75;
}
.why-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 0.75rem;
  transition: var(--transition);
}
.why-feature:hover {
  background: rgba(255,255,255,0.1);
  transform: translateX(4px);
}
.why-feature-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.why-feature-body h4 {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}
.why-feature-body p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  line-height: 1.55;
}

/* stats panel */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.stat-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.stat-card:hover {
  background: rgba(255,255,255,0.13);
  transform: translateY(-4px);
}
.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--orange-400);
  line-height: 1;
  margin-bottom: 0.4rem;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.4;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-section { background: var(--white); }
.process-header { text-align: center; margin-bottom: 3.5rem; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue-500), var(--orange-500));
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1rem;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(26,143,196,0.35);
}
.process-step:last-child .step-num {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
  box-shadow: 0 4px 16px rgba(244,121,32,0.35);
}
.process-step h4 {
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}
.process-step p {
  color: var(--grey-600);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--grey-50); }
.testimonials-header { text-align: center; margin-bottom: 3rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(10,61,98,0.06);
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}
.stars {
  color: var(--orange-500);
  font-size: 1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}
.testimonial-text {
  color: var(--grey-600);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-500), var(--orange-500));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.author-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--blue-900);
}
.author-info span {
  font-size: 0.8rem;
  color: var(--grey-600);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--orange-500) 0%, #e05e00 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="2" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="80" height="80" fill="url(%23dots)"/></svg>');
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-text h2 {
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.cta-text p { color: rgba(255,255,255,0.85); font-size: 1rem; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-white {
  background: var(--white);
  color: var(--orange-500);
  border-color: var(--white);
  font-weight: 800;
}
.btn-white:hover {
  background: rgba(255,255,255,0.92);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { color: var(--blue-900); margin-bottom: 1rem; }
.contact-info p {
  color: var(--grey-600);
  margin-bottom: 2rem;
  line-height: 1.75;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--grey-50);
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(10,61,98,0.06);
  transition: var(--transition);
  text-decoration: none;
}
.contact-item:hover {
  background: var(--blue-100);
  border-color: var(--blue-500);
}
.contact-item-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--blue-900);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.contact-item-body strong {
  display: block;
  font-size: 0.8rem;
  color: var(--grey-600);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-item-body span {
  font-size: 0.95rem;
  color: var(--blue-900);
  font-weight: 600;
}
.contact-benefits {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0 1.75rem;
}
.contact-benefit {
  padding: 0.9rem 1rem;
  border-radius: 0.8rem;
  background: rgba(26,143,196,0.08);
  color: var(--blue-900);
  font-weight: 600;
  border: 1px solid rgba(26,143,196,0.12);
}

/* form */
.contact-form {
  position: relative;
  background: var(--grey-50);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: 1px solid rgba(10,61,98,0.07);
}
.form-card-header {
  margin-bottom: 1.5rem;
}
.form-card-header h3 {
  font-size: 1.55rem;
  color: var(--blue-900);
  margin-bottom: 0.45rem;
}
.form-card-header p {
  color: var(--grey-600);
  line-height: 1.7;
}
.form-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255,125,41,0.12);
  color: var(--orange-600);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-900);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(10,61,98,0.12);
  border-radius: 0.6rem;
  font-size: 0.95rem;
  color: var(--grey-800);
  background: var(--white);
  transition: var(--transition);
  font-family: inherit;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(26,143,196,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note {
  font-size: 0.82rem;
  line-height: 1.7;
  color: var(--grey-600);
  margin: 0 0 1rem;
}
.form-alert {
  border-radius: 0.8rem;
  padding: 0.9rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.92rem;
  font-weight: 600;
}
.form-alert--success {
  background: rgba(40,167,69,0.12);
  color: #156f2b;
  border: 1px solid rgba(40,167,69,0.18);
}
.form-alert--error {
  background: rgba(220,53,69,0.1);
  color: #8a2030;
  border: 1px solid rgba(220,53,69,0.16);
}
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-submit { width: 100%; justify-content: center; font-size: 1rem; padding: 1rem 2rem; border-radius: 0.6rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--blue-900);
  color: rgba(255,255,255,0.65);
  padding: 4rem 2rem 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand {}
.footer-logo { height: 56px; margin-bottom: 1.25rem; }
.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}
.footer-col h4 {
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--orange-500);
  display: inline-block;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-links a:hover { color: var(--orange-400); }
.footer-links a::before {
  content: '→';
  color: var(--orange-500);
  font-size: 0.75rem;
  opacity: 0;
  transition: var(--transition);
}
.footer-links a:hover::before { opacity: 1; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; }
.footer-bottom a { color: var(--orange-400); text-decoration: none; }

/* ============================================================
   COMING SOON MODAL
   ============================================================ */
#coming-soon-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(10, 30, 50, 0.75);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
#coming-soon-modal.modal--visible {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 560px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(10,30,50,0.35);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
#coming-soon-modal.modal--visible .modal-box {
  transform: translateY(0) scale(1);
}
.modal-header {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  padding: 2rem 2.5rem 1.75rem;
  position: relative;
  text-align: center;
}
.modal-logo { height: 60px; margin: 0 auto 1.25rem; }
.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(244,121,32,0.2);
  border: 1px solid rgba(244,121,32,0.5);
  color: var(--orange-400);
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.modal-badge-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--orange-400);
  animation: pulse 1.8s ease-in-out infinite;
}
.modal-header h2 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}
.modal-header p {
  color: rgba(255,255,255,0.7);
  font-size: 0.88rem;
}
.modal-close-btn {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  line-height: 1;
}
.modal-close-btn:hover {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}
.modal-body {
  padding: 2rem 2.5rem 2.5rem;
}
.modal-progress-wrap {
  margin-bottom: 1.5rem;
}
.modal-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--grey-600);
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.modal-progress-bar {
  height: 8px;
  background: var(--grey-100);
  border-radius: 50px;
  overflow: hidden;
}
.modal-progress-fill {
  height: 100%;
  width: 78%;
  background: linear-gradient(90deg, var(--blue-500), var(--orange-500));
  border-radius: 50px;
  animation: progressFill 1.2s ease-out 0.6s both;
}
@keyframes progressFill {
  from { width: 0; }
  to { width: 78%; }
}
.modal-body p {
  color: var(--grey-600);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: center;
}
.modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.modal-actions .btn { justify-content: center; border-radius: 0.6rem; padding: 0.75rem 1rem; }

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-card { display: none; }
  .why-inner { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  #site-nav { padding: 1rem 1.25rem; }
  .nav-phone { display: none; }
  .section, .section--lg { padding: 4rem 1.25rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 2rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .modal-actions { grid-template-columns: 1fr; }
  .modal-body, .modal-header { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
}
