/* ============================================
   10X TAX SERVICES — Global Stylesheet
   Design: Luxury Dark | Navy · Gold · Emerald
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --navy-deep: #F9FAFB;
  --navy-mid: #F3F4F6;
  --navy-card: #FFFFFF;
  --navy-border: #E5E7EB;
  --gold: #C9A14A;
  --gold-light: #E4C070;
  --gold-dim: #8B6B2A;
  --green: #1B6B3A;
  --green-light: #23884A;
  --green-glow: rgba(27, 107, 58, 0.15);
  --cream: #111827;
  /* Used for headings, needs to be dark */
  --white: #FFFFFF;
  --text-muted: #6B7280;
  --text-body: #374151;
  --shadow-gold: 0 8px 40px rgba(201, 161, 74, 0.18);
  --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.1);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--navy-deep);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ── Typography ── */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-display);
  color: var(--cream);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 500;
}

h4 {
  font-size: 1.2rem;
  font-weight: 600;
  font-family: var(--font-body);
}

p {
  font-size: 1.05rem;
  color: var(--text-body);
}

.gold-text {
  color: var(--gold);
}

.green-text {
  color: var(--green-light);
}

.cream-text {
  color: var(--cream);
}

.muted-text {
  color: var(--text-muted);
}

/* ── Layout Utilities ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 60px 0;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-col {
  flex-direction: column;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

.gap-3 {
  gap: 3rem;
}

.text-center {
  text-align: center;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ── Section Label ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 161, 74, 0.1);
  border: 1px solid rgba(201, 161, 74, 0.25);
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy-deep);
  box-shadow: 0 4px 20px rgba(201, 161, 74, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 161, 74, 0.5);
  color: var(--navy-deep);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-green {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(27, 107, 58, 0.35);
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(27, 107, 58, 0.5);
}

/* ── Divider Lines ── */
.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 1.2rem 0;
}

.gold-line.center {
  margin: 1.2rem auto;
}

/* ── Cards ── */
.card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
}

.card:hover {
  border-color: rgba(201, 161, 74, 0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

/* ── Gold Shimmer Animation ── */
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

.shimmer-text {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 40%, #FFF8DC 50%, var(--gold-light) 60%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

/* ── Scroll Animation Base ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  background: rgba(255, 255, 255, 0.92);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--navy-border);
  padding: 0.8rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-logo img {
  height: 86px !important;
  mix-blend-mode: multiply;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 4px 16px rgba(27, 107, 58, 0.4);
  flex-shrink: 0;
}

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

.logo-main {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-body);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
  border-radius: 2px;
}

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

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

.nav-cta {
  margin-left: 0.5rem;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

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

.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 nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--cream);
  font-weight: 500;
  transition: color 0.3s;
}

.mobile-nav a:hover {
  color: var(--gold);
}

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2rem;
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border: none;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
}

/* Animated background particles canvas */
#hero-canvas {
  position: absolute;
  inset: 0;
  opacity: 0.4;
}

/* Gradient overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(27, 107, 58, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201, 161, 74, 0.08) 0%, transparent 50%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 8rem 0 4rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(27, 107, 58, 0.15);
  border: 1px solid rgba(27, 107, 58, 0.4);
  padding: 0.45rem 1.1rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1.5rem;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--green-light);
  border-radius: 50%;
  animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(35, 136, 74, 0.6);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(35, 136, 74, 0);
  }
}

.hero-title {
  margin-bottom: 1.5rem;
}

.hero-title .line-thin {
  display: block;
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  font-size: 0.55em;
  letter-spacing: 0.06em;
  margin-bottom: 0.3rem;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-body);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

/* Trust badges row */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--navy-border);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.trust-badge svg {
  flex-shrink: 0;
}

/* Hero image side */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-photo-frame {
  position: relative;
  width: 440px;
  max-width: 100%;
}

.hero-photo-frame::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--gold) 0%, var(--green) 50%, var(--navy-border) 100%);
  z-index: 0;
}

.hero-photo {
  position: relative;
  z-index: 1;
  border-radius: calc(var(--radius-lg) - 2px);
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top center;
}

/* Floating stat cards */
.float-card {
  position: absolute;
  background: rgba(11, 22, 48, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  z-index: 3;
}

.float-card-1 {
  top: 40px;
  right: -60px;
  border-color: rgba(201, 161, 74, 0.35);
}

.float-card-2 {
  bottom: 80px;
  left: -60px;
  border-color: rgba(27, 107, 58, 0.35);
}

.float-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
}

.float-num .sup {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 400;
}

.float-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin-top: 0.2rem;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.5;
}

.scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid var(--text-muted);
  border-radius: 12px;
  position: relative;
}

.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 6px;
  background: var(--gold);
  border-radius: 2px;
  animation: scroll-dot 1.6s ease-in-out infinite;
}

@keyframes scroll-dot {
  0% {
    opacity: 1;
    top: 5px;
  }

  100% {
    opacity: 0;
    top: 18px;
  }
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--navy-card);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
  padding: 2rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--navy-border);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.1em;
}

.stat-suffix {
  font-size: 1.6rem;
  color: var(--gold);
  padding-bottom: 0.1rem;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ============================================
   ABOUT / INTRO SECTION
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img {
  border-radius: var(--radius-md);
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy-deep);
  padding: 1.2rem 1.8rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.about-badge .big {
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
}

.about-badge .small {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-sm);
  padding: 1rem;
}

.feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(27, 107, 58, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  color: var(--green-light);
}

.feature-text p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.1rem;
}

/* ============================================
   SERVICES OVERVIEW (Homepage)
   ============================================ */
.services-overview {
  background: linear-gradient(180deg, var(--navy-deep) 0%, var(--navy-mid) 50%, var(--navy-deep) 100%);
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

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

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

.service-card:hover {
  border-color: rgba(201, 161, 74, 0.25);
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(27, 107, 58, 0.12);
  border: 1px solid rgba(27, 107, 58, 0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--green);
  border-color: var(--green-light);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--cream);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.service-tag {
  font-size: 0.72rem;
  background: rgba(201, 161, 74, 0.08);
  border: 1px solid rgba(201, 161, 74, 0.2);
  color: var(--gold);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  font-weight: 500;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-light);
  transition: gap 0.3s;
}

.service-link:hover {
  gap: 0.8rem;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--navy-border), var(--gold-dim), var(--navy-border), transparent);
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 70px;
  height: 70px;
  background: var(--navy-card);
  border: 2px solid var(--gold-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  transition: var(--transition);
}

.process-step:hover .step-num {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
  box-shadow: 0 0 0 8px rgba(201, 161, 74, 0.15);
}

.process-step h4 {
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-bg {
  background: var(--navy-mid);
  border-top: 1px solid var(--navy-border);
  border-bottom: 1px solid var(--navy-border);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(201, 161, 74, 0.12);
  line-height: 1;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: 0.9rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, var(--gold-dim) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  color: var(--cream);
  font-size: 0.9rem;
}

.author-loc {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--green) 0%, #0E4525 50%, var(--navy-mid) 100%);
  border-top: 1px solid rgba(27, 107, 58, 0.4);
  border-bottom: 1px solid rgba(27, 107, 58, 0.4);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 161, 74, 0.12) 0%, transparent 70%);
}

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

.cta-inner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--navy-border);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--cream);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  font-family: var(--font-body);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.3s;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-contact-item a {
  color: var(--text-muted);
  transition: color 0.3s;
}

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

.footer-bottom {
  border-top: 1px solid var(--navy-border);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.irs-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 161, 74, 0.08);
  border: 1px solid rgba(201, 161, 74, 0.2);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.page-hero {
  padding: 10rem 0 5rem;
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy-deep) 100%);
  text-align: center;
  border-bottom: 1px solid var(--navy-border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(27, 107, 58, 0.1) 0%, transparent 70%);
}

.page-hero h1 {
  position: relative;
  z-index: 1;
}

.page-hero p {
  position: relative;
  z-index: 1;
  color: var(--text-muted);
  max-width: 520px;
  margin: 1rem auto 0;
}

.services-full {
  padding: 80px 0;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
  padding: 3rem 0;
  border-bottom: 1px solid var(--navy-border);
}

.service-row:last-child {
  border-bottom: none;
}

.service-row-label {
  position: sticky;
  top: 100px;
}

.service-row-label .section-label {
  margin-bottom: 0.8rem;
}

.service-row-label h3 {
  font-size: 2rem;
}

.service-row-label p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.8rem;
}

.service-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.service-item {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: var(--transition);
}

.service-item:hover {
  border-color: rgba(201, 161, 74, 0.3);
  background: rgba(15, 30, 61, 0.8);
}

.service-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(27, 107, 58, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.service-item h4 {
  color: var(--cream);
  margin-bottom: 0.4rem;
  font-size: 1rem;
}

.service-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Price Table */
.price-section {
  padding: 80px 0;
  background: var(--navy-mid);
}

.price-table-wrap {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 3rem;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
}

.price-table th {
  background: rgba(201, 161, 74, 0.08);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1.2rem 2rem;
  text-align: left;
  border-bottom: 1px solid var(--navy-border);
}

.price-table td {
  padding: 1.1rem 2rem;
  border-bottom: 1px solid rgba(28, 46, 82, 0.5);
  color: var(--text-body);
  font-size: 0.92rem;
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.price-table td:first-child {
  color: var(--cream);
  font-weight: 500;
}

.price-table .call-tag {
  display: inline-block;
  background: rgba(27, 107, 58, 0.15);
  border: 1px solid rgba(27, 107, 58, 0.3);
  color: var(--green-light);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
  padding: 80px 0;
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-info>p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: rgba(201, 161, 74, 0.3);
}

.cc-icon {
  width: 44px;
  height: 44px;
  background: rgba(27, 107, 58, 0.12);
  border: 1px solid rgba(27, 107, 58, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cc-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.cc-value {
  color: var(--cream);
  font-weight: 500;
  font-size: 0.95rem;
}

.cc-value a {
  color: var(--cream);
  transition: color 0.3s;
}

.cc-value a:hover {
  color: var(--gold);
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(28, 46, 82, 0.5);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row .day {
  color: var(--text-muted);
}

.hours-row .time {
  color: var(--cream);
  font-weight: 500;
}

.hours-row.closed .time {
  color: var(--gold-dim);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-form-wrap h3 {
  color: var(--cream);
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
}

.contact-form-wrap>p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--navy-mid);
  border: 1.5px solid var(--navy-border);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1.1rem;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color 0.3s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group select option {
  background: var(--navy-mid);
}

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

.form-submit {
  margin-top: 1.5rem;
  width: 100%;
  justify-content: center;
}

/* ============================================
   BOOKING PAGE
   ============================================ */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
  padding: 80px 0;
}

.booking-info h2 {
  margin-bottom: 1rem;
}

.booking-info>p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.booking-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.benefit-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--text-body);
}

.benefit-row svg {
  flex-shrink: 0;
}

.booking-form-wrap {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.booking-form-wrap h3 {
  color: var(--cream);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.booking-form-wrap>p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 2rem;
}

.step-indicator {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2rem;
}

.step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  flex: 1;
}

.step-dot-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy-mid);
  border: 2px solid var(--navy-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}

.step-dot.active .step-dot-circle {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
}

.step-dot.done .step-dot-circle {
  background: var(--green);
  border-color: var(--green-light);
  color: white;
}

.step-dot-label {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.step-line {
  flex: 1;
  height: 2px;
  background: var(--navy-border);
  margin: 0 0.3rem;
  align-self: flex-start;
  margin-top: 15px;
}

.step-line.done {
  background: var(--green);
}

.service-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.service-option {
  border: 1.5px solid var(--navy-border);
  border-radius: var(--radius-sm);
  padding: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.service-option:hover {
  border-color: var(--gold-dim);
}

.service-option.selected {
  border-color: var(--gold);
  background: rgba(201, 161, 74, 0.08);
}

.service-option-icon {
  width: 32px;
  height: 32px;
  background: rgba(27, 107, 58, 0.12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-option-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--cream);
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.time-slot {
  border: 1.5px solid var(--navy-border);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.5rem;
  text-align: center;
  cursor: pointer;
  font-size: 0.83rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.time-slot:hover {
  border-color: var(--gold-dim);
  color: var(--cream);
}

.time-slot.selected {
  border-color: var(--gold);
  background: rgba(201, 161, 74, 0.1);
  color: var(--gold);
  font-weight: 600;
}

.time-slot.unavailable {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Calendar */
.mini-calendar {
  background: var(--navy-mid);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  margin-bottom: 1.5rem;
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.cal-header span {
  font-weight: 600;
  color: var(--cream);
  font-size: 0.95rem;
}

.cal-nav {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gold);
  font-size: 1.2rem;
  padding: 0.2rem 0.4rem;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal-day-name {
  text-align: center;
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 600;
  padding: 0.3rem 0;
  letter-spacing: 0.06em;
}

.cal-day {
  text-align: center;
  padding: 0.45rem 0.2rem;
  font-size: 0.82rem;
  border-radius: 6px;
  cursor: pointer;
  color: var(--text-body);
  transition: background 0.2s, color 0.2s;
}

.cal-day:hover {
  background: rgba(201, 161, 74, 0.1);
  color: var(--gold);
}

.cal-day.selected {
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 700;
}

.cal-day.today {
  color: var(--green-light);
  font-weight: 600;
}

.cal-day.empty {
  cursor: default;
}

.cal-day.past {
  opacity: 0.3;
  cursor: not-allowed;
}

/* ============================================
   FORM SUCCESS
   ============================================ */
.success-message {
  display: none;
  text-align: center;
  padding: 2rem;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: rgba(27, 107, 58, 0.15);
  border: 2px solid var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.success-message h3 {
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.success-message p {
  color: var(--text-muted);
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

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

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-photo-frame {
    width: 340px;
  }

  .float-card-1 {
    right: -10px;
  }

  .float-card-2 {
    left: -10px;
  }

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

  .about-img-wrap {
    max-width: 480px;
    margin: 0 auto;
  }

  .services-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps::before {
    display: none;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid .stat-item:nth-child(2)::after,
  .stats-grid .stat-item:nth-child(4)::after {
    display: none;
  }

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

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

  .service-row-label {
    position: static;
  }

  .service-items-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  h1 {
    font-size: 2.4rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .section {
    padding: 60px 0;
  }

  .container {
    padding: 0 1.2rem;
  }

  .hero-photo-frame {
    width: 280px;
  }

  .hero-photo {
    height: 360px;
  }

  .float-card {
    display: none;
  }

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

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

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

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

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

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

  .service-selector {
    grid-template-columns: 1fr;
  }

  .time-slots {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-actions {
    flex-direction: column;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

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

@media (max-width: 480px) {
  .hero-photo-frame {
    width: 240px;
  }

  .time-slots {
    grid-template-columns: repeat(2, 1fr);
  }

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