﻿/* Google Fonts loaded via preload in HTML for better performance */

:root {
  color-scheme: dark;
  --bg: #0a0b0d;
  --bg-alt: #12141a;
  --bg-deep: #060708;
  --text: #f3f5f7;
  --muted: #9ca3af;
  --accent: #D4AF37;
  --accent-strong: #FFD700;
  --accent-glow: rgba(212, 175, 55, 0.4);
  --accent-subtle: rgba(212, 175, 55, 0.1);
  --card: rgba(28, 31, 36, 0.8);
  --card-solid: #1c1f24;
  --border: rgba(42, 47, 54, 0.6);
  --border-glow: rgba(212, 175, 55, 0.3);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(212, 175, 55, 0.15);
  --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #D4AF37 100%);
  --gradient-dark: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4));
  --blur-amount: 12px;
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Modern scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent), #8B7355);
  border-radius: 10px;
  border: 2px solid var(--bg-deep);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent-strong);
}

/* Focus styles for accessibility */
*:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Page load animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px var(--accent-glow), 0 0 40px rgba(212, 175, 55, 0.1);
  }
  50% {
    box-shadow: 0 0 30px var(--accent-glow), 0 0 60px rgba(212, 175, 55, 0.2);
  }
}

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

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

/* Scroll reveal animation class */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--transition-smooth);
}

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

/* Glassmorphism utility */
.glass {
  background: rgba(28, 31, 36, 0.6);
  backdrop-filter: blur(var(--blur-amount));
  -webkit-backdrop-filter: blur(var(--blur-amount));
  border: 1px solid var(--border);
}

/* Gradient text utility */
.gradient-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glow utility */
.glow-effect {
  position: relative;
}

.glow-effect::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient-gold);
  border-radius: inherit;
  opacity: 0;
  z-index: -1;
  filter: blur(15px);
  transition: opacity 0.4s var(--transition-smooth);
}

.glow-effect:hover::before {
  opacity: 0.5;
}

* {
  box-sizing: border-box;
}

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

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  font-family: "Open Sans", "Genos", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  animation: fadeIn 0.6s ease-out;
}

/* Decorative background orbs */
body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

body::after {
  content: '';
  position: fixed;
  bottom: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--transition-smooth), transform 0.3s var(--transition-smooth);
}

a:hover,
a:focus {
  color: var(--accent);
}

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

/* Accessible skip link */
.skip-link {
  position: fixed;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  background: var(--accent);
  color: #111;
  padding: 14px 28px;
  border-radius: 0 0 12px 12px;
  z-index: 9999;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow);
  transition: top 0.3s var(--transition-smooth);
}
.footer-map {
  margin-top: 14px;
}
.footer-map iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
}

.skip-link:focus {
  top: 0;
  outline: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

.top-bar {
  background: linear-gradient(180deg, var(--bg-deep), rgba(6, 7, 8, 0.95));
  border-bottom: 1px solid var(--border);
  position: relative;
}

.top-bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
}

.top-bar__grid {
  display: grid;
  gap: 16px 32px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  padding: 14px 0;
}

.top-item {
  display: flex;
  gap: 14px;
  align-items: center;
  color: var(--muted);
  transition: transform 0.3s var(--transition-smooth);
}

.top-item:hover {
  transform: translateX(5px);
}

.icon-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, #1e2127, #181a1f);
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.3s var(--transition-smooth);
}

.top-item:hover .icon-pill {
  border-color: var(--accent);
  box-shadow: 0 4px 20px var(--accent-glow), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: scale(1.05);
}

.top-item__title {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #fff;
  font-size: 0.75rem;
  margin-bottom: 2px;
}

.top-item__link {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.3s var(--transition-smooth);
}

.top-item__link:hover {
  color: var(--accent);
}

.site-header {
  background: rgba(10, 11, 13, 0.85);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.3s var(--transition-smooth);
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
}

.header-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  flex-wrap: wrap;
}

.logo img {
  width: 180px;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.2));
}

.call-btn {
  margin-left: auto;
  padding: 14px 26px;
  background: var(--gradient-gold);
  background-size: 200% auto;
  color: #111;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
  transition: all 0.4s var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.call-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s var(--transition-smooth);
}

.call-btn:hover {
  background-position: right center;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  color: #000;
}

.call-btn:hover::before {
  transform: translateX(100%);
}

/* Header social links section */
.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.header-actions .call-btn {
  margin-left: 0;
}

.header-actions .socials {
  gap: 10px;
}

.header-actions .socials a {
  width: 40px;
  height: 40px;
}

.header-actions .socials svg {
  width: 18px;
  height: 18px;
}

/* Make YouTube look like the rounded-rectangle logo (shape only, colors follow site theme). */
.socials a.is-youtube {
  border-radius: 12px;
  width: 52px;
}

.socials a.is-youtube svg {
  width: 24px;
  height: 24px;
}

/* Prevent header nav spacing conflicts */
.site-header .nav {
  margin-left: 0;
}

.nav {
  margin-left: auto;
}

.nav summary {
  list-style: none;
  cursor: pointer;
  color: #fff;
  background: var(--card);
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav summary::-webkit-details-marker {
  display: none;
}

.nav-panel {
  margin-top: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}

.nav-list,
.submenu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list > li {
  margin-bottom: 10px;
}

.nav-list a {
  color: #fff;
  font-weight: 600;
}

.submenu {
  margin-top: 8px;
  margin-left: 14px;
  border-left: 1px solid var(--border);
  padding-left: 12px;
}

.submenu li {
  margin: 6px 0;
}
.hero {
  padding: 100px 0 80px;
  background: 
    radial-gradient(ellipse at 20% 0%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  animation: float 10s ease-in-out infinite reverse;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  animation: slideInLeft 0.8s var(--transition-smooth);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.5em;
  color: var(--accent);
  font-size: 0.75rem;
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gradient-gold);
}

.brand {
  font-family: "Audiowide", "Open Sans", sans-serif;
  font-size: 1.6rem;
  margin: 0 0 16px;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px var(--accent-glow);
}

.hero h1 {
  font-family: "Genos", "Open Sans", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  margin: 0 0 20px;
  line-height: 1.2;
  font-weight: 700;
}

.hero-links {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}

.hero-links li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s var(--transition-smooth);
}

.hero-links li:hover {
  border-color: var(--accent);
  padding-left: 12px;
}

.hero-links a {
  color: var(--accent);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s var(--transition-smooth);
}

.hero-links a::before {
  content: '→';
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s var(--transition-smooth);
}

.hero-links li:hover a::before {
  opacity: 1;
  transform: translateX(0);
}

.hero-media {
  position: relative;
  animation: slideInRight 0.8s var(--transition-smooth);
}

.hero-media img {
  border-radius: 24px;
  box-shadow: var(--shadow), 0 0 60px rgba(212, 175, 55, 0.1);
  object-fit: cover;
  width: 100%;
  height: auto;
  border: 1px solid var(--border);
  transition: all 0.5s var(--transition-smooth);
}

.hero-media:hover img {
  transform: scale(1.02) rotate(1deg);
  box-shadow: var(--shadow), 0 0 80px rgba(212, 175, 55, 0.2);
  border-color: var(--border-glow);
}

.hero-badge {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: var(--gradient-gold);
  color: #111;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 20px var(--accent-glow);
  animation: glow 2s ease-in-out infinite;
}

.services {
  padding: 60px 0 90px;
  background: var(--bg-alt);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

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

.service-card {
  position: relative;
  height: 260px;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  color: #fff;
  font-family: "Genos", "Open Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  background-image: var(--gradient-dark), var(--card-image);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  transition: all 0.5s var(--transition-smooth);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(212, 175, 55, 0.2));
  opacity: 0;
  transition: opacity 0.4s var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-12px) rotateX(5deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(212, 175, 55, 0.15);
  border-color: var(--accent);
}

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

.service-card:hover span {
  color: var(--accent-strong);
  text-shadow: 0 0 20px var(--accent-glow);
}

.service-card span {
  z-index: 1;
  transition: all 0.3s var(--transition-smooth);
}

.about {
  padding: 100px 0;
  background: 
    radial-gradient(ellipse at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
    var(--bg);
}

.about-grid {
  display: grid;
  gap: 48px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: start;
}

.about-media {
  display: grid;
  gap: 20px;
}

.about-media img {
  border-radius: 20px;
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
  border: 1px solid var(--border);
  transition: all 0.5s var(--transition-smooth);
}

.about-media img:hover {
  transform: scale(1.03) rotate(-1deg);
  box-shadow: var(--shadow), 0 0 40px rgba(212, 175, 55, 0.1);
  border-color: var(--border-glow);
}

.about-content h2 {
  font-family: "Genos", "Open Sans", sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-top: 0;
  line-height: 1.2;
}

.about-content ul {
  padding-left: 0;
  list-style: none;
}

.about-content ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
}

.about-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  background: var(--gradient-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-glow);
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 16px 32px;
  background: var(--gradient-gold);
  background-size: 200% auto;
  color: #111;
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  transition: all 0.4s var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s var(--transition-smooth);
}

.btn:hover {
  background-position: right center;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  color: #000;
}

.btn:hover::before {
  transform: translateX(100%);
}

.testimonials {
  padding: 100px 0;
  background: 
    radial-gradient(ellipse at 30% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
    var(--bg-alt);
}

.testimonials h2,
.features h2,
.service-area h2 {
  font-family: "Genos", "Open Sans", sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-top: 0;
  line-height: 1.2;
}

.carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(300px, 1fr);
  gap: 20px;
  overflow-x: auto;
  padding: 20px 0 16px;
  scroll-snap-type: x mandatory;
  scroll-padding: 20px;
}

.carousel::-webkit-scrollbar {
  height: 8px;
}

.carousel::-webkit-scrollbar-track {
  background: var(--bg-deep);
  border-radius: 999px;
}

.carousel::-webkit-scrollbar-thumb {
  background: var(--gradient-gold);
  border-radius: 999px;
}

.card {
  background: rgba(28, 31, 36, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  scroll-snap-align: start;
  transition: all 0.4s var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 4rem;
  font-family: serif;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--border-glow);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.1);
}

.card p {
  position: relative;
  z-index: 1;
  font-style: italic;
  line-height: 1.8;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 16px;
  font-weight: 600;
  font-size: 0.9rem;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.card-meta__muted {
  color: var(--muted);
  font-weight: 400;
}

.rating {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  text-shadow: 0 0 10px var(--accent-glow);
}
.service-area {
  padding: 90px 0;
  background: var(--bg);
  position: relative;
}

.service-area::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.area-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  position: relative;
  z-index: 1;
}

.area-pill {
  padding: 16px 20px;
  background: rgba(28, 31, 36, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 999px;
  text-align: center;
  font-weight: 600;
  transition: all 0.4s var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.area-pill::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity 0.4s var(--transition-smooth);
}

.area-pill span {
  position: relative;
  z-index: 1;
}

.area-pill:hover {
  border-color: var(--accent);
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.area-pill:hover::before {
  opacity: 1;
}

.area-pill:hover {
  color: #111;
}

.features {
  padding: 100px 0;
  background: 
    radial-gradient(ellipse at 10% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
    var(--bg-alt);
}

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

.feature-card {
  padding: 32px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(28, 31, 36, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  transition: all 0.4s var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--border-glow);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), var(--shadow-glow);
}

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

.feature-card h3 {
  margin-top: 0;
  font-family: "Genos", "Open Sans", sans-serif;
  font-size: 1.4rem;
  transition: color 0.3s var(--transition-smooth);
}

.feature-card:hover h3 {
  color: var(--accent);
}

.feature-cta {
  text-align: center;
  margin-top: 50px;
}

.reviews {
  padding: 100px 0;
  background: var(--bg);
  position: relative;
}

.reviews::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.reviews-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: start;
}

.map-card {
  background: rgba(28, 31, 36, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 24px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s var(--transition-smooth);
}

.map-card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow), var(--shadow-glow);
  transform: translateY(-5px);
}

.map-card img {
  width: 100%;
  height: auto;
  transition: transform 0.5s var(--transition-smooth);
}

.map-card:hover img {
  transform: scale(1.05);
}

.map-card h4 {
  margin: 0;
  padding: 20px;
  font-family: "Genos", "Open Sans", sans-serif;
  font-size: 1.2rem;
}

.reviews-content h3 {
  margin-top: 0;
  font-family: "Genos", "Open Sans", sans-serif;
  font-size: 1.8rem;
}

.reviews-text p {
  margin-bottom: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.media-strip {
  padding: 90px 0 120px;
  background: var(--bg-alt);
}

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

.media-grid img {
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
  height: 280px;
  transition: all 0.5s var(--transition-smooth);
}

.media-grid img:hover {
  transform: scale(1.05) rotate(1deg);
  box-shadow: var(--shadow), 0 0 40px rgba(212, 175, 55, 0.15);
  border-color: var(--border-glow);
}

.site-footer {
  background: linear-gradient(180deg, var(--bg-deep), #050506);
  padding: 90px 0 40px;
  border-top: 1px solid var(--border);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
}

.footer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.footer-about img {
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.2));
}

.footer-hours h3,
.footer-links h3 {
  margin-top: 0;
  font-family: "Genos", "Open Sans", sans-serif;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.hours,
.contact {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.hours li,
.contact li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s var(--transition-smooth);
}

.hours li:hover,
.contact li:hover {
  padding-left: 8px;
  border-color: var(--border-glow);
}

.hours span {
  color: var(--accent);
  font-weight: 700;
}

.footer-nav .nav-list {
  columns: 2;
  column-gap: 24px;
}

.footer-nav .nav-list > li {
  break-inside: avoid;
  margin-bottom: 12px;
}

.footer-nav .submenu {
  display: none !important;
}

.footer-nav .submenu li {
  margin: 6px 0;
  font-weight: 400;
}

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

.site-credit {
  font-size: 0.85rem;
  color: var(--muted);
}

.site-credit a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-credit a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.warranty-note {
  font-weight: 700;
  color: var(--gold-light);
}

.socials {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-weight: 600;
}

.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(28, 31, 36, 0.8);
  border: 1px solid var(--border);
  color: #f5f5f5;
  transition: all 0.3s var(--transition-smooth);
}

.socials svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.socials a:hover {
  background: var(--gradient-gold);
  border-color: var(--accent);
  color: #111;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px var(--accent-glow);
}

/* Blog post / inner page layout */
.breadcrumbs {
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.breadcrumbs a {
  color: var(--text);
}

.breadcrumbs span {
  color: var(--muted);
}

.page-hero {
  padding: 70px 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(212, 175, 55, 0.06) 0%, transparent 55%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}

.page-hero__grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.page-hero__content h1 {
  margin: 0 0 12px;
  font-family: "Genos", "Open Sans", sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  line-height: 1.15;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(28, 31, 36, 0.55);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 0.75rem;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 0 0 16px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(28, 31, 36, 0.55);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.post-meta strong {
  color: var(--text);
}

.page-hero__intro {
  margin: 0 0 18px;
  color: var(--muted);
  max-width: 70ch;
}

.page-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-hero__media img {
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
  height: auto;
}

.page-hero__highlights {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}

.page-hero__highlights li {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(28, 31, 36, 0.55);
  color: var(--text);
}

.page-body {
  padding: 70px 0 90px;
  background: var(--bg-alt);
}

/* Service Areas / simple inner-page content (non blog layout) */
.service-area-page .page-body__inner:not(.blog-layout) {
  max-width: 980px;
  margin: 0 auto;
  padding: 34px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(28, 31, 36, 0.55);
  box-shadow: var(--shadow-glow);
}

.service-area-page .page-body__inner:not(.blog-layout) > :first-child {
  margin-top: 0;
}

.service-area-page .page-body__inner:not(.blog-layout) h2 {
  font-family: "Genos", "Open Sans", sans-serif;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  line-height: 1.2;
  margin: 34px 0 12px;
}

.service-area-page .page-body__inner:not(.blog-layout) p {
  color: var(--text);
}

.service-area-page .page-body__inner:not(.blog-layout) ul {
  list-style: none;
  padding-left: 0;
  margin: 14px 0 28px;
  display: grid;
  gap: 12px;
}

.service-area-page .page-body__inner:not(.blog-layout) ul li {
  position: relative;
  padding: 14px 14px 14px 46px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(28, 31, 36, 0.45);
}

.service-area-page .page-body__inner:not(.blog-layout) ul li::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 18px;
  width: 10px;
  height: 10px;
  background: var(--gradient-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-glow);
}

.service-area-page .page-body__inner:not(.blog-layout) ul li a {
  color: var(--accent-strong);
  text-decoration: underline;
  text-decoration-color: rgba(212, 175, 55, 0.35);
  text-underline-offset: 3px;
}

.service-area-page .page-body__inner:not(.blog-layout) ul li a:hover {
  text-decoration-color: rgba(212, 175, 55, 0.7);
}

/* Flat price menu (compact + accessible) */
.service-area-page .price-menu {
  margin-top: 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(28, 31, 36, 0.55);
}

.service-area-page .price-menu__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 14px;
  font-size: 0.92rem;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid var(--border);
}

.service-area-page .price-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-area-page .price-menu__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 14px;
  color: inherit;
  text-decoration: none;
}

.service-area-page .price-menu__item + .price-menu__item .price-menu__row {
  border-top: 1px solid var(--border);
}

.service-area-page .price-menu__row:hover {
  background: var(--accent-subtle);
}

.service-area-page .price-menu__service {
  min-width: 0;
}

.service-area-page .price-menu__title {
  display: block;
  font-weight: 800;
  line-height: 1.2;
  font-size: 1.05rem;
}

.service-area-page .price-menu__desc {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.service-area-page .price-menu__value {
  flex: 0 0 auto;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.22);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.03em;
}

@media (max-width: 520px) {
  .service-area-page .price-menu__head {
    display: none;
  }

  .service-area-page .price-menu__row {
    flex-direction: column;
    align-items: stretch;
  }

  .service-area-page .price-menu__value {
    align-self: flex-start;
  }
}

/* Service Areas listing cards */
.service-areas-page .service-areas-grid {
  margin-top: 22px;
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.service-areas-page .service-area-card {
  display: grid;
  grid-template-rows: auto 1fr;
  text-decoration: none;
  color: inherit;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(28, 31, 36, 0.55);
  box-shadow: var(--shadow-glow);
  transition: transform 0.35s var(--transition-smooth),
    border-color 0.35s var(--transition-smooth),
    box-shadow 0.35s var(--transition-smooth);
}

.service-areas-page .service-area-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-glow);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.55), 0 0 34px rgba(212, 175, 55, 0.12);
}

.service-areas-page .service-area-card:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.service-areas-page .service-area-card__image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1);
  transition: transform 0.45s var(--transition-smooth);
}

.service-areas-page .service-area-card:hover .service-area-card__image {
  transform: scale(1.04);
}

.service-areas-page .service-area-card__body {
  padding: 18px 18px 20px;
}

.service-areas-page .service-area-card__title {
  margin: 0;
  font-family: "Genos", "Open Sans", sans-serif;
  font-size: 1.55rem;
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.service-areas-page .service-area-card__text {
  margin: 10px 0 0;
  color: var(--muted);
  font-style: normal;
  line-height: 1.7;
}

/* FAQ accordion */
.service-area-page .faq-item {
  margin: 14px 0;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(28, 31, 36, 0.55);
  overflow: hidden;
  transition: border-color 0.25s var(--transition-smooth), box-shadow 0.25s var(--transition-smooth), transform 0.25s var(--transition-smooth);
}

.service-area-page .faq-item:hover {
  border-color: var(--border-glow);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35), 0 0 28px rgba(212, 175, 55, 0.08);
  transform: translateY(-2px);
}

.service-area-page .faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 700;
  color: var(--text);
  user-select: none;
}

.service-area-page .faq-item summary::-webkit-details-marker {
  display: none;
}

.service-area-page .faq-item summary::after {
  content: '+';
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: rgba(10, 11, 13, 0.55);
  color: var(--accent);
  font-weight: 800;
  flex: 0 0 auto;
  transition: transform 0.25s var(--transition-smooth), border-color 0.25s var(--transition-smooth), background 0.25s var(--transition-smooth);
}

.service-area-page .faq-item[open] summary::after {
  content: '–';
  transform: rotate(180deg);
  border-color: var(--border-glow);
  background: rgba(28, 31, 36, 0.65);
}

.service-area-page .faq-item summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.service-area-page .faq-answer {
  padding: 0 18px 16px;
  color: var(--muted);
}

.service-area-page .faq-answer p {
  margin: 0;
}

.page-body__inner.blog-layout {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  align-items: start;
}

.blog-sidebar,
.blog-content,
.service-cta,
.callout {
  border-radius: 20px;
  padding: 26px;
}

.blog-sidebar {
  position: sticky;
  top: 110px;
}

.blog-sidebar h2 {
  margin-top: 0;
  font-family: "Genos", "Open Sans", sans-serif;
  font-size: 1.4rem;
}

.toc {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.toc a {
  color: var(--text);
}

.sidebar-cta {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.blog-content {
  min-width: 0;
}

.blog-content .lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin-top: 0;
}

.blog-content h2,
.blog-content h3 {
  font-family: "Genos", "Open Sans", sans-serif;
  line-height: 1.2;
}

.blog-content h2 {
  margin-top: 34px;
  font-size: 1.9rem;
}

.blog-content h3 {
  margin-top: 24px;
  font-size: 1.4rem;
}

.blog-content p,
.blog-content li {
  color: var(--text);
}

.blog-content ul,
.blog-content ol {
  padding-left: 20px;
}

.blog-content blockquote {
  margin: 22px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--accent);
  background: rgba(28, 31, 36, 0.45);
  border-radius: 14px;
  color: var(--muted);
}

.callout h3 {
  margin-top: 0;
}

.service-cta h2 {
  margin-top: 0;
}

.share-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-weight: 600;
}

.share-links a {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(28, 31, 36, 0.55);
}

.faq {
  margin-top: 34px;
}

.faq details {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(28, 31, 36, 0.55);
  margin: 12px 0;
  padding: 12px 14px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
}

.faq p {
  margin: 12px 0 0;
  color: var(--muted);
}

.related-posts {
  margin-top: 34px;
}

.related-list {
  margin: 0;
  padding-left: 18px;
}

.related-list a {
  color: var(--text);
}

@media (max-width: 980px) {
  .page-hero__grid {
    grid-template-columns: 1fr;
  }

  .page-body__inner.blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
  }
}

@media (min-width: 980px) {
  .site-header .nav {
    margin-left: 0;
  }

  /* Fallback: keep the Menu button visible on desktop unless JS sets the nav open. */
  .site-header details.nav[open] > summary {
    display: none;
  }

  .site-header .nav-panel {
    margin-top: 0;
    padding: 0;
    border: none;
    background: transparent;
  }

  .site-header .nav-list {
    display: flex;
    gap: 20px;
    align-items: center;
  }

  .site-header .nav-list > li {
    position: relative;
    margin-bottom: 0;
  }

  .site-header .nav-list > li > a {
    padding: 10px 8px;
    display: inline-flex;
  }

  .site-header .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    margin: 0;
    min-width: 280px;
    max-height: 70vh;
    overflow: visible;
    background: var(--card-solid);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 12px;
    padding-top: 20px;
    display: none;
    z-index: 5;
    box-shadow: var(--shadow);
  }

  .site-header .submenu.submenu-scroll {
    overflow-y: auto;
  }

  .site-header .submenu::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
  }

  .site-header .submenu .submenu {
    left: 100%;
    top: 0;
  }

  .site-header .submenu li {
    position: relative;
    padding: 8px 12px;
    margin: 2px 0;
    border-radius: 8px;
    border-bottom: 1px solid var(--border);
    transition: all 0.2s ease;
  }

  .site-header .submenu li:last-child {
    border-bottom: none;
  }

  .site-header .submenu li:hover {
    background: var(--accent-subtle);
  }

  .site-header .submenu li a {
    display: block;
    font-weight: 500;
    font-size: 0.9rem;
  }

  .site-header .nav-list > li:hover > .submenu,
  .site-header .nav-list > li:focus-within > .submenu,
  .site-header .submenu li:hover > .submenu,
  .site-header .submenu li:focus-within > .submenu {
    display: block;
  }

  .site-header .nav-list > li.has-submenu > a::after {
    content: "v";
    font-size: 0.6rem;
    margin-left: 6px;
  }
}

@media (max-width: 979px) {
  .call-btn {
    order: 3;
    margin-left: 0;
  }

  .nav {
    order: 4;
    width: 100%;
  }

  .nav-panel {
    width: 100%;
  }

  .footer-nav .nav-list {
    columns: 1;
  }
}

/* Floating Call Button for Mobile */
.floating-call {
  display: none;
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 64px;
  height: 64px;
  background: var(--gradient-gold);
  color: #111;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5), 0 0 0 0 rgba(212, 175, 55, 0.4);
  z-index: 100;
  animation: pulse-ring 2s ease-out infinite;
  transition: all 0.3s var(--transition-smooth);
}

.floating-call::before {
  content: '';
  position: absolute;
  inset: -4px;
  background: var(--gradient-gold);
  border-radius: 50%;
  opacity: 0.3;
  animation: pulse-ring 2s ease-out infinite;
  z-index: -1;
}

.floating-call:hover {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 10px 40px rgba(212, 175, 55, 0.7);
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5), 0 0 0 0 rgba(212, 175, 55, 0.4);
  }
  70% {
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5), 0 0 0 20px rgba(212, 175, 55, 0);
  }
  100% {
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5), 0 0 0 0 rgba(212, 175, 55, 0);
  }
}

@media (max-width: 768px) {
  .floating-call {
    display: flex;
  }
}

/* Hero badge animation */
.hero-badge {
  animation: float 3s ease-in-out infinite, glow 2s ease-in-out infinite;
}

/* Logo hover effect */
.logo img {
  transition: all 0.4s var(--transition-smooth);
}

.logo:hover img {
  transform: scale(1.08);
  filter: drop-shadow(0 4px 15px rgba(212, 175, 55, 0.4));
}

/* Hero media image subtle animation */
.hero-media img {
  transition: all 0.6s var(--transition-smooth);
}

.hero-media:hover img {
  transform: scale(1.03) rotate(1deg);
}

/* Navigation link underline effect */
.nav-list > li > a {
  position: relative;
}

.nav-list > li > a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transition: width 0.4s var(--transition-smooth);
  box-shadow: 0 0 10px var(--accent-glow);
}

.nav-list > li > a:hover::before {
  width: 100%;
}

/* Smooth section transitions */
section {
  position: relative;
}

/* Image loading placeholder */
img {
  background: linear-gradient(90deg, var(--bg-alt) 0%, var(--card-solid) 50%, var(--bg-alt) 100%);
  background-size: 200% 100%;
}

/* Text selection styling */
::selection {
  background: var(--accent);
  color: #111;
}

::-moz-selection {
  background: var(--accent);
  color: #111;
}

/* Print styles for accessibility */
@media print {
  .floating-call,
  .skip-link {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --border: rgba(255, 255, 255, 0.3);
    --muted: #d0d0d0;
  }
  
  .card,
  .feature-card,
  .area-pill {
    border-width: 2px;
  }
}

/* Service Area: Google Map embed */
.service-area-map {
  padding: 48px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.service-area-map__title {
  margin: 0 0 14px;
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: 0.2px;
}

.service-area-map__frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--bg-deep);
}

.service-area-map__frame iframe {
  display: block;
  width: 100%;
  height: min(520px, 70vh);
  border: 0;
}

@media (max-width: 640px) {
  .service-area-map {
    padding: 34px 0;
  }

  .service-area-map__frame iframe {
    height: 360px;
  }
}

/* =====================================================
   SERVICES PAGE - Compact Service Cards Grid
   ===================================================== */
.services-page .service-areas-grid {
  margin-top: 28px;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

@media (min-width: 768px) {
  .services-page .service-areas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-page .service-areas-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.services-page .service-area-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(28, 31, 36, 0.55);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s var(--transition-smooth),
    border-color 0.3s var(--transition-smooth),
    box-shadow 0.3s var(--transition-smooth);
}

.services-page .service-area-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.1);
}

.services-page .service-area-card:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.services-page .service-area-card__image {
  width: 100%;
  height: 120px;
  display: block;
  object-fit: cover;
  border-bottom: 1px solid var(--border);
  filter: saturate(1.05) contrast(1.05);
  transition: transform 0.4s var(--transition-smooth);
}

@media (min-width: 768px) {
  .services-page .service-area-card__image {
    height: 140px;
  }
}

.services-page .service-area-card:hover .service-area-card__image {
  transform: scale(1.05);
}

.services-page .service-area-card__body {
  padding: 14px 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.services-page .service-area-card__title {
  margin: 0;
  font-family: "Genos", "Open Sans", sans-serif;
  font-size: 1.1rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--accent);
}

.services-page .service-area-card__text {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.5;
  flex: 1;
}

/* Main category cards - slightly larger */
.services-page .page-body__inner > .service-areas-grid:first-of-type {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

@media (min-width: 768px) {
  .services-page .page-body__inner > .service-areas-grid:first-of-type {
    grid-template-columns: repeat(3, 1fr);
  }
}

.services-page .page-body__inner > .service-areas-grid:first-of-type .service-area-card__image {
  height: 160px;
}

@media (min-width: 768px) {
  .services-page .page-body__inner > .service-areas-grid:first-of-type .service-area-card__image {
    height: 180px;
  }
}

.services-page .page-body__inner > .service-areas-grid:first-of-type .service-area-card__title {
  font-size: 1.3rem;
}

.services-page .page-body__inner > .service-areas-grid:first-of-type .service-area-card__text {
  font-size: 0.9rem;
}

/* Animation classes for scroll reveal */
.reveal-hidden {
  opacity: 0;
  transform: translateY(30px);
}

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

/* Header scroll effect */
.header-scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  background: rgba(10, 11, 13, 0.95) !important;
}

/* Product Shop Styles */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--accent);
}

.product-image {
    height: 250px;
    background: #fff; /* White background for product images */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    color: var(--text);
}

.product-info .price {
    font-size: 1.4rem;
    color: var(--accent);
    font-weight: bold;
    margin-bottom: 15px;
}

.btn-view, .btn-buy {
    display: inline-block;
    background: var(--accent);
    color: #000;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background 0.3s;
}

.btn-view:hover, .btn-buy:hover {
    background: var(--accent-strong);
}

/* Product Detail Page */
.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

@media (max-width: 768px) {
    .product-layout {
        grid-template-columns: 1fr;
    }
}

.product-gallery {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
}

.product-gallery img {
    width: 100%;
    height: auto;
}

.product-title {
    font-family: 'Audiowide', sans-serif;
    font-size: 2.5rem;
    margin-top: 0;
    color: var(--text);
}

.product-price {
    font-size: 2rem;
    color: var(--accent);
    margin: 20px 0;
}

.product-description {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Blog Posts Section on Homepage */
.blog-posts-home {
    background: var(--bg-alt);
    padding: 80px 0;
}

.blog-posts-home h2 {
    font-family: 'Audiowide', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--text);
}

.blog-posts-home > .container > p {
    color: var(--muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

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

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.blog-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s var(--transition-smooth);
}

.blog-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}

.blog-card h3 {
    font-size: 1.15rem;
    margin: 0 0 12px;
    line-height: 1.4;
}

.blog-card h3 a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card h3 a:hover {
    color: var(--accent);
}

.blog-card p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.blog-cta {
    text-align: center;
}
/* Blog Article Styles */
.blog-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.8;
}

.blog-article h2 {
    font-size: 1.75rem;
    margin: 50px 0 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    color: var(--accent);
}

.blog-article h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

.blog-article h3 {
    font-size: 1.35rem;
    margin: 30px 0 15px;
    color: var(--text);
}

.blog-article p {
    margin: 0 0 20px;
    color: var(--text);
}

.blog-article ul, .blog-article ol {
    margin: 0 0 25px;
    padding-left: 25px;
}

.blog-article li {
    margin-bottom: 10px;
    color: var(--text);
}

.blog-article li strong {
    color: var(--accent);
}

.blog-article a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s;
}

.blog-article a:hover {
    color: var(--accent-strong);
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, var(--bg-alt) 0%, var(--card-solid) 100%);
    border: 2px solid var(--accent);
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
    box-shadow: var(--shadow-glow);
}

.cta-box h3 {
    font-size: 1.5rem;
    margin: 0 0 15px;
    color: var(--accent);
    border: none;
}

.cta-box p {
    margin: 0 0 20px;
    font-size: 1.1rem;
}

.cta-box .btn {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--bg);
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s var(--transition-smooth);
    box-shadow: 0 4px 15px var(--accent-glow);
}

.cta-box .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--accent-glow);
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 0.95rem;
    background: var(--card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.comparison-table thead {
    background: var(--accent);
    color: var(--bg);
}

.comparison-table th {
    padding: 15px 12px;
    text-align: left;
    font-weight: 700;
}

.comparison-table td {
    padding: 15px 12px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

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

.comparison-table tbody tr:hover {
    background: var(--bg-alt);
}

@media (max-width: 768px) {
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px 8px;
    }
    
    .blog-article h2 {
        font-size: 1.5rem;
    }
    
    .blog-article h3 {
        font-size: 1.2rem;
    }
}