/* =============================================
   VALLEY ENERGY CONSULTANTS — styles.css
   Brand: Solar Blue #1B6BB0 | Gold #F5A623 | Black #0A0A0A
   ============================================= */

/* ===== CSS VARIABLES ===== */
:root {
  --blue:       #1B6BB0;
  --blue-dark:  #124d82;
  --blue-light: #2a8fd4;
  --gold:       #F5A623;
  --gold-dark:  #d4891a;
  --gold-light: #ffc04d;
  --black:      #080808;
  --dark:       #0f0f0f;
  --dark-2:     #161616;
  --dark-3:     #1e1e1e;
  --gray:       #2e2e2e;
  --gray-mid:   #555;
  --gray-light: #999;
  --white:      #ffffff;
  --off-white:  #f4f2ee;

  --font-display: 'Bebas Neue', sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --radius:   8px;
  --radius-lg: 16px;
  --shadow:   0 4px 24px rgba(0,0,0,0.35);
  --shadow-gold: 0 0 40px rgba(245,166,35,0.25);

  --nav-h: 88px;
  --section-pad: 100px;
  --container: 1200px;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== CONTAINER ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(245,166,35,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245,166,35,0.55);
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245,166,35,0.08);
}

.btn-lg { padding: 18px 48px; font-size: 1.1rem; }
.btn-full { width: 100%; }

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-eyebrow {
  font-family: var(--font-cond);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-eyebrow.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-light);
  font-weight: 300;
  line-height: 1.7;
}
.section-sub.light { color: rgba(255,255,255,0.65); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.navbar.scrolled {
  background: rgba(8,8,8,0.96);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(245,166,35,0.15);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img  { height: 150px; width: auto; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-family: var(--font-cond);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 8px 12px;
  border-radius: 4px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--black) !important;
  padding: 10px 20px !important;
  border-radius: var(--radius) !important;
  font-weight: 700 !important;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245,166,35,0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(8,8,8,0.98);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: 24px;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(245,166,35,0.2);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-cond);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  padding: 14px 16px;
  border-radius: var(--radius);
  transition: all 0.2s;
}
.mobile-menu a:hover { background: rgba(245,166,35,0.12); color: var(--gold); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--nav-h) 24px 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--black);
  overflow: hidden;
}

/* Sun orb */
.sun-orb {
  position: absolute;
  top: -80px;
  right: -40px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%,
    rgba(255, 200, 60, 0.55) 0%,
    rgba(245, 166, 35, 0.3) 35%,
    rgba(27, 107, 176, 0.12) 65%,
    transparent 100%
  );
  animation: pulse-orb 6s ease-in-out infinite;
}

@keyframes pulse-orb {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.06); opacity: 0.85; }
}

/* Rays */
.hero-rays {
  position: absolute;
  top: 80px;
  right: 100px;
  width: 400px;
  height: 400px;
}
.ray {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 260px;
  background: linear-gradient(to bottom, rgba(245,166,35,0.4), transparent);
  transform-origin: top center;
  border-radius: 2px;
  animation: spin-rays 18s linear infinite;
}
.ray:nth-child(1) { transform: rotate(0deg) translateX(-50%); }
.ray:nth-child(2) { transform: rotate(45deg) translateX(-50%); }
.ray:nth-child(3) { transform: rotate(90deg) translateX(-50%); }
.ray:nth-child(4) { transform: rotate(135deg) translateX(-50%); }
.ray:nth-child(5) { transform: rotate(180deg) translateX(-50%); }
.ray:nth-child(6) { transform: rotate(225deg) translateX(-50%); }
.ray:nth-child(7) { transform: rotate(270deg) translateX(-50%); }
.ray:nth-child(8) { transform: rotate(315deg) translateX(-50%); }

@keyframes spin-rays {
  from { transform: rotate(var(--r, 0deg)) translateX(-50%); }
  to   { transform: rotate(calc(var(--r, 0deg) + 360deg)) translateX(-50%); }
}

/* Grid overlay */
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27,107,176,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27,107,176,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  padding: 80px 0;
}

.hero-eyebrow {
  font-family: var(--font-cond);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  animation: fade-up 0.8s ease 0.1s both;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  letter-spacing: 0.01em;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 28px;
  animation: fade-up 0.8s ease 0.2s both;
}

.headline-accent {
  color: var(--gold);
  text-shadow: 0 0 60px rgba(245,166,35,0.5);
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  font-weight: 300;
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 40px;
  animation: fade-up 0.8s ease 0.35s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fade-up 0.8s ease 0.45s both;
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: fade-up 0.8s ease 0.55s both;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--white);
  line-height: 1;
}
.stat-plus { color: var(--gold); }
.stat-label {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,0.15);
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fade-up 1s ease 1s both;
}
.scroll-hint span {
  font-family: var(--font-cond);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-light);
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-drop 2s ease-in-out infinite;
}
@keyframes scroll-drop {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--dark-2);
  border-top: 1px solid rgba(245,166,35,0.15);
  border-bottom: 1px solid rgba(245,166,35,0.15);
  padding: 20px 0;
}

.trust-bar .container {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-label {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-mid);
  flex-shrink: 0;
}

.trust-items {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-item {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.05em;
}

.trust-sep {
  color: var(--gray-mid);
  font-size: 1.2rem;
}

/* ===== SERVICES ===== */
.services {
  padding: var(--section-pad) 0;
  background: var(--dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all 0.35s ease;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,107,176,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}

.service-card:hover {
  border-color: rgba(245,166,35,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(245,166,35,0.1);
}
.service-card:hover::before { opacity: 1; }

.service-card--featured {
  border-color: rgba(245,166,35,0.35);
  background: linear-gradient(145deg, rgba(27,107,176,0.12) 0%, var(--dark-2) 60%);
}
.service-card--featured::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-family: var(--font-cond);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.service-icon {
  width: 52px;
  height: 52px;
  color: var(--gold);
  margin-bottom: 20px;
}

.service-title {
  font-family: var(--font-cond);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 12px;
}

.service-desc {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}
.service-features li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  padding-left: 16px;
  position: relative;
}
.service-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue-light);
}

.service-link {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.2s;
}
.service-link:hover { color: var(--gold-light); }

/* ===== WHY US ===== */
.why-us {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.why-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(27,107,176,0.12) 0%, transparent 60%),
    var(--dark-3);
}

.why-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-text .section-eyebrow,
.why-text .section-title,
.why-text .section-sub {
  text-align: left;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
}

.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-point h3 {
  font-family: var(--font-cond);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 4px;
}

.why-point p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* Why visual */
.why-visual { display: flex; justify-content: center; }

.why-card-stack {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-big-stat {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 16px 48px rgba(27,107,176,0.35);
}

.big-num {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold-light);
  line-height: 1;
  text-shadow: var(--shadow-gold);
}
.big-label {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
}

.why-mini-stat {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
}

.mini-num {
  font-family: var(--font-cond);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}

/* ===== PROCESS ===== */
.process {
  padding: var(--section-pad) 0;
  background: var(--dark);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 20px;
}

.process-step {
  padding: 32px 28px;
  position: relative;
}

.step-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(245,166,35,0.15);
  line-height: 1;
  margin-bottom: 12px;
  transition: color 0.3s;
}
.process-step:hover .step-num { color: rgba(245,166,35,0.4); }

.step-connector {
  position: absolute;
  top: 52px;
  right: 0;
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,166,35,0.3));
}
.step-connector.last { display: none; }

.step-title {
  font-family: var(--font-cond);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.testimonials-track {
  position: relative;
  min-height: 240px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.5s ease;
  pointer-events: none;
}
.testimonial-card.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

.stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 760px;
}

.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.testimonial-card footer strong {
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
}
.testimonial-card footer span {
  font-size: 0.82rem;
  color: var(--gray-light);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.t-prev, .t-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.t-prev:hover, .t-next:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245,166,35,0.08);
}

.t-dots {
  display: flex;
  gap: 8px;
}
.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}
.t-dot.active {
  background: var(--gold);
  transform: scale(1.25);
}

/* ===== CTA BAND ===== */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.cta-band-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, var(--dark-2) 100%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  margin: 0 auto 36px;
  font-weight: 300;
}

/* ===== CONTACT ===== */
.contact {
  padding: var(--section-pad) 0;
  background: var(--dark);
}

.contact-inner {
/*OLD WITH CONTACT FORM ON RIGHT  
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  */
  display: grid;
  justify-content: center;
  align-items: start;
}

.contact-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin: 16px 0 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }

.contact-detail > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-detail strong {
  font-family: var(--font-cond);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-detail span,
.contact-detail a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.contact-detail a:hover { color: var(--gold); }

/* Form */
.contact-form-wrap {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-cond);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-3);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color 0.2s;
  width: 100%;
  resize: vertical;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-mid); }
.form-group select { cursor: pointer; color: rgba(255,255,255,0.6); }
.form-group select option { background: var(--dark-3); color: var(--white); }

.form-note {
  font-size: 0.78rem;
  color: var(--gray-mid);
  text-align: center;
}

.form-success {
  background: rgba(27,107,176,0.15);
  border: 1px solid rgba(27,107,176,0.4);
  border-radius: var(--radius);
  padding: 16px;
  font-size: 0.9rem;
  color: var(--gold-light);
  text-align: center;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 64px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 64px;
  padding-bottom: 48px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.75;
  margin-top: 16px;
  max-width: 280px;
}

.footer-logo { height: 150px; width: auto; }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: all 0.2s;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245,166,35,0.08);
}
.footer-social svg { width: 16px; height: 16px; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col { display: flex; flex-direction: column; gap: 10px; }

.footer-col h4 {
  font-family: var(--font-cond);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.6); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(245,166,35,0.4);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(245,166,35,0.5);
}

/* ===== ANIMATIONS ===== */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-aos].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .why-visual { order: -1; }
  .why-card-stack { max-width: 100%; flex-direction: row; flex-wrap: wrap; }
  .why-big-stat { flex: 1 1 200px; }
  .why-mini-stat { flex: 1 1 180px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .step-connector { display: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --section-pad: 56px; --nav-h: 76px; }

  .logo-img { height: 150px; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-headline { font-size: clamp(2.8rem, 12vw, 5rem); }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 1.9rem; }

  .trust-bar .container { flex-direction: column; align-items: flex-start; gap: 12px; }
  .trust-items { gap: 10px; }
  .trust-sep { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .section-header { margin-bottom: 40px; }

  .process-steps { grid-template-columns: 1fr; }

  .testimonial-card { padding: 28px 24px; }
  .testimonial-card p { font-size: 0.95rem; }

  .contact-form-wrap { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-links { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 60px; height: 1px; }
  .footer-links { grid-template-columns: 1fr; }
}
