/* ============================================================
   DADA BUSINESS CANOPY (PVT) LTD
   Main Stylesheet — css/style.css
   dadacanopy.com
   ============================================================ */

/* ── RESET & ROOT ────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --gold-dark:   #8B6914;
  --deep:        #0A0A08;
  --forest:      #1A2E1A;
  --forest-mid:  #2D4A2D;
  --forest-lt:   #4A7C4A;
  --white:       #FFFFFF;
  --muted:       #8A8A7A;
  --text-body:   rgba(255,255,255,0.6);
  --border:      rgba(201,168,76,0.15);
  --section-gap: 9rem;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--deep);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--deep); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 5rem;
}

/* ── LOADER ──────────────────────────────────────────────── */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--deep);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }

.loader-logo svg { width: 80px; height: 80px; animation: loaderSpin 2s linear infinite; }
@keyframes loaderSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.loader-bar {
  width: 200px; height: 2px;
  background: rgba(201,168,76,0.15);
  border-radius: 1px; overflow: hidden;
}
.loader-fill {
  height: 100%; width: 0;
  background: var(--gold);
  animation: loaderFill 1.6s ease forwards;
}
@keyframes loaderFill { to { width: 100%; } }

/* ── NAVBAR ──────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.1rem 5rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10,10,8,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s ease;
}
nav.scrolled {
  padding: 0.8rem 5rem;
  background: rgba(10,10,8,0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-icon { width: 42px; height: 42px; flex-shrink: 0; }
.nav-logo-icon img { width: 100%; height: 100%; }
.nav-brand { display: flex; flex-direction: column; line-height: 1; }
.brand-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; font-weight: 700;
  color: var(--gold); letter-spacing: 2.5px;
}
.brand-sub {
  font-size: 0.45rem; font-weight: 400;
  letter-spacing: 3px; color: var(--muted);
  text-transform: uppercase; margin-top: 3px;
}

.nav-links { display: flex; gap: 2.5rem; }
.nav-link {
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  position: relative; transition: color 0.3s;
  padding-bottom: 2px;
}
.nav-link::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.3s;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.btn-nav-cta {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--deep); background: var(--gold);
  padding: 0.6rem 1.6rem;
  border: 1px solid var(--gold);
  transition: all 0.3s;
}
.btn-nav-cta:hover { background: transparent; color: var(--gold); }

.hamburger {
  display: none; flex-direction: column;
  gap: 5px; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--gold); transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(10,10,8,0.98);
  display: flex; align-items: center; justify-content: center;
  transform: translateX(100%); transition: transform 0.4s ease;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { text-align: center; }
.mobile-menu li { margin: 1.5rem 0; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 300;
  color: var(--white); letter-spacing: 2px;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ── REVEAL ANIMATIONS ───────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: 0.18s; }

/* ── SECTION COMMON ──────────────────────────────────────── */
.section { padding: var(--section-gap) 0; }

.section-header { margin-bottom: 5rem; }

.section-label {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.section-label::before {
  content: ''; width: 26px; height: 1px; background: var(--gold); flex-shrink: 0;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 3.5vw, 4.2rem);
  font-weight: 300; line-height: 1.1;
  color: var(--white);
}
.section-title em { font-style: italic; color: var(--gold); }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center;
  overflow: hidden; background: var(--deep);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 50%, rgba(201,168,76,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 10% 90%, rgba(26,46,26,0.9) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-orb {
  position: absolute; right: -60px; top: 50%; transform: translateY(-50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2; width: 100%;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  align-items: center; gap: 6rem;
  padding-top: 6rem; padding-bottom: 4rem;
}

.eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.8rem;
}
.eyebrow-line { width: 30px; height: 1px; background: var(--gold); flex-shrink: 0; }

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 5vw, 6rem);
  font-weight: 300; line-height: 1.04;
  color: var(--white); margin-bottom: 1.4rem;
}
.hero-title em   { font-style: italic; color: var(--gold); }
.hero-title strong { font-weight: 700; display: block; }

.hero-sub {
  font-size: 0.85rem; line-height: 2;
  color: var(--text-body); font-weight: 300;
  max-width: 500px; margin-bottom: 3rem;
}

.hero-actions { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }

.btn-primary {
  background: var(--gold); color: var(--deep);
  padding: 1.1rem 2.8rem;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  transition: all 0.3s; display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(201,168,76,0.25); }

.btn-ghost {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.55); transition: color 0.3s;
}
.btn-ghost:hover { color: var(--gold); }
.ghost-line { width: 30px; height: 1px; background: currentColor; transition: width 0.3s; flex-shrink: 0; }
.btn-ghost:hover .ghost-line { width: 50px; }

/* Hero right — emblem */
.hero-right { display: flex; justify-content: center; }
.hero-emblem {
  position: relative; width: 460px; height: 460px;
  display: flex; align-items: center; justify-content: center;
}
.emblem-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.18);
  animation: ringPulse 4s ease-in-out infinite;
}
.r1 { inset: 0; }
.r2 { inset: 36px; animation-delay: 0.6s; }
.r3 { inset: 72px; border-style: dashed; border-color: rgba(201,168,76,0.1); animation-delay: 1.2s; }
.emblem-center {
  position: absolute; inset: 100px;
  border-radius: 50%;
  background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.emblem-img { width: 80%; height: 80%; object-fit: contain; }
@keyframes ringPulse {
  0%,100% { transform: scale(1);     opacity: 0.5; }
  50%      { transform: scale(1.025); opacity: 1; }
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0.45; z-index: 2;
}
.hero-scroll-hint span { font-size: 0.58rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollAnim 1.8s ease-in-out infinite;
}
@keyframes scrollAnim { 0%,100% { opacity: 1; } 50% { opacity: 0.2; } }

/* ── STATS STRIP ─────────────────────────────────────────── */
.stats-strip {
  background: var(--forest);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 3.5rem 0;
}
.stats-inner {
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat-item {
  text-align: center; padding: 1.5rem 2rem;
  border-right: 1px solid rgba(201,168,76,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.8rem; font-weight: 700;
  color: var(--gold); line-height: 1; display: inline-block;
}
.stat-suffix {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700; color: var(--gold);
}
.stat-label {
  display: block; margin-top: 0.5rem;
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.42);
}

/* ── ABOUT ───────────────────────────────────────────────── */
.about { background: var(--deep); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 7rem; align-items: center;
}
.about-visual { position: relative; }
.about-frame {
  aspect-ratio: 4/5; background: var(--forest-mid);
  position: relative; overflow: hidden;
}
.about-frame::before {
  content: ''; position: absolute;
  top: 22px; left: 22px; right: -22px; bottom: -22px;
  border: 1px solid rgba(201,168,76,0.28); z-index: -1;
}
.about-frame-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
  padding: 3rem;
}
.about-logo-large { width: 70%; opacity: 0.85; }
.about-badge {
  position: absolute; bottom: 32px; right: -32px;
  background: var(--gold); color: var(--deep);
  padding: 1.6rem 2rem; text-align: center;
}
.about-badge strong {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 700; line-height: 1;
}
.about-badge span { font-size: 0.58rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; }

.about-text p {
  font-size: 0.87rem; line-height: 2.05;
  color: var(--text-body); font-weight: 300; margin-bottom: 1.5rem;
}
.about-text p strong { color: var(--gold); font-weight: 600; }
.gold { color: var(--gold); }

.about-pillars {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-top: 2.5rem;
}
.pillar {
  background: rgba(201,168,76,0.04);
  border: 1px solid var(--border);
  padding: 1.4rem; transition: all 0.3s;
}
.pillar:hover { background: rgba(201,168,76,0.09); border-color: rgba(201,168,76,0.3); transform: translateY(-2px); }
.pillar-icon { font-size: 1.5rem; margin-bottom: 0.6rem; }
.pillar-title {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.4rem;
}
.pillar-desc { font-size: 0.74rem; color: rgba(255,255,255,0.46); line-height: 1.7; margin: 0; }

/* ── SERVICES ────────────────────────────────────────────── */
.services { background: rgba(26,46,26,0.2); }
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5px; background: rgba(201,168,76,0.08);
}
.service-card {
  background: var(--deep);
  padding: 3.5rem 2.8rem;
  position: relative; overflow: hidden;
  transition: background 0.4s, transform 0.4s;
}
.service-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--gold);
  transform: scaleX(0); transition: transform 0.4s;
  transform-origin: left;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { background: rgba(201,168,76,0.05); transform: translateY(-4px); }

.service-num {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: 5.5rem; font-weight: 700;
  color: rgba(201,168,76,0.06); line-height: 1;
  margin-bottom: -1.2rem;
}
.service-icon {
  width: 64px; height: 64px; position: relative; z-index: 1;
  border: 1px solid rgba(201,168,76,0.18);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.6rem;
}
.service-icon svg { width: 34px; height: 34px; }
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem; font-weight: 600;
  color: var(--white); margin-bottom: 1rem; line-height: 1.2;
}
.service-card p {
  font-size: 0.78rem; line-height: 1.95;
  color: rgba(255,255,255,0.48); font-weight: 300; margin: 0;
}
.service-tag {
  display: inline-block; margin-top: 1.6rem;
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(201,168,76,0.5); padding-bottom: 3px;
}

/* ── PROCESS ─────────────────────────────────────────────── */
.process { background: var(--deep); }
.process-track {
  position: relative; margin-top: 5rem;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem;
}
.process-line {
  position: absolute; top: 28px; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  pointer-events: none;
}
.process-step { text-align: center; position: relative; }
.step-circle {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.8rem; background: var(--deep);
  position: relative; z-index: 1;
  transition: background 0.3s;
}
.process-step:hover .step-circle { background: rgba(201,168,76,0.1); }
.step-circle span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 700; color: var(--gold);
}
.step-content h4 {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--white); margin-bottom: 0.8rem;
}
.step-content p {
  font-size: 0.74rem; line-height: 1.85;
  color: rgba(255,255,255,0.42); font-weight: 300; margin: 0;
}

/* ── WHY US ──────────────────────────────────────────────── */
.why { background: var(--forest); position: relative; overflow: hidden; }
.why-bg-text {
  position: absolute; right: -2rem; top: 50%; transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 20rem; font-weight: 700;
  color: rgba(201,168,76,0.025); pointer-events: none;
  white-space: nowrap; line-height: 1;
}
.why-grid {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 7rem; align-items: start;
}
.why-left { position: sticky; top: 120px; }
.why-quote {
  margin-top: 2.5rem; padding: 2rem;
  background: rgba(201,168,76,0.07);
  border-left: 2px solid var(--gold);
}
.why-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-style: italic; font-weight: 300;
  color: var(--white); line-height: 1.65; margin: 0;
}
.why-quote cite {
  display: block; margin-top: 1rem;
  font-size: 0.6rem; font-style: normal;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold);
}

.trust-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; }
.badge {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--gold);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 0.35rem 0.8rem;
  background: rgba(201,168,76,0.05);
}

.why-features { display: flex; flex-direction: column; }
.why-feature {
  display: grid; grid-template-columns: 52px 1fr;
  gap: 1.6rem; align-items: start;
  padding: 2rem 0; border-bottom: 1px solid rgba(201,168,76,0.1);
  transition: padding-left 0.3s;
}
.why-feature:hover { padding-left: 0.6rem; }
.feature-icon {
  width: 52px; height: 52px; flex-shrink: 0; margin-top: 2px;
  background: rgba(201,168,76,0.07);
  border: 1px solid rgba(201,168,76,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.why-feature h4 {
  font-size: 0.76rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.5rem;
}
.why-feature p {
  font-size: 0.76rem; line-height: 1.85;
  color: rgba(255,255,255,0.48); font-weight: 300; margin: 0;
}

/* ── CONTACT ─────────────────────────────────────────────── */
.contact {
  background: linear-gradient(135deg, var(--forest) 0%, var(--deep) 60%);
  position: relative; overflow: hidden;
}
.contact::after {
  content: ''; position: absolute;
  width: 700px; height: 700px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.04);
  right: -200px; bottom: -200px; pointer-events: none;
}

.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem;
}
.contact-info p {
  font-size: 0.87rem; line-height: 2; color: var(--text-body);
  font-weight: 300; margin-bottom: 2.5rem;
}
.contact-item {
  display: flex; gap: 1.2rem; align-items: flex-start;
  margin-bottom: 1.6rem;
}
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0; margin-top: 2px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.contact-item small {
  display: block; font-size: 0.58rem;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 4px;
}
.contact-item span { font-size: 0.84rem; color: rgba(255,255,255,0.68); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block; font-size: 0.6rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.36); margin-bottom: 0.5rem;
}
.req { color: var(--gold); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  color: var(--white);
  padding: 0.95rem 1.2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem; outline: none;
  transition: border-color 0.3s, background 0.3s;
  appearance: none; -webkit-appearance: none;
  border-radius: 0;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.22); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(201,168,76,0.55);
  background: rgba(255,255,255,0.06);
}
.form-group input.error,
.form-group textarea.error { border-color: rgba(220,50,50,0.7); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select { cursor: pointer; }
.form-group select option { background: #1a2e1a; color: var(--white); }

.field-error { display: block; font-size: 0.64rem; color: #e05555; margin-top: 4px; min-height: 16px; }

.btn-submit {
  width: 100%; margin-top: 0.5rem;
  background: var(--gold); color: var(--deep);
  padding: 1.15rem 3rem;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all 0.3s; font-family: 'Montserrat', sans-serif;
}
.btn-submit:hover:not(:disabled) { background: var(--gold-light); transform: translateY(-2px); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.form-message {
  padding: 1rem 1.5rem; margin-bottom: 1.5rem;
  font-size: 0.82rem; font-weight: 500; border-radius: 0;
}
.form-message.success { background: rgba(74,124,74,0.2); border: 1px solid rgba(74,124,74,0.4); color: #90d490; }
.form-message.error   { background: rgba(180,50,50,0.15); border: 1px solid rgba(180,50,50,0.35); color: #e08080; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: rgba(0,0,0,0.85);
  border-top: 1px solid rgba(201,168,76,0.12);
}
.footer-top {
  padding: 5rem 5rem 4rem;
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 4rem;
}
.footer-logo { width: 60px; height: 60px; margin-bottom: 1rem; opacity: 0.8; }
.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1;
}
.footer-brand-sub {
  font-size: 0.56rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--muted); margin-top: 4px; margin-bottom: 1.5rem;
}
.footer-desc {
  font-size: 0.75rem; line-height: 2;
  color: rgba(255,255,255,0.28); font-weight: 300; max-width: 300px;
}
.footer-col h5 {
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col ul a {
  font-size: 0.75rem; color: rgba(255,255,255,0.36);
  transition: color 0.3s; letter-spacing: 0.3px;
}
.footer-col ul a:hover { color: var(--gold); }

.footer-bottom {
  padding: 1.5rem 5rem;
  border-top: 1px solid rgba(255,255,255,0.055);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom span { font-size: 0.64rem; color: rgba(255,255,255,0.2); letter-spacing: 0.3px; }
.footer-domain { color: var(--gold) !important; letter-spacing: 1.5px; }

/* ── BACK TO TOP ─────────────────────────────────────────── */
.back-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
  width: 48px; height: 48px;
  background: var(--gold); color: var(--deep);
  font-size: 1.3rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, transform 0.3s; transform: translateY(12px);
}
.back-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.back-top:hover { background: var(--gold-light); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1200px) {
  .container { padding: 0 3.5rem; }
  nav, nav.scrolled { padding-left: 3.5rem; padding-right: 3.5rem; }
  .footer-top, .footer-bottom { padding-left: 3.5rem; padding-right: 3.5rem; }
}

@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 0; text-align: center; }
  .hero-right { display: none; }
  .eyebrow { justify-content: center; }
  .hero-sub { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; gap: 4rem; }
  .about-badge { right: 0; }
  .why-grid { grid-template-columns: 1fr; gap: 4rem; }
  .why-left { position: static; }
  .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-track { grid-template-columns: repeat(2, 1fr); }
  .process-line { display: none; }
}

@media (max-width: 900px) {
  nav { padding: 1rem 2rem; }
  nav.scrolled { padding: 0.8rem 2rem; }
  .nav-links, .btn-nav-cta { display: none; }
  .hamburger { display: flex; }
  .container { padding: 0 2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; padding: 3rem 2rem; }
  .footer-bottom { padding: 1.2rem 2rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.1); }
  .stat-item:last-child { border-bottom: none; }
  :root { --section-gap: 6rem; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: 1fr; }
  .about-pillars { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-title { font-size: 2.8rem; }
  :root { --section-gap: 5rem; }
}
