/* ============================================
   BAYLESS & BAYLESS - Premium Design System
   ============================================ */

/* CSS Custom Properties */
:root {
  /* Premium Color Palette */
  --brand-deep: #0a2920;
  --brand: #0d4433;
  --brand-light: #156b52;
  --accent: #d4a039;
  --accent-light: #e8c068;
  --accent-dark: #b8892f;

  /* Neutrals */
  --white: #ffffff;
  --off-white: #fafbfc;
  --light: #f1f5f9;
  --light-gray: #e2e8f0;
  --muted: #64748b;
  --dark: #1e293b;
  --darker: #0f172a;

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 50%, var(--brand-light) 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 50%, var(--accent-light) 100%);
  --gradient-hero: linear-gradient(180deg, rgba(10,41,32,0.95) 0%, rgba(13,68,51,0.9) 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-padding: clamp(80px, 10vw, 140px);
  --container-width: min(1280px, 92%);

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
  --shadow-accent: 0 10px 40px -10px rgba(212,160,57,0.5);
  --shadow-brand: 0 10px 40px -10px rgba(13,68,51,0.4);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@500;600;700&display=swap');

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.5em;
  color: var(--darker);
}

p {
  margin: 0 0 1em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.container {
  width: var(--container-width);
  margin: 0 auto;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: all var(--transition-base);
}

header.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: var(--shadow-lg);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo h1 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--brand);
  margin: 0;
  letter-spacing: -0.02em;
}

.logo::before {
  content: '';
  width: 40px;
  height: 40px;
  background: var(--gradient-brand);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

nav a {
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

nav a:hover {
  color: var(--brand);
  background: var(--light);
}

nav .cta {
  background: var(--gradient-accent);
  color: var(--white) !important;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  box-shadow: var(--shadow-accent);
  transition: all var(--transition-base);
}

nav .cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -10px rgba(212,160,57,0.6);
}

/* Mobile Navigation */
@media (max-width: 900px) {
  nav a:not(.cta) {
    display: none;
  }
  nav .cta {
    padding: 10px 18px;
    font-size: 0.85rem;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 140px 0 100px;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/excavation-hero.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--white) 0%, transparent 100%);
  z-index: 1;
}

.hero > * {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge span {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.hero h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  line-height: 1.1;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero h2 .highlight {
  color: var(--accent);
  position: relative;
}

.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
  font-weight: 400;
  max-width: 600px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-areas {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 14px 24px;
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition-base);
}

.badge:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.badge-icon {
  font-size: 1.3rem;
}

/* Service Cards in Hero */
.columns {
  display: grid;
  gap: 24px;
  margin-top: 0;
  width: 100%;
  max-width: 1100px;
  padding: 0 20px;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

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

.col-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--shadow-xl);
  transition: all var(--transition-base);
}

.col-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 1;
}

.col-btn:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

.col-btn:hover::before {
  opacity: 0.9;
}

.col-btn img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all var(--transition-slow);
}

.col-btn:hover img {
  transform: scale(1.05);
}

.col-btn-content {
  position: relative;
  z-index: 2;
  padding: 24px;
  transition: all var(--transition-base);
}

.col-btn:hover .col-btn-content {
  color: var(--white);
}

.col-btn-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--darker);
  margin-bottom: 8px;
  transition: color var(--transition-base);
}

.col-btn:hover .col-btn-title {
  color: var(--white);
}

.col-btn-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
  transition: color var(--transition-base);
}

.col-btn:hover .col-btn-desc {
  color: rgba(255,255,255,0.85);
}

.col-btn-arrow {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  z-index: 2;
}

.col-btn:hover .col-btn-arrow {
  background: var(--accent);
  transform: translateX(4px);
}

.col-btn-arrow svg {
  width: 18px;
  height: 18px;
  stroke: var(--dark);
  transition: stroke var(--transition-base);
}

.col-btn:hover .col-btn-arrow svg {
  stroke: var(--white);
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: var(--section-padding) 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 16px;
}

.section h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--darker);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.7;
}

/* About Section */
#about {
  background: var(--off-white);
}

.about-grid {
  display: grid;
  gap: 60px;
  align-items: center;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-content h3 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 24px;
}

.about-content p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 32px;
}

.about-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius-xl);
}

/* Value Propositions */
.value-props {
  display: grid;
  gap: 24px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .value-props {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-prop {
  position: relative;
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.03);
  transition: all var(--transition-base);
}

.value-prop:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.value-prop::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.value-prop-icon {
  width: 56px;
  height: 56px;
  background: var(--light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.value-prop strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--darker);
  margin-bottom: 12px;
}

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

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  background: var(--gradient-brand);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  gap: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 600px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat {
  padding: 20px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
#testimonials {
  background: var(--off-white);
}

.testimonials {
  display: grid;
  gap: 30px;
  margin-top: 50px;
}

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

.testimonial {
  position: relative;
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-base);
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.testimonial-quote {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 4rem;
  font-family: var(--font-display);
  color: var(--light);
  line-height: 1;
}

.testimonial .stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial .star {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.testimonial p {
  font-size: 1.05rem;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  background: var(--gradient-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-info cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  color: var(--darker);
  font-size: 1rem;
}

.testimonial-info span {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ============================================
   GALLERY
   ============================================ */
#gallery-preview, .gallery-section {
  background: var(--white);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img, .gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  border-radius: var(--radius-lg);
}

.gallery img:hover, .gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-base);
  border-radius: var(--radius-lg);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  font-weight: 600;
  color: var(--brand);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.gallery-link:hover {
  gap: 12px;
  color: var(--accent-dark);
}

/* ============================================
   CONTACT FORM
   ============================================ */
#contact {
  background: var(--off-white);
}

.contact-wrapper {
  display: grid;
  gap: 60px;
  align-items: start;
}

@media (min-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr 1.2fr;
  }
}

.contact-info {
  padding-right: 40px;
}

.contact-info h3 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  margin-bottom: 20px;
}

.contact-info > p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 40px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-fast);
}

.contact-method:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-lg);
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  background: var(--light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-method-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 4px;
}

.contact-method-text a, .contact-method-text span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--darker);
}

.form-container {
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(0,0,0,0.03);
}

.form-subtitle {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--light-gray);
}

form {
  display: grid;
  gap: 24px;
}

.form-row {
  display: grid;
  gap: 24px;
}

@media (min-width: 500px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}

.hidden {
  position: absolute;
  left: -9999px;
}

input, textarea, select {
  padding: 16px 20px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: var(--font-body);
  background: var(--white);
  transition: all var(--transition-fast);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(13,68,51,0.1);
}

input::placeholder, textarea::placeholder {
  color: var(--muted);
}

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

select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
  appearance: none;
  padding-right: 50px;
}

button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gradient-accent);
  color: var(--white);
  border: none;
  padding: 18px 36px;
  border-radius: var(--radius-md);
  font-size: 1.05rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  box-shadow: var(--shadow-accent);
  transition: all var(--transition-base);
}

button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -10px rgba(212,160,57,0.6);
}

.form-note {
  text-align: center;
  font-size: 0.95rem;
  color: var(--muted);
}

.form-note a {
  color: var(--brand);
  font-weight: 600;
}

.form-guarantee {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  margin-top: -8px;
}

/* Business Credentials */
.business-credentials {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--light-gray);
}

.business-credentials h5 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--darker);
  margin-bottom: 20px;
}

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

.credentials-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--dark);
}

.credentials-list svg {
  width: 20px;
  height: 20px;
  stroke: #22c55e;
  flex-shrink: 0;
}

.payment-methods {
  background: var(--light);
  padding: 20px;
  border-radius: var(--radius-md);
}

.payment-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.payment-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.payment-icon {
  background: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: var(--shadow-sm);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--darker);
  color: var(--white);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  gap: 40px;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.business-hours {
  background: rgba(255,255,255,0.08);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent);
}

.business-hours strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 8px;
}

.business-hours p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

.service-areas {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.service-areas strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}

.service-areas span {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  padding: 4px 0;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  padding: 8px 0;
  transition: all var(--transition-fast);
}

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

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

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}

.footer-links a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.footer-links a:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

/* Old footer styles for backwards compatibility */
footer .container > p {
  margin: 0.5em 0;
}

footer .container > p:first-child strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.floating {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--brand);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: var(--shadow-brand);
  transition: all var(--transition-base);
}

.floating a:first-child {
  background: var(--gradient-accent);
  box-shadow: var(--shadow-accent);
}

.floating a:hover {
  transform: translateY(-2px) scale(1.02);
}

@media (min-width: 900px) {
  .floating {
    display: none;
  }
}

/* ============================================
   SERVICE PAGES
   ============================================ */
.page-hero {
  padding: 160px 0 80px;
  text-align: center;
  background: var(--gradient-hero);
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

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

.page-hero h2 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
}

.page-hero .hero-tagline {
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto;
}

main.section {
  padding-top: 160px;
}

/* Service Cards */
.services {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

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

.card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.03);
  transition: all var(--transition-base);
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
}

.btn.primary {
  background: var(--gradient-accent);
  color: var(--white);
  box-shadow: var(--shadow-accent);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px -10px rgba(212,160,57,0.6);
}

.btn.secondary {
  background: var(--white);
  color: var(--brand);
  border: 2px solid var(--brand);
}

.btn.secondary:hover {
  background: var(--brand);
  color: var(--white);
}

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

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

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

/* Scroll-triggered animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Stagger animations */
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.3s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.4s; }

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

/* Counter animation placeholder */
.counter {
  display: inline-block;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 768px) {
  .hero {
    padding: 120px 0 80px;
    min-height: auto;
  }

  .hero h2 {
    font-size: 2.25rem;
  }

  .trust-badges {
    gap: 10px;
  }

  .badge {
    padding: 10px 16px;
    font-size: 0.8rem;
  }

  .section {
    padding: 60px 0;
  }

  .form-container {
    padding: 32px 24px;
  }

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

  .footer-social {
    justify-content: center;
  }
}

/* Print styles */
@media print {
  header, .floating, footer {
    display: none;
  }

  body {
    font-size: 12pt;
  }
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gradient-accent);
  width: 0%;
  z-index: 1001;
  transition: width 0.1s ease-out;
}

/* ============================================
   MOBILE NAVIGATION
   ============================================ */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.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);
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10,41,32,0.98);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  transform: translateY(20px);
  transition: transform var(--transition-base);
}

.mobile-nav-overlay.open .mobile-nav {
  transform: translateY(0);
}

.mobile-nav a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  padding: 12px 24px;
  transition: all var(--transition-fast);
}

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

.mobile-nav .cta {
  background: var(--gradient-accent);
  border-radius: var(--radius-md);
  margin-top: 20px;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  nav {
    display: none;
  }
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  position: relative;
  z-index: 2;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out;
}

.announcement-content {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(212,160,57,0.15) 0%, rgba(212,160,57,0.08) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212,160,57,0.3);
  padding: 12px 24px;
  border-radius: 50px;
  color: var(--white);
  font-size: 0.9rem;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(212,160,57,0.2);
  }
  50% {
    box-shadow: 0 0 40px rgba(212,160,57,0.4);
  }
}

.announcement-icon {
  font-size: 1.1rem;
}

.announcement-cta {
  background: var(--accent);
  color: var(--darker) !important;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.8rem;
  transition: all var(--transition-fast);
}

.announcement-cta:hover {
  background: var(--white);
  transform: scale(1.05);
}

/* Live Badge */
.live-badge {
  background: rgba(34,197,94,0.2) !important;
  border: 1px solid rgba(34,197,94,0.4) !important;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: live-pulse 1.5s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

/* Hero Particles Background */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(212,160,57,0.4);
  border-radius: 50%;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) rotate(720deg);
    opacity: 0;
  }
}

/* ============================================
   TESTIMONIAL CAROUSEL
   ============================================ */
.testimonial-rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.testimonial-rating-summary .rating-stars {
  display: flex;
  gap: 4px;
}

.testimonial-rating-summary .star {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.rating-text {
  font-weight: 600;
  color: var(--muted);
}

.testimonial-carousel-wrapper {
  position: relative;
  margin: 0 -20px;
  padding: 0 60px;
}

.testimonial-carousel {
  overflow: hidden;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-track .testimonial {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0 12px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .testimonial-track .testimonial {
    flex: 0 0 50%;
  }
}

@media (min-width: 1024px) {
  .testimonial-track .testimonial {
    flex: 0 0 33.333%;
  }
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: var(--white);
  border: 2px solid var(--light-gray);
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: var(--shadow-lg);
}

.carousel-btn:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: 0;
}

.carousel-btn.next {
  right: 0;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  background: var(--light-gray);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.carousel-dot.active {
  background: var(--brand);
  transform: scale(1.2);
}

.carousel-dot:hover {
  background: var(--brand-light);
}

/* ============================================
   FEATURED PROJECTS SECTION
   ============================================ */
#featured-projects {
  background: var(--white);
}

.featured-projects-grid {
  display: grid;
  gap: 40px;
}

@media (min-width: 900px) {
  .featured-projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.featured-project {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all var(--transition-base);
}

.featured-project:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

.featured-project-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.featured-project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.featured-project:hover .featured-project-image img {
  transform: scale(1.05);
}

.project-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--brand);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.featured-project-details {
  padding: 28px;
}

.project-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.project-location svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
}

.featured-project-details h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--darker);
  margin-bottom: 12px;
}

.featured-project-details p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.project-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  padding-top: 20px;
  border-top: 1px solid var(--light-gray);
}

.project-specs span {
  font-size: 0.85rem;
  color: var(--dark);
}

.project-specs strong {
  color: var(--muted);
  font-weight: 500;
}

/* ============================================
   HOW WE WORK / PROCESS SECTION
   ============================================ */
.process-section {
  background: var(--off-white);
}

.process-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--light-gray);
  border-radius: 3px;
}

@media (min-width: 768px) {
  .process-timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

.process-step {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  position: relative;
}

@media (min-width: 768px) {
  .process-step {
    gap: 40px;
  }

  .process-step:nth-child(even) {
    flex-direction: row-reverse;
  }

  .process-step:nth-child(even) .process-content {
    text-align: right;
  }
}

.process-number {
  width: 64px;
  height: 64px;
  background: var(--gradient-brand);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .process-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .process-step .process-content {
    width: calc(50% - 60px);
  }

  .process-step:nth-child(odd) .process-content {
    margin-left: auto;
    padding-left: 60px;
  }

  .process-step:nth-child(even) .process-content {
    padding-right: 60px;
  }
}

.process-content {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  flex: 1;
}

.process-content h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--darker);
  margin-bottom: 12px;
}

.process-content p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.process-cta {
  text-align: center;
  margin-top: 48px;
  font-size: 1.1rem;
  color: var(--dark);
}

.process-cta a {
  color: var(--brand);
}

/* ============================================
   ENHANCED FORM STYLES
   ============================================ */
.form-group.focused label {
  color: var(--brand);
}

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

/* Form validation states */
input:valid:not(:placeholder-shown),
textarea:valid:not(:placeholder-shown) {
  border-color: #22c55e;
}

input:invalid:not(:placeholder-shown):not(:focus),
textarea:invalid:not(:placeholder-shown):not(:focus) {
  border-color: #ef4444;
}

/* ============================================
   REAL-TIME ACTIVITY TOAST
   ============================================ */
.activity-toast {
  position: fixed;
  bottom: 100px;
  left: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-2xl);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1000;
  transform: translateX(-120%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 320px;
  border-left: 4px solid var(--accent);
}

.activity-toast.show {
  transform: translateX(0);
}

.activity-toast-icon {
  width: 40px;
  height: 40px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.activity-toast-content {
  flex: 1;
  min-width: 0;
}

.activity-toast-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--darker);
  margin-bottom: 2px;
}

.activity-toast-text {
  font-size: 0.8rem;
  color: var(--muted);
}

.activity-toast-close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1;
}

@media (max-width: 768px) {
  .activity-toast {
    left: 12px;
    right: 12px;
    bottom: 140px;
    max-width: none;
  }
}

/* ============================================
   MICRO-INTERACTIONS
   ============================================ */
/* Button ripple effect */
.btn, button[type="submit"], nav .cta {
  position: relative;
  overflow: hidden;
}

.btn::after, button[type="submit"]::after, nav .cta::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:active::after, button[type="submit"]:active::after, nav .cta:active::after {
  width: 300px;
  height: 300px;
}

/* Link underline animation */
.footer-col a, .contact-method-text span {
  position: relative;
}

.footer-col a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition-base);
}

.footer-col a:hover::after {
  width: 100%;
}

/* Card tilt effect on hover */
@media (hover: hover) {
  .col-btn, .value-prop, .testimonial, .card {
    transform-style: preserve-3d;
    perspective: 1000px;
  }
}

/* Icon bounce on hover */
.value-prop:hover .value-prop-icon,
.contact-method:hover .contact-method-icon {
  animation: bounce 0.5s ease;
}

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

/* Gradient text for special headings */
.hero h2 .highlight {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Smooth image zoom on gallery */
.gallery img, .gallery-item img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   LOADING STATES
   ============================================ */
.skeleton {
  background: linear-gradient(90deg, var(--light) 25%, var(--light-gray) 50%, var(--light) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

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

/* ============================================
   ACCESSIBILITY IMPROVEMENTS
   ============================================ */
:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.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;
}

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

  html {
    scroll-behavior: auto;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  :root {
    --brand: #0a3829;
    --accent: #c49030;
  }

  .badge, .announcement-content {
    border-width: 2px;
  }
}
