/* ============================================
   MILLER MOBILE NOTARY — PREMIUM STYLESHEET
   ============================================ */

:root {
  --navy: #0A1628;
  --navy-mid: #122040;
  --navy-light: #1C3160;
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-pale: #F5E8C0;
  --crimson: #8B1A1A;
  --white: #FFFFFF;
  --off-white: #F8F5EF;
  --gray: #6B7280;
  --gray-light: #E5E7EB;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-cinzel: 'Cinzel', serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --shadow-gold: 0 0 40px rgba(201,168,76,0.25);
  --shadow-navy: 0 20px 60px rgba(10,22,40,0.4);
  --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-sans);
  background: var(--off-white);
  color: var(--navy);
  overflow-x: hidden;
  cursor: none;
}

/* ============ CUSTOM CURSOR ============ */
.cursor {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s var(--transition), width 0.3s, height 0.3s, border-color 0.3s;
}
body:has(a:hover) .cursor, body:has(button:hover) .cursor { width: 20px; height: 20px; background: var(--gold-light); }
body:has(a:hover) .cursor-follower, body:has(button:hover) .cursor-follower { width: 52px; height: 52px; border-color: var(--gold-light); }

/* ============ PRELOADER ============ */
.preloader {
  position: fixed; inset: 0;
  background: var(--navy);
  z-index: 10000;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }

.preloader-seal { position: relative; width: 120px; height: 120px; }
.seal-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.3);
  animation: sealSpin 3s linear infinite;
}
.seal-ring-2 {
  inset: 10px;
  border-color: rgba(201,168,76,0.15);
  animation-direction: reverse;
  animation-duration: 2s;
}
.seal-inner {
  position: absolute; inset: 20px;
  background: rgba(201,168,76,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.seal-icon { width: 60px; height: 60px; }
@keyframes sealSpin { to { transform: rotate(360deg); } }

.preloader-text {
  color: var(--gold);
  font-family: var(--font-cinzel);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s var(--transition);
}
.navbar.scrolled {
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-img { width: 52px; height: 52px; object-fit: contain; border-radius: 50%; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: var(--font-cinzel);
  font-size: 1.1rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.15em;
  line-height: 1;
}
.logo-sub { font-size: 0.6rem; color: rgba(255,255,255,0.6); letter-spacing: 0.08em; margin-top: 2px; }

.nav-links {
  display: flex; align-items: center; gap: 8px;
  list-style: none;
}
.nav-link {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.85rem; font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.25s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 4px; left: 50%; right: 50%;
  height: 1px; background: var(--gold);
  transition: all 0.3s;
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { left: 14px; right: 14px; }
.nav-link.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 600;
  padding: 8px 20px;
}
.nav-link.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav-link.nav-cta::after { display: none; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

/* ============ UTILITY ============ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.gold-text { color: var(--gold); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px;
  border: 1px solid rgba(201,168,76,0.25);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}
.section-subtitle { color: var(--gray); font-size: 1.05rem; max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ============ BUTTONS ============ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-weight: 600; font-size: 0.95rem;
  padding: 14px 28px; border-radius: 8px;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.3s var(--transition);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0; transition: opacity 0.3s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.4); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }
.btn-primary svg { width: 18px; height: 18px; transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-full { width: 100%; justify-content: center; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-weight: 500; font-size: 0.95rem;
  padding: 14px 28px; border-radius: 8px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s;
}
.btn-secondary svg { width: 18px; height: 18px; }
.btn-secondary:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.4); transform: translateY(-2px); }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #0D1F3C 100%);
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 0 80px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-particles { position: absolute; inset: 0; }

.hero-content {
  padding: 0 48px 0 64px;
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em;
  padding: 8px 16px; border-radius: 999px;
  border: 1px solid rgba(201,168,76,0.2);
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease 0.3s both;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  animation: badgePulse 2s infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201,168,76,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(201,168,76,0); }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  font-weight: 800; line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}
.title-line {
  display: block;
  animation: fadeInUp 0.8s ease both;
}
.title-line:nth-child(1) { animation-delay: 0.4s; }
.title-line:nth-child(2) { animation-delay: 0.55s; }
.title-line:nth-child(3) { animation-delay: 0.7s; }
.title-gold { color: var(--gold); }

.hero-subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem; line-height: 1.7;
  max-width: 440px; margin-bottom: 36px;
  animation: fadeInUp 0.8s ease 0.85s both;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 52px;
  animation: fadeInUp 0.8s ease 1s both;
}
.hero-stats {
  display: flex; align-items: center; gap: 32px;
  animation: fadeInUp 0.8s ease 1.15s both;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.2rem; font-weight: 700;
  color: var(--gold);
  display: inline-block;
}
.stat-suffix { font-size: 1.4rem; color: var(--gold); font-weight: 600; }
.stat-label { display: block; font-size: 0.72rem; color: rgba(255,255,255,0.5); margin-top: 2px; letter-spacing: 0.05em; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.15); }

/* Hero visual */
.hero-visual {
  display: flex; align-items: center; justify-content: center;
  padding: 0 48px;
  position: relative; z-index: 2;
  animation: fadeIn 1.2s ease 0.5s both;
}
.hero-seal-container {
  position: relative; width: 420px; height: 420px;
  display: flex; align-items: center; justify-content: center;
}
.seal-glow {
  position: absolute; inset: 40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse { 0%, 100% { opacity: 0.5; transform: scale(1); } 50% { opacity: 1; transform: scale(1.1); } }

.rotating-ring {
  position: absolute; inset: 0;
  animation: sealSpin 20s linear infinite;
}
.ring-svg { width: 100%; height: 100%; }
.ring-text {
  font-family: var(--font-cinzel);
  font-size: 11px;
  fill: rgba(201,168,76,0.6);
  letter-spacing: 2px;
}

.hero-logo-wrap {
  width: 240px; height: 240px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.15);
  position: relative; z-index: 2;
  animation: logoFloat 4s ease-in-out infinite;
}
@keyframes logoFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero-logo { width: 200px; height: 200px; object-fit: contain; filter: drop-shadow(0 8px 32px rgba(201,168,76,0.3)); }

.floating-doc {
  position: absolute;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.75rem; color: rgba(255,255,255,0.8);
  white-space: nowrap;
}
.floating-doc svg { width: 36px; height: 48px; }
.doc-1 { top: 20px; left: -20px; animation: docFloat1 5s ease-in-out infinite; }
.doc-2 { bottom: 40px; right: -20px; animation: docFloat2 5s ease-in-out 1s infinite; }
@keyframes docFloat1 { 0%, 100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-10px) rotate(-1deg); } }
@keyframes docFloat2 { 0%, 100% { transform: translateY(0) rotate(3deg); } 50% { transform: translateY(-8px) rotate(1deg); } }

.floating-badge {
  position: absolute; top: 60px; right: 0;
  background: var(--gold);
  color: var(--navy);
  border-radius: 999px;
  padding: 8px 14px;
  display: flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 600;
  animation: docFloat1 4s ease-in-out 0.5s infinite;
}
.floating-badge svg { width: 14px; height: 14px; }

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-indicator {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem; letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ============ TRUST BAR ============ */
.trust-bar {
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 20px 0;
  overflow: hidden;
}
.trust-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem; font-weight: 500;
  white-space: nowrap;
}
.trust-item svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }

/* ============ SERVICES ============ */
.services { padding: 100px 0; background: var(--off-white); }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: all 0.4s var(--transition);
  transform: translateY(40px); opacity: 0;
}
.service-card.visible { transform: translateY(0); opacity: 1; }
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-navy); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }

.service-card-featured {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: rgba(201,168,76,0.3);
  color: var(--white);
}
.service-card-featured h3, .service-card-featured p, .service-card-featured .service-features li { color: rgba(255,255,255,0.85); }
.service-card-featured h3 { color: var(--white) !important; }
.service-card-featured .service-link { color: var(--gold) !important; }
.service-card-featured .service-link:hover { color: var(--gold-light) !important; }

.featured-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
}

.service-icon-wrap {
  position: relative; width: 60px; height: 60px; margin-bottom: 24px;
}
.service-icon-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border-radius: 14px;
  transition: all 0.3s;
}
.service-card:hover .service-icon-bg { background: linear-gradient(135deg, rgba(201,168,76,0.25), rgba(201,168,76,0.1)); }
.service-icon {
  position: absolute; inset: 12px;
  color: var(--gold); width: 36px; height: 36px;
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem; font-weight: 700;
  color: var(--navy); margin-bottom: 12px;
}
.service-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.service-features { list-style: none; margin-bottom: 28px; }
.service-features li {
  padding: 6px 0;
  font-size: 0.82rem; color: var(--gray);
  border-bottom: 1px solid var(--gray-light);
  display: flex; align-items: center; gap: 8px;
}
.service-card-featured .service-features li { border-bottom-color: rgba(255,255,255,0.1); }
.service-features li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--navy); font-size: 0.85rem; font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s;
}
.service-link svg { width: 16px; height: 16px; }
.service-link:hover { gap: 12px; color: var(--gold); }

/* ============ PROCESS ============ */
.process {
  padding: 100px 0;
  position: relative; overflow: hidden;
}
.process-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.process .section-tag { /* override for dark bg */ }
.process .section-title { color: var(--white); }
.process .section-subtitle { color: rgba(255,255,255,0.6); }

.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.process-line {
  position: absolute; top: 80px; left: calc(12.5% + 24px); right: calc(12.5% + 24px);
  height: 2px; background: rgba(201,168,76,0.2);
  z-index: 0;
}
.process-line-fill {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform-origin: left; transform: scaleX(0);
  transition: transform 1.5s var(--transition);
}
.process-line-fill.active { transform: scaleX(1); }

.step {
  padding: 24px 20px 0;
  text-align: center;
  position: relative; z-index: 1;
  transform: translateY(30px); opacity: 0;
  transition: all 0.5s var(--transition);
}
.step.visible { transform: translateY(0); opacity: 1; }

.step-number {
  font-family: var(--font-cinzel);
  font-size: 0.7rem; color: var(--gold);
  letter-spacing: 0.1em; margin-bottom: 20px;
  opacity: 0.7;
}
.step-content { position: relative; }
.step-icon {
  width: 72px; height: 72px;
  background: rgba(201,168,76,0.1);
  border: 2px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.3s;
  position: relative;
}
.step-icon::after {
  content: ''; position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.15);
}
.step:hover .step-icon { background: rgba(201,168,76,0.2); border-color: var(--gold); transform: scale(1.1); }
.step-icon svg { width: 28px; height: 28px; color: var(--gold); }
.step h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem; font-weight: 600;
  color: var(--white); margin-bottom: 12px;
}
.step p { color: rgba(255,255,255,0.6); font-size: 0.85rem; line-height: 1.7; }

/* ============ ABOUT ============ */
.about { padding: 100px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.about-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.about-seal-wrap {
  position: relative; width: 300px; height: 300px;
  display: flex; align-items: center; justify-content: center;
}
.about-ring {
  position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  border: 1px solid rgba(201,168,76,0.15);
  animation: glowPulse 4s ease-in-out infinite;
}
.about-logo {
  width: 220px; height: 220px; object-fit: contain;
  filter: drop-shadow(0 12px 40px rgba(10,22,40,0.15));
}
.about-cards { position: absolute; right: -40px; top: 20px; display: flex; flex-direction: column; gap: 12px; }
.about-card {
  background: var(--white);
  box-shadow: 0 8px 30px rgba(10,22,40,0.12);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  min-width: 200px;
  border-left: 3px solid var(--gold);
  animation: slideInRight 0.6s ease both;
}
.about-card-1 { animation-delay: 0.8s; }
.about-card-2 { animation-delay: 1s; }
.about-card-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.about-card-icon svg { width: 20px; height: 20px; color: var(--gold); }
.about-card strong { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); }
.about-card span { font-size: 0.72rem; color: var(--gray); }

.about-content .section-tag { display: inline-flex; }
.about-content .section-title { text-align: left; }
.about-lead {
  font-family: var(--font-serif);
  font-size: 1.2rem; color: var(--navy-mid);
  line-height: 1.6; margin-bottom: 16px; font-style: italic;
}
.about-body { color: var(--gray); line-height: 1.8; margin-bottom: 32px; }
.about-values { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.value-item { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: var(--navy); }
.value-check {
  width: 24px; height: 24px; flex-shrink: 0;
  background: rgba(201,168,76,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.value-check svg { width: 12px; height: 12px; color: var(--gold); }

/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: 100px 0;
  background: var(--off-white);
  overflow: hidden;
}
.testimonials-track {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  transition: transform 0.5s var(--transition);
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.3s;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute; top: 20px; right: 24px;
  font-family: var(--font-serif);
  font-size: 5rem; line-height: 1;
  color: var(--gold-pale);
  pointer-events: none;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(10,22,40,0.12); }
.stars { display: flex; gap: 2px; margin-bottom: 16px; }
.stars svg { width: 16px; height: 16px; }
.testimonial-card p {
  color: var(--gray); font-size: 0.9rem; line-height: 1.8;
  margin-bottom: 24px; font-style: italic;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--gold);
  font-size: 0.8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.reviewer strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.reviewer span { font-size: 0.75rem; color: var(--gray); }

.testimonial-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 40px;
}
.testi-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--gray-light);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s;
}
.testi-btn svg { width: 18px; height: 18px; color: var(--navy); }
.testi-btn:hover { background: var(--navy); border-color: var(--navy); }
.testi-btn:hover svg { color: var(--gold); }
.testi-dots { display: flex; gap: 8px; }
.testi-dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--gray-light);
  cursor: pointer; transition: all 0.3s;
  border: none;
}
.testi-dot.active { background: var(--gold); width: 24px; }

/* ============ CONTACT ============ */
.contact {
  padding: 100px 0;
  position: relative; overflow: hidden;
}
.contact-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 80px; position: relative; z-index: 1;
}
.contact-info .section-tag { display: inline-flex; }
.contact-info .section-title { color: var(--white); text-align: left; margin-bottom: 16px; }
.contact-info > p { color: rgba(255,255,255,0.6); margin-bottom: 36px; line-height: 1.7; }

.contact-methods { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-method {
  display: flex; align-items: center; gap: 16px;
  text-decoration: none; color: inherit;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 16px 20px;
  transition: all 0.3s;
}
.contact-method:hover { background: rgba(255,255,255,0.1); border-color: rgba(201,168,76,0.3); }
.contact-method-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(201,168,76,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.contact-method-icon svg { width: 20px; height: 20px; color: var(--gold); }
.contact-method strong { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.5); font-weight: 500; margin-bottom: 2px; }
.contact-method span { color: var(--white); font-weight: 500; font-size: 0.95rem; }

.service-area {
  display: flex; align-items: flex-start; gap: 16px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px; padding: 16px 20px;
}
.area-icon { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.area-icon svg { width: 20px; height: 20px; }
.service-area strong { display: block; font-size: 0.78rem; color: var(--gold); font-weight: 600; margin-bottom: 4px; }
.service-area span { color: rgba(255,255,255,0.6); font-size: 0.85rem; line-height: 1.5; }

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: 20px; padding: 40px 36px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.78rem; font-weight: 600; color: var(--navy); letter-spacing: 0.05em; }
.form-group input, .form-group select, .form-group textarea {
  border: 1.5px solid var(--gray-light);
  border-radius: 8px; padding: 12px 14px;
  font-family: var(--font-sans); font-size: 0.9rem;
  color: var(--navy); background: var(--off-white);
  transition: all 0.25s; outline: none;
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group textarea { resize: vertical; min-height: 80px; }

/* ============ FOOTER ============ */
.footer { background: var(--navy); color: rgba(255,255,255,0.7); }
.footer-top { padding: 72px 0 48px; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin: 16px 0 24px; }
.footer-logo { width: 72px; height: 72px; object-fit: contain; border-radius: 50%; }

.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); text-decoration: none;
  transition: all 0.3s;
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

.footer-col h4 {
  font-family: var(--font-cinzel);
  font-size: 0.75rem; font-weight: 600;
  color: var(--gold); letter-spacing: 0.15em;
  text-transform: uppercase; margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.6); text-decoration: none;
  font-size: 0.88rem; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-contact li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.88rem;
}
.footer-contact svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom .container {
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 8px; width: 100%;
}
.footer-bottom p { font-size: 0.8rem; }
.footer-legal { color: rgba(255,255,255,0.4); }

/* ============ BACK TO TOP ============ */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  opacity: 0; transform: translateY(20px);
  transition: all 0.3s; z-index: 999;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--gold-light); transform: translateY(-3px); }
.back-to-top svg { width: 20px; height: 20px; color: var(--navy); }

/* ============ TOAST ============ */
.toast {
  position: fixed; bottom: 88px; right: 28px;
  background: var(--navy);
  color: var(--white);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 12px; padding: 14px 20px;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem;
  transform: translateX(120%); opacity: 0;
  transition: all 0.4s var(--transition);
  z-index: 999; max-width: 320px;
}
.toast.show { transform: translateX(0); opacity: 1; }
.toast svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }

/* ============ ANIMATIONS ============ */
@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); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { grid-template-columns: 1fr; }
  .hero-content { padding: 0 24px; text-align: center; }
  .hero-subtitle, .hero-actions { max-width: none; justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .hero-scroll { display: none; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-line { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-cards { right: 0; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }
  .testimonials-track { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); padding: 20px; gap: 4px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-title { font-size: 2.2rem; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .stat-divider { width: 80px; height: 1px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-container { justify-content: center; }
  .about-visual { flex-direction: column; }
  .about-cards { position: static; flex-direction: row; flex-wrap: wrap; }
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
}

@media (max-width: 480px) {
  .hero { padding: 100px 0 60px; }
  .hero-content { padding: 0 16px; }
  .section-header { margin-bottom: 40px; }
  .services, .process, .about, .testimonials, .contact { padding: 72px 0; }
}
