/* ============================================================
   Signature Concierge Haul & Transport — Premium Design System
   ============================================================ */

/* --- Custom Properties --- */
:root {
  --gold: #c9a84c;
  --gold-light: #d4b85a;
  --gold-dark: #b8963e;
  --gold-glow: rgba(201, 168, 76, 0.3);
  --black: #111111;
  --black-light: #1a1a1a;
  --black-card: #1e1e1e;
  --gray-dark: #2d2d2d;
  --gray-mid: #555555;
  --gray-text: #333333;
  --gray-light: #999999;
  --white: #ffffff;
  --off-white: #f8f6f0;
  --cream: #f5f0e3;
  --border-cream: #e8e0cc;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --shadow-gold: 0 4px 25px rgba(201,168,76,0.2);
  --radius: 6px;
  --radius-lg: 12px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --header-height: 90px;
}

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

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

body {
  font-family: var(--font-main);
  color: var(--gray-text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--black-light);
}

/* --- Typography --- */
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }

/* --- Lucide Icons --- */
.lucide-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  stroke-width: 1.5;
}

.feature-icon .lucide-icon {
  width: 2rem;
  height: 2rem;
  color: var(--gold);
  stroke-width: 1.5;
}

.service-card-icon .lucide-icon {
  width: 2rem;
  height: 2rem;
  color: var(--gold);
  stroke-width: 1.5;
}

.trust-item .lucide-icon {
  width: 1.1rem;
  height: 1.1rem;
  color: var(--gold);
  stroke-width: 2;
}

.nav-cta .lucide-icon {
  width: 0.9rem;
  height: 0.9rem;
  stroke-width: 2;
}

.btn .lucide-icon {
  width: 1rem;
  height: 1rem;
  stroke-width: 2;
}

.lucide-check {
  width: 1rem;
  height: 1rem;
  color: var(--gold);
  stroke-width: 2.5;
}

.pill .lucide-icon {
  width: 0.9rem;
  height: 0.9rem;
  stroke-width: 1.5;
}

.cta-trust .lucide-icon {
  width: 0.85rem;
  height: 0.85rem;
  color: var(--gold);
  stroke-width: 2;
}

.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--black-light);
}

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

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-mid);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.gold-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 24px;
  border-radius: 2px;
}

.gold-gradient-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), #e0c76a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--dark {
  background: var(--black-light);
  color: var(--white);
}

.section--dark .section-subtitle { color: #ccc; }

.section--cream {
  background: var(--off-white);
}

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

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.25s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.35s; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
  background: transparent;
}

.site-header.scrolled {
  background: rgba(17, 17, 17, 0.97);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-logo img {
  height: 65px;
  width: auto;
  transition: height var(--transition);
}

.site-header.scrolled .site-logo img {
  height: 48px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}

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

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

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black) !important;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition);
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  background: var(--gold-light);
  color: var(--black) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero.loaded .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(17,17,17,0.6) 0%,
    rgba(17,17,17,0.75) 50%,
    rgba(17,17,17,0.9) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.hero-logo {
  height: 160px;
  width: auto;
  display: block;
  margin: 0 auto 32px;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  animation: fadeInUp 0.8s 0.1s forwards;
  filter: drop-shadow(0 4px 20px rgba(201,168,76,0.3));
}

@media (max-width: 768px) {
  .hero-logo {
    height: 110px;
    margin-bottom: 24px;
  }
}

@media (max-width: 480px) {
  .hero-logo {
    height: 85px;
    margin-bottom: 20px;
  }
}

.hero-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 8px 24px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s 0.3s forwards;
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s 0.5s forwards;
}

.hero-title em {
  font-style: normal;
  color: var(--gold);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #ccc;
  font-weight: 300;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 36px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s 0.7s forwards;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s 0.9s forwards;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: fadeInUp 0.8s 1.2s forwards;
}

.hero-scroll-indicator span {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(201,168,76,0.5);
  border-radius: 12px;
  position: relative;
}

.hero-scroll-indicator span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDown 1.8s infinite;
}

@keyframes scrollDown {
  0% { opacity: 1; transform: translateY(0); }
  60% { opacity: 0; transform: translateY(14px); }
  100% { opacity: 0; transform: translateY(14px); }
}

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

/* --- Page Hero (Interior Pages) --- */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--black) 0%, var(--gray-dark) 100%);
  text-align: center;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.page-hero-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero-subtitle {
  font-size: 1.1rem;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Breadcrumb --- */
.breadcrumb {
  padding: 16px 0;
  font-size: 0.85rem;
  color: var(--gray-light);
  border-bottom: 1px solid #eee;
}

.breadcrumb a { color: var(--gold); font-weight: 500; }
.breadcrumb span { margin: 0 8px; color: #ccc; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn--gold {
  background: var(--gold);
  color: var(--black);
}

.btn--gold:hover {
  background: var(--gold-light);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--gold);
}

.btn--outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

.btn--dark {
  background: var(--black-light);
  color: var(--white);
  border: 2px solid var(--gray-dark);
}

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

.btn--sm {
  padding: 10px 24px;
  font-size: 0.8rem;
}

/* ============================================================
   TRUST BADGES
   ============================================================ */
.trust-bar {
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 28px 0;
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.trust-item .icon {
  font-size: 1.3rem;
  color: var(--gold);
}

/* ============================================================
   FEATURE CARDS (Why Choose Us)
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.feature-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

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

.feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--off-white), var(--cream));
  border-radius: 50%;
  font-size: 1.8rem;
  color: var(--gold);
  border: 2px solid var(--border-cream);
  transition: all var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--gray-mid);
  line-height: 1.6;
}

/* Dark variant */
.feature-card--dark {
  background: var(--black-card);
  border-color: #333;
}

.feature-card--dark h3 { color: var(--white); }
.feature-card--dark p { color: #ccc; }

.feature-card--dark .feature-icon {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.3);
}

.feature-card--dark:hover {
  border-color: var(--gold);
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #eee;
  transition: all var(--transition);
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card-header {
  background: linear-gradient(135deg, var(--black-light) 0%, var(--gray-dark) 100%);
  padding: 32px 28px;
  position: relative;
}

.service-card-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
}

.service-card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.service-card-header h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 4px;
}

.service-card-header p {
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 1;
}

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

.service-card-body p {
  font-size: 0.95rem;
  color: var(--gray-mid);
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-card-body .btn { width: 100%; justify-content: center; }

/* ============================================================
   PILL LINKS (Services & Areas)
   ============================================================ */
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--white);
  border: 1px solid #ddd;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-text);
  transition: all var(--transition);
  text-decoration: none;
}

.pill:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.pill--dark {
  background: var(--black-card);
  border-color: #333;
  color: #ccc;
}

.pill--dark:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.pill--gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  font-weight: 600;
}

.pill--gold:hover {
  background: var(--gold-light);
  color: var(--black);
}

/* ============================================================
   STATS / COUNTERS
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 50%, #222 100%);
  padding: 80px 0;
  position: relative;
}

.stats-section::before,
.stats-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.stats-section::before { top: 0; }
.stats-section::after { bottom: 0; }

.stats-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
}

.stat-item {
  text-align: center;
  min-width: 160px;
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: #ccc;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================================
   AREA PHOTO CARDS
   ============================================================ */
.area-photos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.area-photo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 320px;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.area-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.area-photo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(0,0,0,0.7) 100%
  );
  transition: background 0.4s ease;
}

.area-photo-card:hover::after {
  background: linear-gradient(
    180deg,
    transparent 20%,
    rgba(0,0,0,0.8) 100%
  );
}

.area-photo-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 28px;
  text-align: center;
}

.area-photo-card-content h3 {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.area-photo-card-content p {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.area-photo-card .btn {
  padding: 10px 28px;
  font-size: 0.78rem;
}

@media (max-width: 968px) {
  .area-photos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .area-photos-grid {
    grid-template-columns: 1fr;
  }
  .area-photo-card {
    height: 260px;
  }
}

/* ============================================================
   TRUST BADGES (Premium Circular)
   ============================================================ */
.trust-badges-section {
  background: var(--off-white);
  padding: 70px 0;
}

.trust-badges-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 150px;
}

.trust-badge-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--white);
  position: relative;
  box-shadow: 0 4px 20px rgba(201,168,76,0.15);
  transition: all var(--transition);
}

.trust-badge:hover .trust-badge-circle {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.25);
  border-color: var(--gold-light);
}

.trust-badge-circle::before {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
}

.trust-badge-circle .lucide-icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
  stroke-width: 1.5;
  margin-bottom: 2px;
}

.trust-badge-circle .badge-text {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--black-light);
  line-height: 1.3;
  padding: 0 10px;
}

.trust-badge-label {
  margin-top: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--black-light);
  letter-spacing: 0.5px;
}

.trust-badge-sublabel {
  font-size: 0.72rem;
  color: var(--gray-mid);
  margin-top: 2px;
}

@media (max-width: 768px) {
  .trust-badges-grid {
    gap: 24px;
  }
  .trust-badge-circle {
    width: 100px;
    height: 100px;
  }
  .trust-badge-circle .lucide-icon {
    width: 26px;
    height: 26px;
  }
  .trust-badge-circle .badge-text {
    font-size: 0.55rem;
  }
}

@media (max-width: 480px) {
  .trust-badges-grid {
    gap: 16px;
  }
  .trust-badge {
    max-width: 100px;
  }
  .trust-badge-circle {
    width: 80px;
    height: 80px;
    border-width: 2px;
  }
  .trust-badge-circle .lucide-icon {
    width: 22px;
    height: 22px;
  }
  .trust-badge-circle .badge-text {
    font-size: 0.5rem;
    letter-spacing: 0.5px;
  }
  .trust-badge-label {
    font-size: 0.7rem;
  }
}

/* ============================================================
   PAGE CONTENT (Interior Pages)
   ============================================================ */
.page-content {
  padding: 60px 0;
}

.page-content .container {
  max-width: 900px;
}

.content-block h1 {
  font-size: 2rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}

.content-block h2 {
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 16px;
}

.content-block h3 {
  font-size: 1.2rem;
  margin-top: 32px;
  margin-bottom: 12px;
  padding-left: 14px;
  border-left: 3px solid var(--gold);
}

.content-block p {
  font-size: 1.05rem;
  color: var(--gray-text);
  line-height: 1.8;
  margin-bottom: 18px;
}

.content-block p:first-of-type {
  font-size: 1.15rem;
  color: var(--gray-text);
}

/* Check list */
.check-list {
  margin: 20px 0;
}

.check-list li {
  padding: 8px 0 8px 32px;
  position: relative;
  line-height: 1.6;
  font-size: 1rem;
}

.check-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Related links */
.related-links {
  margin: 24px 0;
}

.related-link {
  display: block;
  padding: 12px 18px;
  margin-bottom: 8px;
  background: var(--off-white);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--gray-text);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
}

.related-link:hover {
  background: var(--cream);
  color: var(--gold);
  padding-left: 24px;
}

/* Trust badges inline */
.trust-badges-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 36px 0;
  padding: 28px 20px;
  background: linear-gradient(135deg, var(--off-white), var(--cream));
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-cream);
}

.trust-badge {
  text-align: center;
  min-width: 120px;
  padding: 8px;
}

.trust-badge .badge-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.trust-badge strong {
  display: block;
  font-size: 0.85rem;
  color: var(--black-light);
}

/* ============================================================
   CTA SECTIONS
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--black) 0%, var(--gray-dark) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
}

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

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

.cta-section h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--white);
  font-weight: 300;
  margin-bottom: 12px;
}

.cta-section h2 em {
  font-style: normal;
  color: var(--gold);
  font-weight: 600;
}

.cta-section p {
  color: #ddd;
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.cta-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.cta-trust span {
  color: #bbb;
  font-size: 0.82rem;
  letter-spacing: 1px;
}

/* Mid-page CTA box */
.cta-box {
  background: var(--black-light);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  margin: 36px 0;
}

.cta-box h3 {
  color: var(--gold);
  border: none;
  padding: 0;
  margin-top: 0;
}

.cta-box p { color: var(--white); }
.cta-box .btn { margin-top: 12px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--black);
  color: #ccc;
  padding: 60px 0 0;
  border-top: 3px solid var(--gold);
}

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

.footer-brand img {
  height: 45px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #bbb;
}

.footer-col h4 {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: #bbb;
  font-size: 0.9rem;
  padding: 4px 0;
  transition: all var(--transition);
}

.footer-col a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid #222;
  padding: 20px 0;
  text-align: center;
  font-size: 0.82rem;
  color: #666;
}

/* ============================================================
   CONTACT FORM (Contact page)
   ============================================================ */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-text);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 1rem;
  color: var(--gray-text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

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

/* ============================================================
   PRICING TABLE
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card--featured {
  border-color: var(--gold);
  position: relative;
}

.pricing-card--featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 16px;
  right: -28px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 36px;
  transform: rotate(45deg);
}

.pricing-card-header {
  background: linear-gradient(135deg, var(--black-light), var(--gray-dark));
  padding: 28px;
  text-align: center;
}

.pricing-card-header h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.pricing-card-header .price {
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 700;
}

.pricing-card-body {
  padding: 28px;
}

.pricing-card-body li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 0.92rem;
  color: var(--gray-mid);
  border-bottom: 1px solid #f0f0f0;
}

.pricing-card-body li:last-child { border: none; }

.pricing-card-body li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.pricing-card-footer {
  padding: 0 28px 28px;
}

.pricing-card-footer .btn { width: 100%; justify-content: center; }

/* ============================================================
   AREAS GRID
   ============================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.area-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid #eee;
  border-radius: var(--radius);
  font-weight: 500;
  color: var(--gray-text);
  transition: all var(--transition);
}

.area-card:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.area-card .pin { color: var(--gold); font-size: 1.1rem; }

/* Dark variant */
.area-card--dark {
  background: var(--black-card);
  border-color: #333;
  color: #ccc;
}

.area-card--dark:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 40px 0;
}

.about-highlight-text h3 {
  border: none;
  padding: 0;
  font-size: 1.4rem;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.about-value {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.about-value .icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 8px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 968px) {
  /* Hide nav logo on mobile/tablet — hero logo is visible */
  .site-logo {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
  }

  .site-header {
    height: 60px;
  }

  .header-inner {
    height: 60px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: rgba(17,17,17,0.98);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 36px 36px;
    gap: 0;
    transition: right 0.4s ease;
    z-index: 999;
    box-shadow: -4px 0 30px rgba(0,0,0,0.5);
  }

  .nav-links.open { right: 0; }

  .nav-links a {
    padding: 14px 0;
    font-size: 1rem;
    width: 100%;
    border-bottom: 1px solid #222;
  }

  .nav-cta {
    margin-top: 16px;
    width: 100%;
    justify-content: center;
  }

  .menu-toggle { display: flex; }

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

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

/* --- Tablet (iPad portrait) --- */
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .container { padding: 0 20px; }
  .hero-title { font-size: clamp(2rem, 6vw, 2.8rem); }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .services-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .page-hero { padding: 120px 0 60px; }
  .page-hero h1 { font-size: 2rem; }
  .section-title { font-size: 1.8rem; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

/* --- Mobile (phones) --- */
@media (max-width: 640px) {
  .section { padding: 48px 0; }
  .container { padding: 0 16px; }

  .hero { min-height: 85vh; }
  .hero-title { font-size: clamp(1.6rem, 7vw, 2.2rem); line-height: 1.25; }
  .hero-subtitle { font-size: 0.9rem; padding: 0 10px; }
  .hero-buttons { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; }
  .hero-buttons .btn { width: 100%; justify-content: center; padding: 16px 28px; font-size: 0.95rem; text-align: center; }

  .trust-bar-inner { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .trust-item { font-size: 0.75rem; letter-spacing: 1px; }

  .section-title { font-size: 1.5rem; }
  .section-label { font-size: 0.7rem; }
  .section-text { font-size: 0.95rem; padding: 0 10px; }

  .features-grid { grid-template-columns: 1fr; gap: 20px; }
  .feature-card { padding: 24px 20px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px 20px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-number { font-size: 2.2rem; }
  .stat-label { font-size: 0.75rem; }

  .areas-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .area-pill { padding: 10px 14px; font-size: 0.8rem; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .footer-logo { margin: 0 auto; }

  .cta-buttons { flex-direction: column; align-items: stretch; max-width: 320px; margin-left: auto; margin-right: auto; }
  .cta-buttons .btn { width: 100%; justify-content: center; text-align: center; }

  .page-hero { padding: 100px 0 48px; }
  .page-hero h1 { font-size: 1.6rem; }
  .page-hero p { font-size: 0.9rem; }

  .breadcrumb { font-size: 0.75rem; }

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

  /* Tap targets — minimum 44px for accessibility */
  .btn, .area-pill, .nav-links a { min-height: 44px; }
  
  /* Prevent horizontal scroll */
  body { overflow-x: hidden; }
  .container { overflow-x: hidden; }
}

/* --- Small phones (iPhone SE, etc) --- */
@media (max-width: 375px) {
  .hero-title { font-size: 1.5rem; }
  .hero-buttons .btn { padding: 14px 20px; font-size: 0.88rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-number { font-size: 1.8rem; }
  .areas-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .area-pill { padding: 8px 10px; font-size: 0.72rem; }
  .trust-bar-inner { gap: 12px; }
  .trust-item { font-size: 0.7rem; }
}

/* --- Mobile nav overlay --- */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

/* --- Utility --- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* --- Scroll Progress Bar --- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  z-index: 10000;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px var(--gold-glow);
}

/* --- Cursor Glow (desktop) --- */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

/* --- Word Reveal Animation --- */
.word-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: wordReveal 0.7s ease forwards;
}

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

/* --- Gold Line Reveal --- */
.gold-line {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 24px auto;
  transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gold-line.animate {
  width: 120px;
}

/* --- Card hover gold glow --- */
.service-card:hover,
.feature-card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 30px rgba(201,168,76,0.1) !important;
}

/* --- Stagger children animation --- */
.stagger {
  opacity: 0;
  transform: translateY(24px);
/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: var(--black);
  border-top: 2px solid var(--gold);
  padding: 20px 24px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
  animation: slideUp 0.5s ease-out;
}

.cookie-banner.show { display: flex; }

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

.cookie-banner p {
  color: #ddd;
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 700px;
  margin: 0;
}

.cookie-banner a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-banner a:hover {
  color: var(--gold-light);
}

.cookie-banner-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 10px 24px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  font-family: var(--font-main);
  transition: all var(--transition);
}

.cookie-btn--accept {
  background: var(--gold);
  color: var(--black);
}

.cookie-btn--accept:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.cookie-btn--decline {
  background: transparent;
  color: #ccc;
  border: 1px solid #444;
}

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

  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Hero parallax bg --- */
.hero-bg {
  transition: transform 0.1s linear;
  will-change: transform;
}

/* --- Smooth page entry --- */
body {
  animation: pageEntry 0.6s ease;
}

@keyframes pageEntry {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* --- Button hover ripple --- */
.btn-primary::after,
.btn-gold::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::after,
.btn-gold:hover::after {
  width: 300px;
  height: 300px;
}

.btn-primary,
.btn-gold {
  position: relative;
  overflow: hidden;
}

/* --- Loading shimmer --- */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

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