/*
 * Bluestream Entertainment - Main Stylesheet
 * Consolidated global styles for all pages
 * 
 * @author SmartersWeb Tech
 * @version 2.0
 * @created 2025-12-01
 */

/* ======================================
   BASE STYLES FROM styles-2.css
   ====================================== */

/* * Bluestream Entertainment - Consolidated Master Stylesheet
 * Generated from merging 12+ files (styles.css, layout.css, components.css, forms.css, 
 * page-fixes, header-fixes, final-fixes, and inline styles).
 */

/* ======================================
   1. VARIABLES & BASE RESET (From styles.css)
   ====================================== */
:root {
  /* Primary Color Palette - Updated to match new logo */
  --primary: #0066ff; /* Deeper blue from logo */
  --primary-dark: #0052cc;
  --primary-light: #3b82f6;
  --secondary: #00ccff; /* Lighter blue from logo */
  --secondary-dark: #0891b2;
  --accent: #00e5ff; /* Accent color from logo wave icon */
  --accent-dark: #00b8d4;
  
  /* UI Colors */
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  
  /* Neutral Colors */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  
  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px; /* */
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1); /* */
  --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1); /* */
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1); /* */
  
  /* Container Widths */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  --container-2xl: 1536px; /* */
}

/* Base Reset (from styles.css, overriding pages.css) */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

/* Base Body Style (from styles.css) */
body {
  font-family: var(--font-sans);
  line-height: 1.6;
  color: var(--gray-800);
  background-color: var(--gray-50);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  height: auto;
  display: block; /* */
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
  color: var(--gray-900);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: var(--spacing-md);
}

/* Container & Section (from styles.css) */
.container {
  width: 100%;
  max-width: var(--container-xl);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--spacing-lg);
  padding-right: var(--spacing-lg);
}

.section {
  padding-top: var(--spacing-3xl);
  padding-bottom: var(--spacing-3xl);
}

/* ======================================
   2. LAYOUT & GRID (From layout.css)
   ====================================== */
/* Container (Overridden by alignment-fixes.css later) */
.container {
  width: 100%;
  max-width: var(--container-lg);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--spacing-lg);
}

.grid-2 {
  grid-template-columns: repeat(1, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(1, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Flex Utilities */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

/* Hero Button Layout (from layout.css) */
.hero-buttons {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
}

/* Footer Layout (from layout.css) */
.footer {
  background-color: var(--gray-800);
  color: white;
  padding: var(--spacing-xl) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--spacing-xl);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-logo {
  margin-bottom: var(--spacing-md);
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.footer h4 {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-md);
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--gray-300);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: white;
}

/* ======================================
   3. UI COMPONENTS (From components.css)
   ====================================== */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  border: none;
  outline: none;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
}

.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
}

.btn-secondary {
  background-color: var(--secondary);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
}

.btn-accent {
  background-color: var(--accent);
  color: white;
}

.btn-accent:hover {
  background-color: var(--accent-dark);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: white;
}

.btn-white {
  background-color: white;
  color: var(--primary);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background-color: var(--gray-100);
}

/* Badges */
.badge {
  display: inline-block;
  padding: 0.3rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: var(--radius-sm);
}

.badge-primary {
  background-color: var(--primary);
  color: white;
}

.badge-success {
  background-color: var(--success);
  color: white;
}

.badge-warning {
  background-color: var(--warning);
  color: white;
}

.badge-error {
  background-color: var(--error);
  color: white;
}

.badge-outline {
  background-color: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
}

/* Alerts */
.alert {
  position: relative;
  padding: var(--spacing-md) var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
}

.alert-primary {
  color: var(--primary-dark);
  background-color: rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.2);
}

.alert-success {
  color: var(--success);
  background-color: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.2);
}

.alert-warning {
  color: var(--warning);
  background-color: rgba(245, 158, 11, 0.1);
  border-color: rgba(245, 158, 11, 0.2);
}

.alert-error {
  color: var(--error);
  background-color: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.2);
}

/* ======================================
   4. FORM STYLES (From form-styles.css)
   ====================================== */

/* Form Container */
.form-container {
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--spacing-xl);
  max-width: 600px;
  margin: 0 auto;
}

/* Form Elements */
.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  color: var(--gray-700);
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group label .required {
  color: var(--error);
  margin-left: 3px;
}

.form-control {
  width: 100%;
  padding: var(--spacing-md);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: all var(--transition-fast);
  background-color: var(--gray-50);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background-color: white;
}

.form-control::placeholder {
  color: var(--gray-400);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Checkbox/Radio */
.form-check {
  display: flex;
  align-items: center;
  margin-bottom: var(--spacing-sm);
}

.form-check-input {
  margin-right: var(--spacing-sm);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: 1px solid var(--gray-400);
  border-radius: 3px;
  background-color: white;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
  /* Inline SVG for checkmark */
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='white' d='M10.97 4.97a.75.75 0 0 1 1.07 1.05l-3.99 4.99a.75.75 0 0 1-1.08.02L4.324 8.384a.75.75 0 1 1 1.06-1.06l2.094 2.093 3.473-4.425z'/%3e%3c/svg%3e"); /* */
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

/* Radio Specific */
.form-check-input[type="radio"] {
  border-radius: 50%;
}

/* File Upload Styling */
.file-upload {
  position: relative;
}

.file-upload input[type="file"] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.file-upload-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md);
  border: 2px dashed var(--gray-300);
  border-radius: var(--radius-md);
  background-color: var(--gray-50);
  color: var(--gray-600);
  text-align: center;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.file-upload-label:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.file-upload-label i {
  margin-right: var(--spacing-sm);
}

.file-name {
  margin-top: var(--spacing-sm);
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* GDPR Consent */
.gdpr-consent {
  margin-top: var(--spacing-lg);
  padding: var(--spacing-md);
  background-color: var(--gray-50);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
}

/* ======================================
   5. PAGE-SPECIFIC STYLES (From pages.css)
   ====================================== */

/* Service Hero Section */
.service-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
}

.service-hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  position: relative;
  z-index: 2;
}

.service-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: white; /* Override h1 from base */
}

.service-hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.service-hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* Service Content (Two Columns) */
.service-content {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: center;
  padding: var(--spacing-2xl) var(--spacing-lg);
  max-width: var(--container-xl);
  margin: 0 auto;
}

.service-text h2 {
  margin-top: 0;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--gray-800);
}

.service-text h3 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  color: var(--gray-800);
}

.service-text p {
  color: var(--gray-700);
  line-height: 1.7;
}

/* Packages/Pricing Card */
.package-card {
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.package-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.package-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--spacing-sm);
}

.package-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
}

.package-price small {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-600);
  margin-left: 5px;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: var(--spacing-lg) 0 var(--spacing-xl) 0;
  flex-grow: 1;
}

.package-features li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: var(--gray-700);
}

.package-features li i {
  color: var(--success);
  margin-right: 0.75rem;
  font-size: 1.1rem;
}

.package-note {
  text-align: center;
  color: var(--gray-600);
  font-style: italic;
  margin-top: auto;
}

/* Footer Fixes (from pages.css) */
.footer-text {
  color: var(--gray-400);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.footer-social a {
  color: var(--gray-300);
  font-size: 1.5rem;
  transition: color var(--transition-fast);
}

.footer-social a:hover {
  color: var(--primary);
}

.footer-legal {
  display: flex;
  gap: var(--spacing-md);
}

.footer-legal a {
  color: var(--gray-400);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--gray-200);
}


/* ======================================
   6. ADDITIONAL STYLES (From additional-styles.css)
   ====================================== */

/* Feature Items */
.service-features {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    margin-right: 1rem;
    color: var(--primary);
    font-size: 1.25rem;
}

.feature-content {
    flex-grow: 1;
}

.feature-content h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
}

.feature-content p {
    margin: 0;
    color: var(--gray-600);
}

/* Package Features Fixes */
.package-features {
    margin-bottom: 1.5rem;
}

.package-feature {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.package-feature i {
    color: var(--primary);
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

.package-feature span {
    color: var(--gray-700);
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section { 
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%); /* */
    padding: var(--spacing-3xl) 0;
    text-align: center;
    color: white;
}

.cta-section h2 {
    color: white;
    margin-bottom: var(--spacing-md);
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
}


/* ======================================
   7. HEADER FIXES (From header-fix.css)
   ====================================== */
/* Header Container */
.header {
  background-color: white;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px; /* Increased from 60px for better visibility */
  padding: 0 var(--spacing-lg);
  max-width: var(--container-xl);
  margin: 0 auto;
  position: relative;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 50px; /* Increased from 40px for better visibility */
  width: auto;
  max-width: 240px; /* Increased from 200px to accommodate the new logo */
  object-fit: contain; /* Ensures the logo maintains its aspect ratio */
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  gap: var(--spacing-lg);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--gray-700);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition-fast);
  position: relative;
  padding: 5px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

/* Active Link Indicator */
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
}


/* ======================================
   8. LOGO & BUTTON ENHANCEMENTS (From logo-enhancements.css)
   ====================================== */

/* Enhanced Logo Display */
.logo {
  padding: 8px 0;
}

.logo img {
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.05);
}

/* Gradient Text for Headings - Matching Logo Style */
.section-header h2 {
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Enhanced Button Styling */
.cta-button { /* Assuming cta-button uses btn-primary styles */
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: white; /* Ensure text remains white */
}

.cta-button:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cta-button:hover:before {
  opacity: 1;
}

/* Enhanced Service Cards */
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}


/* ======================================
   9. ALIGNMENT FIXES (From alignment-fixes.css)
   ====================================== */

/* General Alignment Fixes (Overrides previous .container) */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  width: 100%;
}

/* Section Alignment */
.section {
  padding: var(--spacing-2xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

/* Grid Layouts */
.services-grid,
.gallery-grid,
.events-grid,
.testimonial-grid,
.features-grid {
  display: grid;
  gap: var(--spacing-lg);
  justify-content: center;
  align-items: stretch;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Card Alignment */
.service-card,
.event-card,
.testimonial-card,
.package-card,
.feature-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card .service-icon,
.feature-card .feature-icon {
  margin: 0 auto var(--spacing-md);
}

/* Button Alignment */
.btn-container {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
}


/* ======================================
   10. MOBILE & FINAL FIXES (From fixed-styles.css & final-fixes.css)
   ====================================== */

/* Combined Mobile Menu Button Fixes (Overrides header-fix.css) */
/* Mobile Menu Button (Fixed-Styles.css) */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block !important;
    position: absolute;
    right: 20px;
    top: 25px; /* Fixed-styles.css uses 25px, final-fixes.css uses 50% */
    transform: translateY(-50%); /* Using transform for vertical centering */
    z-index: 100;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-700);
    cursor: pointer;
    padding: 5px;
  }
}

/* Navigation Menu (Fixed-Styles.css) */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 70px; /* Using 70px from fixed-styles, adjusting from 80px */
    left: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    z-index: 99;
  }
  
  .nav-menu.active {
    display: flex !important;
  }
  
  .nav-menu li {
    margin: 10px 0;
    width: 100%;
    text-align: center;
  }
  
  .nav-menu li a {
    display: block;
    padding: 10px;
    width: 100%;
  }
}

/* Service Card Fix (from final-fixes.css & fixed-styles.css) */
.service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-content .btn {
  margin-top: auto;
}

/* Footer Fix (from final-fixes.css) */
.footer {
  background-color: var(--gray-800);
  color: white;
  padding: var(--spacing-2xl) 0 var(--spacing-lg); /* */
  margin-top: auto;
}

/* Testimonial Slider Fix */
.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--gray-300);
  border: none;
  cursor: pointer;
}

/* ======================================
   11. INLINE HEADER STYLES (FROM PHP HEADER)
   ====================================== */
/* These styles were previously inline and are critical for the dropdown functionality. */

.nav-services {
    position: relative;
}

.nav-services.active > .nav-dropdown-toggle {
    /* keeps your theme styles; just ensures active state can be styled if desired */
}

.nav-dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-size: inherit;
    color: inherit;
}

.nav-dropdown-toggle::after {
    content: '▼';
    font-size: 0.6em;
    margin-left: 4px;
    display: inline-block;
    transition: transform 0.2s;
}

.nav-dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    min-width: 200px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.nav-dropdown-toggle[aria-expanded="true"] + .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-item {
    display: block;
    padding: 12px 16px;
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.nav-dropdown-item:last-child {
    border-bottom: none;
}

.nav-dropdown-item:hover,
.nav-dropdown-item.active {
    background: #f9f9f9;
    color: #1e88e5;
}

@media (max-width: 768px) {
    .nav-dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        border: none;
        background: #f9f9f9;
        margin-top: 4px;
    }

    .nav-dropdown-toggle[aria-expanded="true"] + .nav-dropdown-menu {
        display: block;
    }
}

/* ======================================
   ADDITIONAL STYLES FROM main-1.css
   ====================================== */


/* CSS Custom Properties */
:root {
    /* Colors */
    --primary-50: #eff6ff;
    --primary-100: #dbeafe;
    --primary-200: #bfdbfe;
    --primary-300: #93c5fd;
    --primary-400: #60a5fa;
    --primary-500: #3b82f6;
    --primary-600: #2563eb;
    --primary-700: #1d4ed8;
    --primary-800: #1e40af;
    --primary-900: #1e3a8a;

    --accent-50: #fef2f2;
    --accent-100: #fee2e2;
    --accent-200: #fecaca;
    --accent-300: #fca5a5;
    --accent-400: #f87171;
    --accent-500: #ef4444;
    --accent-600: #dc2626;
    --accent-700: #b91c1c;
    --accent-800: #991b1b;
    --accent-900: #7f1d1d;

    --success-50: #f0fdf4;
    --success-100: #dcfce7;
    --success-200: #bbf7d0;
    --success-300: #86efac;
    --success-400: #4ade80;
    --success-500: #22c55e;
    --success-600: #16a34a;
    --success-700: #15803d;
    --success-800: #166534;
    --success-900: #14532d;

    --neutral-50: #fafafa;
    --neutral-100: #f5f5f5;
    --neutral-200: #e5e5e5;
    --neutral-300: #d4d4d4;
    --neutral-400: #a3a3a3;
    --neutral-500: #737373;
    --neutral-600: #525252;
    --neutral-700: #404040;
    --neutral-800: #262626;
    --neutral-900: #171717;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 0.75rem;
    --spacing-lg: 1rem;
    --spacing-xl: 1.5rem;
    --spacing-2xl: 2rem;
    --spacing-3xl: 3rem;
    --spacing-4xl: 4rem;
    --spacing-5xl: 6rem;

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--neutral-700);
    background-color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
.heading-1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--neutral-900);
    letter-spacing: -0.02em;
}

.heading-2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--neutral-900);
    letter-spacing: -0.01em;
}

.heading-3 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.3;
    color: var(--neutral-900);
}

.heading-4 {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
    line-height: 1.4;
    color: var(--neutral-900);
}

.body-large {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: var(--neutral-600);
}

.body-normal {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--neutral-600);
}

/* Layout Components */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.section {
    padding: var(--spacing-5xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-4xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    margin-bottom: var(--spacing-lg);
}

.section-subtitle {
    color: var(--neutral-600);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--neutral-200);
    z-index: 1000;
    transition: transform var(--transition-normal);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg) 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    text-decoration: none;
    color: var(--neutral-900);
    font-weight: 600;
    font-size: 1.25rem;
}

.logo-image {
    height: 80px;
    width: 325px;
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-2xl);
}

.nav-link {
    text-decoration: none;
    color: var(--neutral-700);
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-600);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-600);
    transition: width var(--transition-normal);
}

.nav-link:hover::after {
    width: 100%;
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--primary-600);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: all var(--transition-normal);
    border: 2px solid var(--primary-600);
}

.cta-button:hover {
    background: var(--primary-700);
    border-color: var(--primary-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-button-large {
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: 1.125rem;
}

.cta-button-outline {
    background: transparent;
    color: var(--primary-600);
    border-color: var(--primary-600);
}

.cta-button-outline:hover {
    background: var(--primary-600);
    color: white;
}

.cta-button-accent {
    background: var(--accent-600);
    border-color: var(--accent-600);
}

.cta-button-accent:hover {
    background: var(--accent-700);
    border-color: var(--accent-700);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--neutral-50) 100%);
    padding-top: calc(var(--spacing-5xl) + 80px);
    padding-bottom: var(--spacing-5xl);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e5e7eb" opacity="0.3"/><circle cx="75" cy="75" r="1" fill="%23e5e7eb" opacity="0.3"/><circle cx="50" cy="10" r="0.5" fill="%23e5e7eb" opacity="0.2"/><circle cx="10" cy="60" r="0.5" fill="%23e5e7eb" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    margin-bottom: var(--spacing-xl);
    background: linear-gradient(135deg, var(--primary-700), var(--accent-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    margin-bottom: var(--spacing-2xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    align-items: start;
}

.service-card {
    position: relative;
    padding: var(--spacing-2xl);
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    border: 1px solid var(--neutral-200);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-200);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: var(--primary-100);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: var(--spacing-lg);
    background: var(--primary-50);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
}

.service-icon svg {
    width: 36px;
    height: 36px;
    color: var(--primary-600);
    transition: all var(--transition-normal);
}

.service-title {
    margin-bottom: var(--spacing-md);
}

.service-description {
    color: var(--neutral-600);
    flex-grow: 1;
}

/* Features Grid - Updated for 4x2 layout */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    align-items: start;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-xl);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--neutral-200);
    transition: all var(--transition-normal);
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-200);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1);
    color: var(--primary-600);
}

.feature-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    color: var(--success-500);
    transition: all var(--transition-normal);
}

.feature-content h4 {
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: var(--spacing-xs);
}

.feature-content p {
    color: var(--neutral-600);
    font-size: 0.9rem;
}

/* Event Grid - Updated for 6 cards */
.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
}

.event-card {
    text-align: center;
    padding: var(--spacing-2xl);
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--neutral-200);
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-200);
}

.event-icon {
    width: 48px;
    height: 48px;
    color: var(--primary-600);
    margin: 0 auto var(--spacing-lg);
}

.event-title {
    margin-bottom: var(--spacing-md);
}

.event-description {
    color: var(--neutral-600);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.testimonial {
    padding: var(--spacing-2xl);
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    border: 1px solid var(--neutral-200);
}

.testimonial-quote {
    width: 32px;
    height: 32px;
    color: var(--primary-300);
    margin-bottom: var(--spacing-lg);
}

.testimonial-content {
    font-style: italic;
    margin-bottom: var(--spacing-lg);
    color: var(--neutral-700);
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--neutral-900);
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    align-items: start;
}

.pricing-card {
    position: relative;
    padding: var(--spacing-2xl);
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--neutral-200);
    transition: all var(--transition-normal);
}

.pricing-card.featured {
    border-color: var(--primary-500);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-600);
    color: white;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-title {
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-600);
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.pricing-note {
    text-align: center;
    color: var(--neutral-500);
    margin-bottom: var(--spacing-xl);
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--spacing-2xl);
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    color: var(--neutral-700);
}

.pricing-check {
    width: 20px;
    height: 20px;
    color: var(--success-500);
    flex-shrink: 0;
}

/* Contact Form */
.contact-section {
    background: var(--neutral-50);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.form-header h2 {
    margin-bottom: var(--spacing-lg);
}

.contact-form {
    background: white;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    color: var(--neutral-700);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: var(--spacing-md);
    border: 2px solid var(--neutral-300);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
    font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px var(--primary-100);
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.checkbox-input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-600);
}

.submit-button {
    width: 100%;
    padding: var(--spacing-lg) var(--spacing-2xl);
    background: var(--primary-600);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.submit-button:hover {
    background: var(--primary-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: center;
}

.form-message.success {
    background: var(--success-100);
    color: var(--success-800);
    border: 1px solid var(--success-200);
}

.form-message.error {
    background: var(--accent-100);
    color: var(--accent-800);
    border: 1px solid var(--accent-200);
}

/* Footer */
.footer {
    background: var(--neutral-900);
    color: var(--neutral-300);
    padding: var(--spacing-4xl) 0 var(--spacing-2xl);
}

.trust-signals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-4xl);
    text-align: center;
}

.trust-item {
    padding: var(--spacing-xl);
    background: var(--neutral-800);
    border-radius: var(--radius-lg);
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-400);
    margin-bottom: var(--spacing-sm);
}

.trust-label {
    color: var(--neutral-400);
    font-weight: 500;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-section h3 {
    color: white;
    margin-bottom: var(--spacing-lg);
    font-weight: 600;
}

.footer-section a {
    display: block;
    color: var(--neutral-400);
    text-decoration: none;
    margin-bottom: var(--spacing-sm);
    transition: color var(--transition-fast);
}

.footer-section a:hover {
    color: var(--primary-400);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-2xl);
    border-top: 1px solid var(--neutral-700);
    color: var(--neutral-500);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .service-icon {
        width: 64px;
        height: 64px;
    }
    
    .service-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .feature-item {
        padding: var(--spacing-lg);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }
    
    .container {
        padding: 0 var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .service-card {
        padding: var(--spacing-xl);
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }
    
    .feature-icon {
        align-self: center;
    }
    
    .contact-form {
        padding: var(--spacing-xl);
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: var(--spacing-3xl) 0;
    }
}

/* Mobile Navigation */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--neutral-700);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: var(--spacing-lg);
        box-shadow: var(--shadow-lg);
    }
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Focus Styles */
:focus-visible {
    outline: 2px solid var(--primary-600);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .footer {
        position: static;
    }
    
    .hero {
        padding-top: var(--spacing-5xl);
    }
}