﻿/* =====================================================
  ADYAN CONSTRUCTION CO LLC
  Custom 2026 Corporate Website Theme
  ===================================================== */



/* ===== CSS VARIABLES ===== */
:root {
  --navy:       #0d0d0d;
  --navy-light: #0d0d0d;
  --navy-mid:   #0d0d0d;
  --charcoal:   #0d0d0d;
  --gold:       #d62828;
  --gold-light: #d62828;
  --red-deep:   #8b0000;
  --gold-pale:  #ffffff;
  --white:      #FFFFFF;
  --off-white:  #ffffff;
  --light-bg:   #ffffff;
  --text-dark:  #0d0d0d;
  --text-mid:   #0d0d0d;
  --text-light: #d62828;
  --border:     rgba(214,40,40,0.18);
  --shadow-sm:  0 2px 12px rgba(13,13,13,0.08);
  --shadow-md:  0 8px 32px rgba(13,13,13,0.12);
  --shadow-lg:  0 20px 60px rgba(13,13,13,0.18);
  --shadow-xl:  0 32px 80px rgba(13,13,13,0.25);
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

body.loading { overflow: hidden; }

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

/* ===== PAGE LOADER ===== */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.loader-shield {
  width: 350px;
  height: 75px;
  background: #ffffff;
  border-radius: 10px;
  padding: 6px 10px;
  animation: shieldPulse 1.4s ease-in-out infinite;
}

.loader-shield img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.loader-text { display: none; }

@keyframes shieldPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: 0.7; }
}

@keyframes fadeInOut {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ===== CUSTOM CURSOR ===== */
#cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

#cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(214,40,40,0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}

body:hover #cursor-dot, body:hover #cursor-ring { opacity: 1; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(13,13,13,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 2px 40px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.logo-shield { width: 350px; height: 75px; flex-shrink: 0; }
.logo-shield img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.logo-shield.small { width: 350px; height: 75px; }

.logo-shield,
.logo-shield.small {
  background: #ffffff;
  border-radius: 10px;
  padding: 6px 10px;
}

.logo-text {
  display: none;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.12em;
}

.logo-sub {
  font-size: 0.62rem;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 2px;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  letter-spacing: 0.02em;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-link.nav-cta {
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-left: 8px;
}

.nav-link.nav-cta::after { display: none; }
.nav-link.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(214,40,40,0.35); }

/* Progress bar */
.nav-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width: 0%;
  transition: width 0.1s linear;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== LAYOUT HELPERS ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: 120px 0; }
.section-dark { background: var(--navy); }
.section-light { background: var(--light-bg); }

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--gold);
}

.section-label.light { color: var(--gold); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-title.light { color: var(--white); }
.section-title em {
  font-style: normal;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.section-desc.light { color: rgba(255,255,255,0.65); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.18), rgba(255,255,255,0));
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.btn:hover::before { transform: translateX(0); }

.btn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform 0.3s ease; }
.btn:hover svg { transform: translateX(3px); }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(214,40,40,0.4); }

.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.5); transform: translateY(-2px); }

.btn-white-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-white-outline:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }

.btn-full { width: 100%; justify-content: center; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: -10%;
  width: 120%;
  height: 120%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.1s linear;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(214,40,40,0.28), transparent 40%),
    linear-gradient(125deg, rgba(13,13,13,0.9) 0%, rgba(13,13,13,0.76) 45%, rgba(13,13,13,0.55) 100%);
}

.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 80px;
  background: linear-gradient(95deg, rgba(214,40,40,0.95), rgba(139,0,0,0.92));
  clip-path: polygon(0 55%, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 140px 32px 80px;
  margin-left: max(32px, calc((100vw - 1280px) / 2 + 32px));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(214,40,40,0.12);
  border: 1px solid rgba(214,40,40,0.3);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(214,40,40,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(214,40,40,0); }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 28px;
}

.title-line { display: block; }

.title-accent {
  color: var(--gold);
  font-style: italic;
  position: relative;
  display: inline-block;
}

.title-accent::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  width: fit-content;
}

.stat-item { text-align: center; padding: 0 28px; }
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { padding-right: 0; }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  display: inline;
}

.stat-item span {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-item p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}

.stat-divider {
  width: 1px; height: 48px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 40px; right: 80px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-scroll-hint span {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(214,40,40,0.8), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--navy);
  border-bottom: 1px solid rgba(214,40,40,0.15);
  padding: 24px 0;
}

.trust-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 4px 0;
}

.trust-item svg { width: 18px; height: 18px; flex-shrink: 0; }

.trust-sep {
  width: 1px; height: 28px;
  background: rgba(255,255,255,0.1);
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-stack {
  position: relative;
  height: 560px;
}

.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 80%; height: 78%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 54%; height: 48%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}

.about-badge-float {
  position: absolute;
  top: 52%; left: 62%;
  transform: translate(-50%, -50%);
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 12px 40px rgba(214,40,40,0.4);
  z-index: 2;
  animation: floatBadge 3s ease-in-out infinite;
}

.about-badge-float strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.about-badge-float span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 3px;
  display: block;
}

@keyframes floatBadge {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-8px); }
}

.about-lead {
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-body {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 36px;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--gold);
  transition: var(--transition-fast);
}

.pillar:hover { background: var(--light-bg); transform: translateX(4px); }

.pillar-icon {
  width: 40px; height: 40px;
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.pillar-icon svg { width: 20px; height: 20px; }

.pillar strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.pillar p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}

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

.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(214,40,40,0.2), transparent 45%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(214,40,40,0.35);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}

.service-card:hover::before { opacity: 1; }

.service-card-img {
  height: 180px;
  overflow: hidden;
  position: relative;
}

.service-card-img img {
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-img img { transform: scale(1.08); }

.service-card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(13,13,13,0.9), transparent);
}

.service-card-body {
  padding: 24px;
  position: relative;
  z-index: 2;
}

.service-icon {
  width: 44px; height: 44px;
  background: rgba(214,40,40,0.12);
  border: 1px solid rgba(214,40,40,0.25);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  transition: var(--transition-fast);
}

.service-icon svg { width: 22px; height: 22px; color: var(--gold); }
.service-card:hover .service-icon { background: var(--gold); border-color: var(--gold); }
.service-card:hover .service-icon svg { color: var(--navy); }

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  transition: gap 0.3s ease;
}

.service-link svg { width: 16px; height: 16px; }
.service-card:hover .service-link { gap: 10px; }

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-img-wrap {
  position: relative;
  height: 620px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.why-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.4) 0%, transparent 60%);
}

.why-feature-float {
  position: absolute;
  bottom: 32px; left: 32px;
  background: rgba(13,13,13,0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(214,40,40,0.25);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.float-icon {
  width: 44px; height: 44px;
  background: rgba(214,40,40,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.float-icon svg { width: 22px; height: 22px; }

.why-feature-float strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.why-feature-float span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.why-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--off-white);
  transition: var(--transition-fast);
  border: 1px solid transparent;
}

.why-feature:hover {
  background: var(--white);
  border-color: rgba(214,40,40,0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.wf-icon {
  width: 42px; height: 42px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.wf-icon svg { width: 20px; height: 20px; }

.wf-gold { background: rgba(214,40,40,0.12); color: var(--gold); }
.wf-blue { background: rgba(26, 45, 69, 0.1); color: var(--navy-mid); }

.wf-text h4 {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.wf-text p {
  font-size: 0.83rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}

/* ===== PROCESS ===== */
.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  padding-top: 60px;
}

.process-line {
  position: absolute;
  top: 31px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  opacity: 0.3;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  background: var(--light-bg);
  border: 2px solid var(--gold);
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.process-step:hover .step-num {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(214,40,40,0.4);
  transform: scale(1.1);
}

.step-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  width: 100%;
}

.process-step:hover .step-card {
  box-shadow: var(--shadow-lg);
  border-color: rgba(214,40,40,0.2);
  transform: translateY(-4px);
}

.step-icon {
  width: 52px; height: 52px;
  background: var(--gold-pale);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}

.step-icon svg { width: 24px; height: 24px; color: var(--gold); }

.step-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ===== GALLERY STRIP ===== */
.gallery-strip {
  overflow: hidden;
  padding: 40px 0;
  background: var(--off-white);
}

.gallery-track {
  display: flex;
  gap: 16px;
  animation: galleryScroll 28s linear infinite;
  width: max-content;
}

.gallery-strip:hover .gallery-track { animation-play-state: paused; }

.gallery-track img {
  width: 320px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid rgba(214,40,40,0.3);
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.gallery-track img:hover { transform: scale(1.03); }

@keyframes galleryScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== TESTIMONIALS ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px; right: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 10rem;
  font-weight: 900;
  color: rgba(214,40,40,0.06);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(214,40,40,0.25);
  transform: translateY(-5px);
}

.t-stars {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.t-quote {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 28px;
  font-style: italic;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.t-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--gold-pale);
}

.t-author strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
}

.t-author span {
  font-size: 0.8rem;
  color: var(--text-light);
}

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

.cta-band-bg {
  position: absolute;
  inset: 0;
}

.cta-band-bg img { object-position: center 40%; }

.cta-band-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,13,13,0.92) 0%, rgba(13,13,13,0.8) 100%);
}

.cta-band-content {
  position: relative;
  z-index: 2;
}

.cta-band-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-band-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-band-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-lead {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.vendor-support-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 22px;
}

.vendor-support-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.vendor-support-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
}

.c-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
  cursor: pointer;
}

.c-detail:hover { background: rgba(214,40,40,0.08); border-color: rgba(214,40,40,0.2); }

.c-icon {
  width: 42px; height: 42px;
  background: rgba(214,40,40,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.c-icon svg { width: 20px; height: 20px; color: var(--gold); }

.c-detail span {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}

.c-detail strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--white);
}

.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.map-wrap iframe {
  width: 100%;
  min-height: 320px;
  display: block;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-xl);
}

.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 32px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  appearance: none;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(214,40,40,0.12);
  background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(0,0,0,0.3); }

.form-group textarea { resize: vertical; min-height: 100px; }

.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 12px;
}

/* Form success state */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show { display: block; }
.form-success .success-icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h4 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--text-dark); margin-bottom: 8px; }
.form-success p { color: var(--text-mid); }

/* ===== FOOTER ===== */
.footer { background: var(--navy); }

.footer-top { padding: 80px 0 60px; border-bottom: 1px solid rgba(255,255,255,0.07); }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition-fast);
}

.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); transform: translateY(-2px); }

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

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

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.25s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a::before {
  content: '->';
  font-size: 0.7rem;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.footer-col ul li a:hover { color: var(--white); }
.footer-col ul li a:hover::before { opacity: 1; }

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fc-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.fc-item svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; }
.fc-item a { color: rgba(255,255,255,0.55); transition: color 0.25s; }
.fc-item a:hover { color: var(--gold); }

.footer-bottom {
  padding: 22px 0;
  display: flex;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.25s ease;
}

.footer-bottom-links a:hover { color: var(--gold); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 46px; height: 46px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(214,40,40,0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.3s ease;
  z-index: 900;
}

.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold-light); transform: translateY(-3px); }
.back-to-top svg { width: 20px; height: 20px; }

/* ===== SCROLL ANIMATIONS ===== */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-up.visible { opacity: 1; transform: translateY(0); }

.img-reveal {
  opacity: 0;
  transform: scale(0.96) translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.img-reveal.visible { opacity: 1; transform: scale(1) translateY(0); }

.reveal-card {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-card.visible { opacity: 1; transform: translateY(0); }

.reveal-step {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-step.visible { opacity: 1; transform: translateY(0) scale(1); }

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

@media (max-width: 1280px) {
  .nav-container { padding: 0 24px; }
  .logo-shield,
  .logo-shield.small,
  .loader-shield { width: 300px; height: 64px; }
  .nav-links { gap: 2px; }
  .nav-link { font-size: 0.82rem; padding: 8px 10px; }
}

@media (max-width: 1100px) {
  .logo-shield,
  .logo-shield.small,
  .loader-shield { width: 250px; height: 54px; }

  .nav-links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 300px;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 28px 40px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: -20px 0 60px rgba(0,0,0,0.4);
    z-index: 999;
  }

  .nav-links.open { transform: translateX(0); }
  .nav-link {
    font-size: 0.98rem;
    padding: 12px 0;
    width: 100%;
    color: rgba(255,255,255,0.85);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-link.nav-cta {
    border: none;
    margin: 12px 0 0;
    padding: 12px 24px;
    text-align: center;
  }
  .hamburger { display: flex; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-grid { gap: 48px; }
  .why-grid { gap: 48px; }
}

@media (max-width: 900px) {
  .section { padding: 80px 0; }

  .about-grid,
  .why-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .form-row { grid-template-columns: 1fr; }

  .about-img-stack { height: 400px; }

  .why-img-wrap { height: 400px; }

  .process-track { grid-template-columns: repeat(2, 1fr); }
  .process-line { display: none; }

  .testimonial-grid { grid-template-columns: 1fr; }

  .trust-sep { display: none; }
  .trust-container { gap: 20px; }
}

@media (max-width: 768px) {
  .logo-shield,
  .logo-shield.small,
  .loader-shield { width: 220px; height: 47px; }

  .nav-container { padding: 0 18px; }
  .nav-links { width: 280px; }

  .hero-content {
    padding: 120px 24px 60px;
    margin-left: 0;
    max-width: 100%;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
    padding: 20px 24px;
    align-items: flex-start;
  }

  .stat-item { padding: 0; }
  .stat-divider { width: 100%; height: 1px; }

  .hero-scroll-hint { display: none; }

  .services-grid { grid-template-columns: 1fr; }

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

  .form-row { grid-template-columns: 1fr; }

  .contact-form-wrap { padding: 28px 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .footer-bottom .container { flex-direction: column; text-align: center; }

  .back-to-top { bottom: 20px; right: 20px; }

  .gallery-track img { width: 240px; height: 160px; }

  .why-features { grid-template-columns: 1fr; }

  .about-img-accent { width: 50%; height: 44%; }
}

@media (max-width: 480px) {
  .logo-shield,
  .logo-shield.small,
  .loader-shield { width: 180px; height: 39px; }

  .container { padding: 0 20px; }
  .nav-container { padding: 0 14px; }
  .nav-links { width: 88vw; }
  .hero-title { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .section { padding: 60px 0; }
  .hero-badge { font-size: 0.72rem; }
}

@media (hover: none), (pointer: coarse) {
  #cursor-dot,
  #cursor-ring {
    display: none;
  }
}

/* ===== MOBILE OVERLAY ===== */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.nav-overlay.show { opacity: 1; visibility: visible; }


