/* ═══════════════════════════════════════════════
   HOME PAGE — CENTRED HERO LAYOUT v5
   Logo centred top → All-caps heading → Content below
   ═══════════════════════════════════════════════ */

/* ══════════════════════════════
   HERO — Full viewport, centred column
══════════════════════════════ */
.hero {
  min-height: 100vh;
  padding: 96px 5% 80px;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(201,168,76,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(201,168,76,0.06) 0%, transparent 50%),
    linear-gradient(158deg, #03071A 0%, #1A3260 45%, #0C1E50 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  gap: 0;
}

/* Background orbs */
.hero-bg-orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(100px); }
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  top: -200px; left: -150px;
  animation: orb-drift 10s ease-in-out infinite alternate;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
  bottom: -150px; right: -100px;
  animation: orb-drift 12s ease-in-out infinite alternate-reverse;
}
@keyframes orb-drift {
  from { transform: translate(0,0); }
  to   { transform: translate(40px, 30px); }
}

/* ── EYEBROW ── */
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-display);
  font-size: 0.58rem; letter-spacing: 0.45em;
  color: var(--gold-dim);
  text-transform: uppercase;
  margin-bottom: 2rem;
  animation: fadeInDown 0.8s ease both;
}
.eyebrow-line {
  flex: 0 0 36px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim));
}
.eyebrow-line:last-child {
  background: linear-gradient(90deg, var(--gold-dim), transparent);
}

/* ── LOGO — centred, large, below heading ── */
.hero-logo-display {
  display: flex; align-items: center; justify-content: center;
  margin-bottom: -60px;   /* pull tagline up to logo's visual bottom */
  margin-top: -80px;      /* pull logo up to heading's visual bottom */
  animation: fadeIn 1s 0.1s ease both;
}

.hero-logo-wrap {
  position: relative;
  width: 520px; height: 520px;  /* slightly smaller to tighten visual weight */
  display: flex; align-items: center; justify-content: center;
}

/* Rings REMOVED */
.hero-logo-ring { display: none; }

/* Glow only */
.hero-logo-glow {
  position: absolute; inset: 60px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  animation: glow-pulse 4s ease-in-out infinite alternate;
}
@keyframes glow-pulse {
  from { opacity: 0.4; transform: scale(0.95); }
  to   { opacity: 1;   transform: scale(1.08); }
}

/* Logo image — fills wrap fully */
.hero-logo-img {
  position: relative; z-index: 2;
  width: 520px; height: 520px;
  object-fit: contain;
  mix-blend-mode: lighten;
  filter: drop-shadow(0 0 30px rgba(201,168,76,0.35));
  animation: logo-float 6s ease-in-out infinite alternate;
}
@keyframes logo-float {
  from { transform: translateY(0);    filter: drop-shadow(0 0 24px rgba(201,168,76,0.35)); }
  to   { transform: translateY(-12px); filter: drop-shadow(0 6px 40px rgba(201,168,76,0.55)); }
}

/* Fallback */
.hero-logo-fallback {
  position: relative; z-index: 2;
  width: 200px; height: 200px;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  border-radius: 50%; border: 2px solid rgba(201,168,76,0.4);
  display: none; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 4rem; font-weight: 700; color: var(--gold);
  box-shadow: 0 0 60px rgba(201,168,76,0.2);
}

/* ── HEADING — ALL CAPS, one line, centred, above logo ── */
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  margin-bottom: 1.6rem;
  animation: fadeInUp 0.8s 0.2s ease both;
}
.hero-h1-gold {
  color: var(--white);          /* WHITE instead of gold */
  font-family: var(--font-display);
  font-style: normal;
}

/* ── TAGLINE ── */
.hero-tagline {
  font-family: var(--font-serif);
  font-size: 1.3rem; font-style: italic;
  color: var(--gold-bright);
  margin-bottom: 1.2rem;
  letter-spacing: 0.04em;
  animation: fadeInUp 0.8s 0.3s ease both;
}

/* ── DESCRIPTION ── */
.hero-desc {
  color: rgba(255,255,255,0.6);
  font-size: 1rem; line-height: 1.85;
  max-width: 560px;
  margin: 0 auto 2rem;
  animation: fadeInUp 0.8s 0.4s ease both;
}

/* ── STATS ── */
.hero-stats {
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 2.4rem;
  animation: fadeInUp 0.8s 0.5s ease both;
}
.hero-stat { text-align: center; padding: 0 32px; }
.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child  { padding-right: 0; }
.hero-stat-num {
  display: block; font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 700; color: var(--gold);
  line-height: 1; margin-bottom: 5px;
}
.hero-stat-label {
  font-size: 0.65rem; letter-spacing: 0.18em;
  color: rgba(255,255,255,0.4); text-transform: uppercase;
}
.hero-stat-divider {
  width: 1px; height: 52px;
  background: rgba(201,168,76,0.2);
}

/* ── BUTTONS ── */
.hero-btns {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.6s ease both;
}
/* Outline button on dark bg needs light styling */
.hero-btn-light {
  color: var(--gold-bright) !important;
  border-color: rgba(201,168,76,0.45) !important;
}
.hero-btn-light:hover {
  background: rgba(201,168,76,0.1) !important;
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}

/* ── SCROLL HINT ── */
.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fadeIn 1.5s 1s ease both;
}
.hero-scroll-text {
  font-family: var(--font-display);
  font-size: 0.55rem; letter-spacing: 0.35em;
  color: rgba(255,255,255,0.25); text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, rgba(201,168,76,0.4), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%,100% { opacity: 0.4; transform: scaleY(1); }
  50%      { opacity: 1;   transform: scaleY(1.2); }
}

/* ══════════════════════════════
   ABOUT STRIP
══════════════════════════════ */
.about-strip {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 80px; align-items: center; background: var(--white);
}
.about-strip-visual { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.vs-emblem { position: relative; width: 300px; height: 300px; display: flex; align-items: center; justify-content: center; }
.vs-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(201,168,76,0.2); }
.vs-ring-outer { inset: 0;    animation: ring-spin 30s linear infinite; }
.vs-ring-mid   { inset: 30px; animation: ring-spin 20s linear infinite reverse; }
.vs-ring-inner { inset: 60px; animation: ring-spin 15s linear infinite; }
@keyframes ring-spin { to { transform: rotate(360deg); } }
.vs-center { position: relative; z-index: 2; width: 180px; height: 180px; background: linear-gradient(135deg,var(--navy) 0%,var(--navy-mid) 100%); border-radius: 50%; border: 2.5px solid rgba(201,168,76,0.45); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--gold); box-shadow: 0 0 60px rgba(201,168,76,0.2); overflow: hidden; }
.vs-photo { width: 100%; height: 100%; object-fit: cover; object-position: top center; border-radius: 50%; display: block; }
.vs-photo-fallback { display: none; align-items: center; justify-content: center; width: 100%; height: 100%; font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--gold); }
.about-location-badge { background: linear-gradient(135deg,var(--gold),var(--gold-bright)); padding: 12px 28px; text-align: center; border-radius: 2px; box-shadow: var(--shadow-gold); }
.alb-city { display: block; font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--navy); }
.alb-state { font-size: 0.62rem; letter-spacing: 0.2em; color: rgba(26,50,96,0.65); text-transform: uppercase; }
.about-text { color: var(--text-muted); line-height: 1.9; font-size: 1rem; margin-top: 1rem; }
.about-text strong { color: var(--navy); }
.about-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.4rem; }

/* ══════════════════════════════
   SERVICES SECTION
══════════════════════════════ */
.services-section {
  background:
    radial-gradient(ellipse at 15% 60%, rgba(201,168,76,0.06) 0%, transparent 55%),
    linear-gradient(155deg, #0E1D3F 0%, #1A3260 55%, #0E1E50 100%);
}
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.1);
}
.svc-card {
  background: rgba(11,26,62,0.92);
  display: flex; flex-direction: column;   /* ← column flex so footer stays at bottom */
  position: relative; transition: background var(--transition);
  border-bottom: 2px solid transparent;
  overflow: hidden;
}
.svc-card:hover { background: rgba(18,37,96,0.95); border-bottom-color: var(--gold-dim); }

/* ── Image block at top of card ── */
.svc-card-img-wrap {
  width: 100%; height: 180px;              /* fixed height = uniform across all cards */
  overflow: hidden; flex-shrink: 0;
  position: relative;
  background: var(--navy);
}
.svc-card-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.svc-card:hover .svc-card-img { transform: scale(1.06); }
.svc-card-img-fallback {
  display: none;                           /* shown via onerror JS */
  position: absolute; inset: 0;
  align-items: center; justify-content: center;
  font-size: 2.8rem;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
}

/* ── Card body ── */
.svc-card-body {
  padding: 24px 28px;
  display: flex; flex-direction: column; flex: 1;  /* fills remaining card height */
}
.svc-num { font-family: var(--font-display); font-size: 0.55rem; letter-spacing: 0.3em; color: rgba(201,168,76,0.25); margin-bottom: 10px; }
.svc-icon { font-size: 1.8rem; margin-bottom: 14px; }
.svc-name { font-family: var(--font-display); font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 10px; }
.svc-desc { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.8; margin-bottom: 20px; flex: 1; }
.svc-footer {
  display: flex; justify-content: space-between; align-items: flex-end;
  border-top: 1px solid rgba(255,255,255,0.07); padding-top: 16px;
  margin-top: auto;                        /* ← pushes footer to bottom of card */
}
.svc-price { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--gold); }
.svc-price span { display: block; font-size: 0.6rem; letter-spacing: 0.15em; color: rgba(255,255,255,0.35); font-weight: 400; margin-top: 2px; }
.svc-book-btn { font-family: var(--font-display); font-size: 0.58rem; letter-spacing: 0.2em; color: var(--gold); border: 1px solid rgba(201,168,76,0.35); padding: 8px 16px; border-radius: 1px; transition: all var(--transition); }
.svc-book-btn:hover { background: rgba(201,168,76,0.12); border-color: var(--gold); }

/* View all button — gold on dark */
.svc-view-all-wrap { text-align: center; margin-top: 44px; }
.btn-view-all-services {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 0.65rem; letter-spacing: 0.25em; font-weight: 700;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  padding: 16px 40px; border-radius: 1px; transition: all var(--transition);
  text-transform: uppercase; box-shadow: 0 4px 24px rgba(201,168,76,0.4);
}
.btn-view-all-services:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(201,168,76,0.55); }

/* ══════════════════════════════
   HOW IT WORKS
══════════════════════════════ */
.hiw-section { background: var(--cream); }
.hiw-grid { display: flex; align-items: center; justify-content: center; max-width: 1000px; margin: 0 auto; }
.hiw-step { text-align: center; flex: 1; padding: 0 20px; }
.hiw-num { font-family: var(--font-display); font-size: 0.55rem; letter-spacing: 0.3em; color: var(--gold-dim); margin-bottom: 10px; }
.hiw-icon { font-size: 2rem; margin-bottom: 12px; }
.hiw-title { font-family: var(--font-display); font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.hiw-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.hiw-connector { flex: 0 0 60px; height: 1px; background: linear-gradient(90deg,var(--gold-dim),rgba(201,168,76,0.2),var(--gold-dim)); position: relative; }
.hiw-connector::after { content:'›'; position: absolute; top: 50%; right: -6px; transform: translateY(-50%); color: var(--gold-dim); font-size: 1rem; }

/* ══════════════════════════════
   PRODUCTS PREVIEW
══════════════════════════════ */
.products-preview-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
.ppg-card { border: 1px solid rgba(201,168,76,0.15); border-radius: 2px; padding: 28px 22px; text-align: center; transition: all var(--transition); background: var(--white); }
.ppg-card:hover { border-color: var(--gold-dim); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(201,168,76,0.12); }
.ppg-thumb { width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.9rem; margin: 0 auto 16px; border: 1px solid rgba(201,168,76,0.2); }
.ppg-name { font-family: var(--font-display); font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.ppg-sub { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.ppg-link { font-family: var(--font-display); font-size: 0.6rem; letter-spacing: 0.18em; color: var(--gold-dim); text-transform: uppercase; transition: color var(--transition); }
.ppg-link:hover { color: var(--gold); }

/* ══════════════════════════════
   TESTIMONIALS
══════════════════════════════ */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.08); max-width: 1200px; margin: 0 auto; }
.testi-card { background: rgba(11,26,62,0.7); padding: 36px 28px; }
.testi-stars { color: var(--gold); font-size: 0.7rem; letter-spacing: 3px; margin-bottom: 16px; }
.testi-quote { font-family: var(--font-serif); font-size: 1.05rem; font-style: italic; color: rgba(255,255,255,0.75); line-height: 1.8; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg,var(--gold),var(--gold-bright)); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 0.75rem; font-weight: 700; color: var(--navy); flex-shrink: 0; }
.testi-name { font-family: var(--font-display); font-size: 0.72rem; letter-spacing: 0.08em; color: var(--gold-bright); }
.testi-loc { font-size: 0.7rem; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* ══════════════════════════════
   CTA BAND
══════════════════════════════ */
.cta-band { background: linear-gradient(135deg,var(--gold-dim) 0%,var(--gold) 50%,var(--gold-bright) 100%); padding: 60px 5%; }
.cta-band-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-band-h2 { font-family: var(--font-display); font-size: clamp(1.4rem,2.5vw,2rem); font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.cta-band-sub { font-size: 1rem; color: rgba(26,50,96,0.65); font-family: var(--font-serif); font-style: italic; }
.cta-band-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-cta-dark { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 0.62rem; letter-spacing: 0.22em; font-weight: 700; color: var(--gold); background: var(--navy); padding: 15px 32px; border-radius: 1px; transition: all var(--transition); text-transform: uppercase; }
.btn-cta-dark:hover { background: var(--navy-mid); transform: translateY(-2px); }
.btn-cta-outline { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: 0.62rem; letter-spacing: 0.22em; font-weight: 600; color: var(--navy); border: 1.5px solid rgba(26,50,96,0.3); padding: 14px 30px; border-radius: 1px; transition: all var(--transition); text-transform: uppercase; }
.btn-cta-outline:hover { background: rgba(26,50,96,0.08); }

/* Keyframes */
@keyframes fadeIn    { from{opacity:0;}                         to{opacity:1;} }
@keyframes fadeInUp  { from{opacity:0;transform:translateY(24px);} to{opacity:1;transform:translateY(0);} }
@keyframes fadeInDown{ from{opacity:0;transform:translateY(-16px);}to{opacity:1;transform:translateY(0);} }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 768px) {
  .hero-logo-wrap { width: 320px; height: 320px; }
  .hero-logo-img  { width: 320px; height: 320px; }
  .hero-logo-display { margin-top: -50px; margin-bottom: -40px; }
  .hero-h1 { font-size: clamp(1.1rem, 4.5vw, 1.8rem); white-space: normal; letter-spacing: 0.03em; }
  .hero-stats { gap: 0; }
  .hero-stat { padding: 0 16px; }
  .hero-stat-num { font-size: 1.6rem; }
  .about-strip { grid-template-columns: 1fr; text-align: center; }
  .about-chips { justify-content: center; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .svc-card-img-wrap { height: 160px; }
  .hiw-grid { flex-direction: column; gap: 30px; }
  .hiw-connector { display: none; }
  .products-preview-grid { grid-template-columns: repeat(2,1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-btns { justify-content: center; }
}
@media (max-width: 480px) {
  .hero-logo-wrap { width: 200px; height: 200px; }
  .hero-logo-img  { width: 180px; height: 180px; }
  .hero-logo-display { margin-top: -30px; margin-bottom: -20px; }
  .services-grid { grid-template-columns: 1fr; }
  .products-preview-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
}
