/* ============================================
   EASY BOOKS CONSULTANCY — Main Stylesheet
   ============================================ */

/* ── VARIABLES ── */
:root {
  --navy: #1a2a5e;
  --navy-dark: #0f1a3d;
  --navy-light: #243470;
  --gold: #f5c842;
  --gold-dark: #d4a817;
  --gold-light: #fdd96a;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --text-light: #6b7280;
  --text-muted: #9ca3af;
  --border: rgba(255, 255, 255, 0.12);
}

/* ── RESET ── */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at top, rgba(245, 200, 66, 0.12), transparent 40%), var(--off-white);
  color: var(--navy-dark);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15, 26, 61, 0.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245, 200, 66, 0.15);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  animation: navFade 0.55s ease 0.18s forwards;
  transform: translateY(-12px);
  opacity: 0;
  transition: background 0.25s, box-shadow 0.25s, transform 0.25s;
}

nav.scrolled {
  background: rgba(15, 26, 61, 0.98);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.nav-logo:hover {
  transform: translateY(-1px);
}

.nav-logo img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: contain;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.nav-logo-sub {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links li {
  list-style: none;
}

.mobile-nav-cta {
  display: none;
}

.desktop-nav-cta {
  display: inline-flex;
}

.nav-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 999px;
  transition: width 0.25s ease, left 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
  left: 0;
}

.nav-cta {
  background: var(--gold);
  color: var(--navy-dark);
  padding: 10px 22px;
  border-radius: 6px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 200, 66, 0.45);
}

.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  display: block;
}

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

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

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

/* Mobile Menu */
.nav-links.mobile-open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(15, 26, 61, 0.98);
  padding: 24px 5%;
  z-index: 999;
  border-bottom: 1px solid rgba(245, 200, 66, 0.1);
  gap: 20px;
  animation: slideDown 0.25s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── POPUP ── */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(8, 15, 36, 0.82);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.popup-overlay.active {
  display: flex;
  animation: fadeIn 0.25s ease;
}

.popup-box {
  border-radius: 20px;
  max-width: 540px;
  width: 100%;
  position: relative;
  animation: slideUp 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
}

/* Close button — sits on dark header */
.popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s, color 0.2s;
  z-index: 10;
}

.popup-close:hover {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

/* Dark header */
.popup-header {
  background: var(--navy-dark);
  padding: 32px 36px 28px;
  position: relative;
}

.popup-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
}

.popup-badge {
  display: inline-block;
  background: rgba(245, 200, 66, 0.12);
  color: var(--gold);
  border: 1px solid rgba(245, 200, 66, 0.25);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.popup-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 8px;
}

.popup-header p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
  line-height: 1.65;
}

/* Offer cards */
.popup-offers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.popup-offer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 14px 12px;
  transition: background 0.2s, border-color 0.2s;
}

.popup-offer:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(245, 200, 66, 0.35);
}

.popup-offer-icon {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.popup-offer-icon i {
  font-size: 15px;
  color: var(--navy-dark);
}

.popup-offer-label {
  font-size: 10px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.12em;
}

.popup-offer-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 4px;
}

.popup-offer-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

/* White form section */
.popup-body {
  background: var(--white);
  padding: 24px 36px 32px;
}

.popup-form input,
.popup-form select {
  width: 100%;
  padding: 11px 14px;
  margin-bottom: 10px;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
  background: var(--off-white);
  color: var(--navy-dark);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.popup-form input:focus,
.popup-form select:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26, 42, 94, 0.08);
}

.popup-form .btn-primary {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--navy-dark);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  margin-top: 2px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.popup-form .btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 200, 66, 0.35);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 120px 5% 80px;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 200, 66, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 200, 66, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 25s linear infinite;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 200, 66, 0.08) 0%, transparent 70%);
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  animation: pulseGlow 6s ease-in-out infinite;
}

/* ── HERO ORBS ── */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}

.hero-orb-1 {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(245, 200, 66, 0.12) 0%, transparent 70%);
  top: 15%;
  right: 10%;
  animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(36, 52, 112, 0.6) 0%, transparent 70%);
  bottom: 20%;
  right: 30%;
  animation: orbFloat 11s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  33%       { transform: translateY(-18px) scale(1.04); }
  66%       { transform: translateY(10px) scale(0.97); }
}

/* ── HERO ENTRANCE ANIMATION ── */
.hero-anim {
  opacity: 0;
  transform: translateY(28px);
  animation: heroEnter 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--d, 0s);
}

@keyframes heroEnter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-anim {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .hero-orb,
  .hero-bg-grid,
  .hero-glow {
    animation: none;
  }
  /* All other animations off for motion-sensitive users */
  .fade-in {
    transition: none;
    opacity: 1;
    transform: none;
  }
  .hv-float, .hv-float--1, .hv-float--2 { animation: none !important; }
  .hv-bar    { animation: none; transform: scaleY(1); }
  .hv-progress-fill { animation: none; }
  .hv-live-dot { animation: none; opacity: 1; }
  .nav-links.mobile-open { animation: none; }
  .popup-overlay.active, .popup-box { animation: none; }
  nav { animation: none; opacity: 1; transform: none; }
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content {
  max-width: 560px;
  flex: 0 0 auto;
}

/* ── HERO VISUAL ── */
.hero-visual {
  flex: 1;
  max-width: 420px;
  position: relative;
  animation: heroEnter 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}

.hv-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 22px;
  padding: 28px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.07);
}

.hv-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.hv-card-title {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2px;
}

.hv-card-period {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}

.hv-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  color: #4ade80;
  letter-spacing: 0.05em;
  margin-top: 3px;
}

.hv-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.2);
  animation: blink 2s ease-in-out infinite;
}

.hv-rows {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
}

.hv-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.05);
}

.hv-row-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(245,200,66,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hv-row-icon i {
  font-size: 11px;
  color: var(--gold);
}

.hv-row-body {
  flex: 1;
  min-width: 0;
}

.hv-row-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}

.hv-row-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

.hv-row-val {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  white-space: nowrap;
}

.hv-val--gold {
  color: var(--gold);
  background: rgba(245,200,66,0.12);
}

.hv-val--green {
  color: #4ade80;
  background: rgba(74,222,128,0.1);
}

.hv-val--zero {
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.07);
}

.hv-progress {
  height: 3px;
  background: rgba(255,255,255,0.07);
  border-radius: 2px;
  overflow: hidden;
}

.hv-progress-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  transform-origin: left;
  animation: progressFill 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.9s both;
}

.hv-progress--green { background: #4ade80; }

@keyframes progressFill {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.hv-chart {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 16px;
}

.hv-chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.hv-chart-label {
  font-size: 10px;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hv-chart-range {
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.04em;
}

.hv-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 64px;
}

.hv-bar {
  flex: 1;
  height: var(--h);
  background: rgba(245,200,66,0.18);
  border-radius: 4px 4px 0 0;
  transform-origin: bottom;
  animation: barGrow 1s cubic-bezier(0.22, 1, 0.36, 1) 0.7s both;
}

.hv-bar--active {
  background: var(--gold);
  box-shadow: 0 0 14px rgba(245,200,66,0.45);
}

@keyframes barGrow {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}

/* Mini card row */
.hv-mini-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.hv-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 12px 14px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hv-mini-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(245,200,66,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hv-mini-icon i {
  font-size: 12px;
  color: var(--gold);
}

.hv-mini-icon--green { background: rgba(74,222,128,0.1); }
.hv-mini-icon--green i { color: #4ade80; }

.hv-mini-label {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 2px;
  white-space: nowrap;
}

.hv-mini-val {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}

.hv-mini-val--green { color: #4ade80; }

.hv-float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(10,18,50,0.92);
  border: 1px solid rgba(245,200,66,0.3);
  border-radius: 40px;
  padding: 8px 14px;
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hv-float i {
  color: var(--gold);
  font-size: 12px;
}

.hv-float--1 {
  top: -16px;
  right: -20px;
  animation: floatBob 4s ease-in-out infinite;
}

.hv-float--2 {
  bottom: 56px;
  left: -20px;
  animation: floatBob 4s ease-in-out 2s infinite;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 200, 66, 0.1);
  border: 1px solid rgba(245, 200, 66, 0.25);
  border-radius: 20px;
  padding: 6px 14px;
  margin-bottom: 28px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5.5vw, 66px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 24px;
}

.hero h1 .gold {
  color: var(--gold);
}

.hero h1 .underline-gold {
  position: relative;
  display: inline-block;
}

.hero h1 .underline-gold::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 540px;
}

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

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--gold);
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
  letter-spacing: 0.05em;
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
}

.scroll-arrow {
  width: 32px;
  height: 32px;
  border-left: 2px solid rgba(245, 200, 66, 0.5);
  border-bottom: 2px solid rgba(245, 200, 66, 0.5);
  transform: rotate(-45deg);
  margin: 0 auto;
  animation: bounce 2s infinite;
}

/* ── BUTTONS ── */
.btn-gold {
  padding: 15px 30px;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 200, 66, 0.55), 0 0 0 1px rgba(245, 200, 66, 0.2);
}

/* Shimmer effect */
.btn-shimmer,
.nav-cta,
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-shimmer::after,
.nav-cta::after,
.btn-primary::after {
  content: '';
  position: absolute;
  top: -10%;
  left: -120%;
  width: 55%;
  height: 120%;
  background: linear-gradient(
    105deg,
    transparent 15%,
    rgba(255, 255, 255, 0.55) 45%,
    rgba(255, 255, 255, 0.75) 50%,
    rgba(255, 255, 255, 0.55) 55%,
    transparent 85%
  );
  transform: skewX(-10deg);
  transition: left 0s;
  pointer-events: none;
}

.btn-shimmer:hover::after,
.nav-cta:hover::after,
.btn-primary:hover::after {
  left: 160%;
  transition: left 0.55s ease;
}

.btn-outline {
  padding: 15px 30px;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── SECTION BASE ── */
section {
  padding: 96px 5%;
}

.section-tag {
  display: inline-block;
  background: rgba(26, 42, 94, 0.08);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  border: 1px solid rgba(26, 42, 94, 0.15);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-title .accent {
  color: var(--gold-dark);
}

.section-sub {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 560px;
}

.section-header {
  margin-bottom: 56px;
}

/* ── SERVICES ── */
#services {
  background: linear-gradient(155deg, #edf0fb 0%, #f8f9fc 55%, #f3f5fa 100%);
  position: relative;
  overflow: hidden;
}
#services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26,42,94,0.06) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
  z-index: 0;
}
#services::after {
  content: '';
  position: absolute;
  bottom: -140px;
  right: -140px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(245,200,66,0.1) 0%, transparent 65%);
  pointer-events: none;
}
#services .section-header,
#services .services-grid {
  position: relative;
  z-index: 1;
}

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

/* Last card (5th) spans columns 2–3, centering it in the 3-column grid */
.service-card--wide {
  grid-column: 2 / 4;
}

.service-card {
  padding: 36px 32px;
  border-radius: 14px;
  border: 1.5px solid #e4e8f4;
  background: var(--white);
  box-shadow: 0 4px 18px rgba(26,42,94,0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(26, 42, 94, 0.12);
  border-color: rgba(26, 42, 94, 0.12);
}

.service-card:hover::before {
  transform: scaleX(1);
}

/* Background sweep on hover */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 42, 94, 0.03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

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

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(26, 42, 94, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s, transform 0.3s;
}

.service-icon i {
  font-size: 22px;
  color: var(--navy);
  transition: color 0.3s;
}

.service-card:hover .service-icon {
  background: var(--navy);
  transform: scale(1.08);
}

.service-card:hover .service-icon i {
  color: var(--gold);
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* Arrow indicator */
.service-card-arrow {
  position: absolute;
  bottom: 20px;
  right: 24px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(26, 42, 94, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate(4px, 4px);
  transition: opacity 0.3s, transform 0.3s, background 0.3s;
}

.service-card-arrow i {
  font-size: 11px;
  color: var(--navy);
  transition: color 0.3s;
}

.service-card:hover .service-card-arrow {
  opacity: 1;
  transform: translate(0, 0);
  background: var(--gold);
}

.service-card:hover .service-card-arrow i {
  color: var(--navy-dark);
}

/* ── ABOUT ── */
#about {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}

#about .bg-accent {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 40%;
  background: var(--navy-light);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.4;
}

#about .section-tag {
  background: rgba(245, 200, 66, 0.12);
  color: var(--gold);
  border-color: rgba(245, 200, 66, 0.2);
}

#about .section-title {
  color: var(--white);
}

#about .section-sub {
  color: rgba(255, 255, 255, 0.62);
}

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

.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.about-value {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.25s, transform 0.25s;
}

.about-value:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(4px);
}

.value-dot {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(245, 200, 66, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s;
}

.value-dot i {
  font-size: 15px;
  color: var(--gold);
}

.about-value:hover .value-dot {
  background: rgba(245, 200, 66, 0.25);
}

.about-value h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.about-value p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.6;
}

/* Credential badges replacing old big-number */
.about-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 32px;
}

.about-cred-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 200, 66, 0.15);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.about-cred-badge:hover {
  background: rgba(245, 200, 66, 0.08);
  border-color: rgba(245, 200, 66, 0.3);
  transform: translateY(-2px);
}

.cred-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  flex-shrink: 0;
  background: rgba(245, 200, 66, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cred-icon i {
  font-size: 17px;
  color: var(--gold);
}

.cred-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cred-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.cred-sub {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

.about-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-location-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  grid-column: 1 / -1;
  margin-top: 8px;
  background: linear-gradient(135deg, rgba(245,200,66,0.08), rgba(245,200,66,0.03));
  border: 1px solid rgba(245,200,66,0.25);
  border-left: 3px solid var(--gold);
  border-radius: 12px;
  padding: 18px 20px;
  max-width: 380px;
}

.location-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(245,200,66,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}

.location-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.location-address {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 10px;
}

.location-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.location-link:hover {
  gap: 10px;
}

.about-quote-block {
  position: relative;
  background: rgba(245,200,66,0.06);
  border: 1px solid rgba(245,200,66,0.18);
  border-left: 3px solid var(--gold);
  border-radius: 12px;
  padding: 22px 22px 22px 26px;
  margin-bottom: 24px;
}

.about-quote-icon {
  font-size: 20px;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 10px;
  display: block;
}

.about-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--white);
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 12px;
}

.about-body {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin: 0;
}

/* ── INDUSTRIES ── */
#industries {
  background: linear-gradient(155deg, #f3f5fb 0%, #f8f9fc 55%, #edf0fb 100%);
  position: relative;
  overflow: hidden;
}

#industries::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26,42,94,0.06) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}

#industries::after {
  content: '';
  position: absolute;
  top: -160px;
  right: -160px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(245,200,66,0.11) 0%, transparent 65%);
  pointer-events: none;
}

#industries .section-header,
#industries .industries-grid {
  position: relative;
  z-index: 1;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 960px;
  margin: 0 auto;
}

.industry-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 20px;
  border-radius: 14px;
  background: var(--white);
  border: 1.5px solid #e8ebf4;
  box-shadow: 0 4px 16px rgba(26,42,94,0.09);
  text-align: left;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  cursor: default;
}

.industry-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 10px 32px rgba(245, 200, 66, 0.13);
}

.industry-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f0f3ff, #e8edf8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s;
}

.industry-icon i {
  font-size: 18px;
  color: var(--navy);
  transition: color 0.25s;
}

.industry-card:hover .industry-icon {
  background: linear-gradient(135deg, #fef9e7, #fdf0bb);
}

.industry-card:hover .industry-icon i {
  color: var(--gold);
}

.industry-info {
  flex: 1;
  min-width: 0;
}

.industry-card h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy-dark);
  line-height: 1.3;
  margin: 0 0 5px;
}

.industry-info p {
  font-size: 11.5px;
  color: #6b7a9e;
  line-height: 1.55;
  margin: 0;
}

/* ── HOME SERVICES PREVIEW ── */
.home-services {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.home-services::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26,42,94,0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}
.home-services .section-header,
.home-services .home-services-grid,
.home-services .home-section-link {
  position: relative;
  z-index: 1;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.home-service-item {
  background: var(--white);
  border: 1.5px solid #e8ebf4;
  border-radius: 14px;
  padding: 28px 18px 24px;
  text-align: center;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.home-service-item:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 10px 32px rgba(245, 200, 66, 0.12);
}

.hs-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(26,42,94,0.06), rgba(26,42,94,0.03));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: background 0.25s;
}

.hs-icon i {
  font-size: 20px;
  color: var(--navy);
}

.home-service-item:hover .hs-icon {
  background: linear-gradient(135deg, rgba(245,200,66,0.18), rgba(245,200,66,0.08));
}

.home-service-item:hover .hs-icon i {
  color: var(--gold-dark);
}

.home-service-item h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 8px;
}

.home-service-item p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.6;
}

.home-section-link {
  text-align: center;
}

.home-section-link a,
.home-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: gap 0.2s, color 0.2s;
}

.home-section-link a:hover,
.home-link:hover {
  gap: 12px;
  color: var(--navy-dark);
}


/* ── HOME WHY EASY BOOKS ── */
.home-why {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}

.home-why::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,200,66,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.home-why .section-header {
  text-align: center;
}

.home-why .section-tag {
  background: rgba(245,200,66,0.12);
  color: var(--gold);
  border-color: rgba(245,200,66,0.2);
}

.home-why .section-title {
  color: var(--white);
}

.home-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.home-why-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}

.home-why-item:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(245,200,66,0.25);
  transform: translateY(-4px);
}

.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: rgba(245,200,66,0.12);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -2px;
}

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(245,200,66,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.why-icon i {
  font-size: 18px;
  color: var(--gold);
}

.home-why-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.home-why-item p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}


/* ── HOME SOCIAL PROOF + CTA ── */
.home-proof {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.home-proof::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26,42,94,0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}
.home-proof::after {
  content: '';
  position: absolute;
  bottom: -160px;
  right: -160px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(245,200,66,0.08) 0%, transparent 68%);
  pointer-events: none;
}
.home-proof .home-proof-grid {
  position: relative;
  z-index: 1;
}

.home-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

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

.proof-quote {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--navy-dark);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
  position: relative;
  padding-left: 24px;
  border-left: 3px solid var(--gold);
}

.proof-cite {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  opacity: 0.65;
  font-style: normal;
}

.proof-cta-wrap {
  background: var(--white);
  border: 1.5px solid #e8ebf4;
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 8px 40px rgba(26,42,94,0.07);
}

.proof-cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,200,66,0.12);
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(245,200,66,0.25);
  margin-bottom: 16px;
}

.proof-cta-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.proof-cta-wrap p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

.proof-cta-wrap .btn-gold {
  width: 100%;
  justify-content: center;
  margin-bottom: 12px;
}

.btn-outline-dark {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px;
  border: 1.5px solid #e8ebf4;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline-dark:hover {
  border-color: var(--navy);
  background: rgba(26,42,94,0.04);
}


/* ── REVIEWS ── */
#reviews {
  background: var(--navy-dark);
  position: relative;
  overflow: hidden;
}
#reviews::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}
#reviews::after {
  content: '';
  position: absolute;
  top: -160px;
  left: -160px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(245,200,66,0.07) 0%, transparent 68%);
  pointer-events: none;
}
#reviews .section-header,
#reviews .reviews-grid,
#reviews .google-cta {
  position: relative;
  z-index: 1;
}

#reviews .section-tag {
  background: rgba(245, 200, 66, 0.12);
  color: var(--gold);
  border-color: rgba(245, 200, 66, 0.2);
}

#reviews .section-title {
  color: var(--white);
}

#reviews .section-sub {
  color: rgba(255, 255, 255, 0.62);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  padding: 32px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
  border-color: rgba(245, 200, 66, 0.25);
}

.review-stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.review-text::before {
  content: '\201C';
  font-size: 40px;
  color: var(--gold);
  line-height: 0;
  vertical-align: -14px;
  margin-right: 4px;
  font-family: 'Playfair Display', serif;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(245, 200, 66, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
}

.review-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.review-role {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}

.google-cta {
  margin-top: 48px;
  text-align: center;
}

.btn-google {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  transition: all 0.2s;
}

.btn-google:hover {
  border-color: var(--navy);
  box-shadow: 0 4px 16px rgba(26, 42, 94, 0.1);
}

.google-g {
  width: 22px;
  height: 22px;
  background: conic-gradient(#4285f4 90deg, #ea4335 90deg 180deg, #34a853 180deg 270deg, #fbbc04 270deg);
  border-radius: 50%;
  display: inline-block;
}

/* ── CONTACT ── */
#contact {
  background: linear-gradient(150deg, #edf0fb 0%, #f8f9fc 50%, #f3f5fa 100%);
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(26,42,94,0.06) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
  z-index: 0;
}
#contact::after {
  content: '';
  position: absolute;
  top: -140px;
  left: -140px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,200,66,0.09) 0%, transparent 65%);
  pointer-events: none;
}
#contact .section-header,
#contact .contact-grid {
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid #e4e8f4;
  box-shadow: 0 3px 14px rgba(26,42,94,0.07);
  margin-bottom: 16px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.contact-item:hover {
  background: #f4f6ff;
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(26, 42, 94, 0.07);
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(26, 42, 94, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.contact-icon i {
  font-size: 16px;
  color: var(--navy);
}

.contact-item:hover .contact-icon {
  background: rgba(245, 200, 66, 0.18);
}

.contact-item:hover .contact-icon i {
  color: var(--gold-dark);
}

.contact-item-title {
  font-size: 11px;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
  opacity: 0.6;
}

.contact-item-val {
  font-size: 15px;
  color: var(--navy-dark);
  font-weight: 500;
}

.contact-item-val a {
  color: var(--navy-dark);
  text-decoration: none;
}

.contact-item-val a:hover {
  color: var(--navy);
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid #e4e8f4;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 6px 36px rgba(26, 42, 94, 0.1);
}

.contact-form-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--navy-dark);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 6px;
  opacity: 0.65;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--off-white);
  border: 1.5px solid #e8ebf4;
  border-radius: 8px;
  color: var(--navy-dark);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(245, 200, 66, 0.1);
}

.form-group select option {
  background: var(--white);
  color: var(--navy-dark);
}

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

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--navy-dark);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.btn-submit:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 200, 66, 0.3);
}

/* ── FOOTER ── */
footer {
  background: #080f24;
  padding: 56px 5% 28px;
  border-top: 1px solid rgba(245, 200, 66, 0.1);
}

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

.footer-brand .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-brand .logo-sub {
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom .gold-line {
  color: var(--gold);
}

/* ── SCROLL ANIMATION ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--d, 0s);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── KEYFRAMES ── */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes gridMove {
  from { background-position: 0 0; }
  to   { background-position: 60px 60px; }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.6; transform: translateY(-50%) scale(1); }
  50%       { opacity: 1;   transform: translateY(-50%) scale(1.08); }
}

@keyframes navFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

@keyframes bounce {
  0%, 100% { transform: rotate(-45deg) translateY(0); }
  50%       { transform: rotate(-45deg) translateY(6px); }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card--wide {
    grid-column: 1 / -1;
  }
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .home-why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .home-proof-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  nav {
    flex-wrap: nowrap;
    align-items: center;
    height: 64px;
    min-height: unset;
    padding: 0 5%;
  }

  /* Hidden by default — drops below the fixed nav when toggled */
  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--navy-dark);
    padding: 8px 6% 28px;
    border-top: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 16px 48px rgba(0,0,0,0.5);
    z-index: 999;
    gap: 0;
  }

  .nav-links.mobile-open {
    display: flex;
    top: 64px;
    padding: 8px 6% 28px;
    gap: 0;
  }

  .nav-links li {
    flex: none;
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    white-space: nowrap;
  }

  .desktop-nav-cta {
    display: none;
  }

  .mobile-nav-item {
    border-bottom: none !important;
    margin-top: 16px;
  }

  .mobile-nav-cta {
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px 0;
  }

  /* Show hamburger on mobile */
  .hamburger {
    display: flex;
  }

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

  /* Explicit stacking order: content → quote/credentials → Find Us */
  .about-left { order: 1; }
  .about-right { order: 2; }
  .about-location-card { order: 3; max-width: 100%; }

  .hero {
    min-height: 75vh;
    padding: 100px 5% 56px;
  }

  .hero-inner {
    flex-direction: column;
    gap: 0;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-visual {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .btn-outline,
  .hero-actions .btn-gold {
    width: 100%;
  }

  section { padding: 56px 5%; }

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

  .service-card {
    padding: 28px 20px;
  }

  .service-card--wide {
    grid-column: auto;
  }

  .industries-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .industry-card {
    padding: 18px 16px;
    gap: 14px;
  }

  .industry-icon {
    width: 42px;
    height: 42px;
  }

  .industry-icon i {
    font-size: 16px;
  }

  .home-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .home-service-item {
    padding: 22px 14px 18px;
  }

  .home-service-item:last-child {
    grid-column: 1 / -1;
  }

  .home-why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-why-item {
    padding: 24px 20px;
  }

  .why-num {
    font-size: 36px;
  }

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

  .proof-cta-wrap {
    padding: 28px 20px;
  }

  .proof-quote {
    font-size: 16px;
  }

  /* About — single-column badges on small screens */
  .about-credentials {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-cred-badge {
    padding: 14px 14px;
  }

  .about-tagline {
    font-size: 17px;
  }

  .about-quote-block {
    padding: 18px 18px 18px 20px;
    margin-bottom: 20px;
  }

  .contact-grid {
    gap: 32px;
  }

  .hero-desc {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .hero-stats {
    gap: 20px;
    margin-top: 40px;
  }

  .stat-num {
    font-size: 28px;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .review-card {
    padding: 22px 18px;
  }

  .footer-bottom {
    flex-wrap: wrap;
    gap: 14px;
  }

  /* Popup — compact & scrollable on mobile */
  .popup-overlay {
    padding: 12px;
    align-items: flex-start;
    padding-top: 16px;
  }

  .popup-box {
    max-height: 88vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 16px;
  }

  .popup-header {
    padding: 20px 20px 16px;
  }

  .popup-header h2 {
    font-size: 19px;
  }

  .popup-header p {
    font-size: 13px;
    margin-bottom: 14px;
  }

  .popup-offers {
    gap: 8px;
  }

  .popup-offer {
    padding: 10px 12px;
    gap: 10px;
  }

  .popup-offer-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
    flex-shrink: 0;
  }

  .popup-offer-title {
    font-size: 12px;
  }

  .popup-offer-desc {
    font-size: 11px;
  }

  .popup-body {
    padding: 16px 20px 20px;
  }

  /* Prevent iOS Safari auto-zoom on input focus */
  .popup-form input,
  .popup-form select,
  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 16px;
  }

  .contact-form-wrap {
    padding: 22px 18px;
  }

  .contact-form-wrap h3 {
    font-size: 19px;
    margin-bottom: 18px;
  }

  .home-why-grid {
    margin-top: 24px;
  }

  .google-cta {
    margin-top: 28px;
  }

  .section-sub {
    font-size: 15px;
  }
}