/* ============================================
   SHADOWED TRAILS - TECH FUTURISTIC CSS
   Design Style: Futuristic Tech-Inspired
   ============================================ */

/* CSS RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: #0f0f23;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1a2e 50%, #16213e 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

/* FUTURISTIC CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

/* TECH FUTURISTIC TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #00d9ff;
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #00d9ff, #7b2ff7);
  box-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

h3 {
  font-size: 24px;
  color: #00d9ff;
}

p {
  margin-bottom: 16px;
  color: #e0e0e0;
  font-size: 16px;
}

a {
  color: #00d9ff;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

a:hover {
  color: #7b2ff7;
  text-shadow: 0 0 8px rgba(123, 47, 247, 0.6);
}

ul {
  list-style: none;
}

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

/* FUTURISTIC HEADER */
header {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(0, 217, 255, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.2);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  height: 50px;
  filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.4));
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 15px rgba(0, 217, 255, 0.6));
}

/* MAIN NAVIGATION - TECH STYLE */
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #e0e0e0;
  font-weight: 500;
  padding: 8px 16px;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 4px;
  font-size: 14px;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00d9ff, #7b2ff7);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #00d9ff;
  background: rgba(0, 217, 255, 0.1);
}

.main-nav a:hover::before {
  width: 80%;
}

/* BUTTONS - FUTURISTIC NEON STYLE */
.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 600;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

.btn-primary {
  background: linear-gradient(135deg, #00d9ff, #0088cc);
  color: #0a0e27;
  box-shadow: 0 4px 15px rgba(0, 217, 255, 0.4);
  border: 2px solid transparent;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 217, 255, 0.6);
}

.btn-secondary {
  background: rgba(123, 47, 247, 0.2);
  color: #00d9ff;
  border: 2px solid #7b2ff7;
  box-shadow: 0 4px 15px rgba(123, 47, 247, 0.3);
}

.btn-secondary:hover {
  background: rgba(123, 47, 247, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(123, 47, 247, 0.5);
}

.btn-link {
  background: transparent;
  color: #00d9ff;
  padding: 8px 16px;
  font-size: 14px;
  border: 1px solid rgba(0, 217, 255, 0.3);
}

.btn-link:hover {
  background: rgba(0, 217, 255, 0.1);
  border-color: #00d9ff;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  background: linear-gradient(135deg, #00d9ff, #7b2ff7);
  color: #0a0e27;
  border: none;
  font-size: 24px;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 6px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  box-shadow: 0 4px 15px rgba(0, 217, 255, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 217, 255, 0.6);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1a2e 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 25px rgba(0, 217, 255, 0.3);
  border-left: 2px solid rgba(0, 217, 255, 0.3);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 0, 100, 0.2);
  color: #ff0064;
  border: 2px solid #ff0064;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 0, 100, 0.3);
}

.mobile-menu-close:hover {
  background: rgba(255, 0, 100, 0.4);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  color: #e0e0e0;
  font-size: 18px;
  padding: 12px 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.mobile-nav a:hover {
  color: #00d9ff;
  background: rgba(0, 217, 255, 0.1);
  border-left-color: #00d9ff;
  transform: translateX(5px);
}

/* HERO SECTION - FUTURISTIC */
.hero {
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.9), rgba(26, 26, 46, 0.9));
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid rgba(0, 217, 255, 0.3);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

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

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 56px;
  color: #00d9ff;
  margin-bottom: 24px;
  text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.hero-subtitle {
  font-size: 20px;
  color: #e0e0e0;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-badge {
  display: inline-block;
  padding: 12px 24px;
  background: rgba(123, 47, 247, 0.2);
  border: 2px solid #7b2ff7;
  border-radius: 30px;
  color: #00d9ff;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(123, 47, 247, 0.3);
}

/* HERO SIMPLE */
.hero-simple {
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.9), rgba(26, 26, 46, 0.9));
  padding: 80px 20px 60px;
  text-align: center;
  border-bottom: 2px solid rgba(0, 217, 255, 0.3);
}

.hero-simple h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.hero-simple p {
  font-size: 18px;
  color: #b0b0b0;
  max-width: 700px;
  margin: 0 auto;
}

/* HERO SERVICE */
.hero-service {
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(26, 26, 46, 0.95));
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-service::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(123, 47, 247, 0.15) 0%, transparent 70%);
}

.price-badge {
  display: inline-block;
  padding: 16px 32px;
  background: linear-gradient(135deg, #00d9ff, #0088cc);
  color: #0a0e27;
  font-weight: 700;
  font-size: 24px;
  border-radius: 8px;
  margin: 24px 0;
  box-shadow: 0 6px 25px rgba(0, 217, 255, 0.4);
}

/* SECTIONS */
section {
  padding: 60px 20px;
  position: relative;
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #b0b0b0;
  max-width: 800px;
  margin: 0 auto 48px;
}

/* CARDS - FUTURISTIC STYLE */
.services-grid,
.values-grid,
.team-grid,
.testimonials-grid,
.blog-grid,
.packages-grid,
.help-options,
.categories-grid,
.articles-grid,
.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.service-card,
.value-card,
.team-member,
.testimonial-card,
.blog-card,
.package-card,
.help-card,
.category-card,
.article-card,
.action-card {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
  border: 2px solid rgba(0, 217, 255, 0.2);
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.service-card::before,
.value-card::before,
.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #00d9ff, #7b2ff7);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.service-card:hover,
.value-card:hover,
.team-member:hover,
.blog-card:hover,
.package-card:hover,
.help-card:hover,
.category-card:hover,
.article-card:hover,
.action-card:hover {
  transform: translateY(-8px);
  border-color: #00d9ff;
  box-shadow: 0 8px 30px rgba(0, 217, 255, 0.3);
}

.service-card h3,
.value-card h3,
.team-member h3,
.blog-card h3,
.package-card h3 {
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p,
.value-card p,
.blog-card p {
  color: #b0b0b0;
  margin-bottom: 16px;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: #00d9ff;
  margin: 16px 0;
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
}

/* TESTIMONIALS - HIGH CONTRAST */
.testimonial-card {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(22, 33, 62, 0.95));
  border: 2px solid rgba(0, 217, 255, 0.3);
  padding: 32px;
  border-radius: 12px;
  flex: 1 1 calc(50% - 24px);
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: #e0e0e0;
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-author {
  font-weight: 600;
  color: #00d9ff;
  margin-bottom: 8px;
}

.rating {
  color: #ffd700;
  font-size: 18px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

/* PACKAGE CARDS */
.package-card {
  text-align: center;
  flex: 1 1 calc(33.333% - 24px);
}

.package-card.featured {
  border: 3px solid #00d9ff;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(123, 47, 247, 0.1));
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(0, 217, 255, 0.4);
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, #00d9ff, #7b2ff7);
  color: #0a0e27;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
  box-shadow: 0 4px 10px rgba(0, 217, 255, 0.3);
}

.package-price {
  font-size: 32px;
  font-weight: 700;
  color: #00d9ff;
  margin: 16px 0;
  text-shadow: 0 0 15px rgba(0, 217, 255, 0.4);
}

.savings {
  color: #7b2ff7;
  font-weight: 600;
  margin-bottom: 20px;
}

/* PROCESS STEPS */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 48px;
}

.step {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  text-align: center;
  padding: 32px;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
  border: 2px solid rgba(0, 217, 255, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.step:hover {
  border-color: #00d9ff;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 217, 255, 0.3);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00d9ff, #0088cc);
  color: #0a0e27;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(0, 217, 255, 0.4);
}

/* CTA BANNER */
.cta-banner,
.cta-booking,
.cta-consultation {
  background: linear-gradient(135deg, rgba(123, 47, 247, 0.2), rgba(0, 217, 255, 0.2));
  padding: 60px 20px;
  text-align: center;
  border-top: 2px solid rgba(0, 217, 255, 0.3);
  border-bottom: 2px solid rgba(0, 217, 255, 0.3);
  margin: 60px 0;
}

.cta-banner h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.contact-info {
  margin-top: 24px;
  color: #b0b0b0;
  font-size: 16px;
}

/* FOOTER */
footer {
  background: rgba(10, 14, 39, 0.95);
  padding: 60px 20px 20px;
  border-top: 2px solid rgba(0, 217, 255, 0.3);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
}

.footer-col h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #00d9ff;
}

.footer-col p,
.footer-col li {
  color: #b0b0b0;
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-col a {
  color: #b0b0b0;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: #00d9ff;
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 217, 255, 0.2);
}

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

.legal-links a {
  color: #b0b0b0;
  font-size: 14px;
}

.footer-bottom p {
  color: #808080;
  font-size: 14px;
}

/* CONTACT FORM */
.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.9));
  padding: 40px;
  border-radius: 12px;
  border: 2px solid rgba(0, 217, 255, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  color: #00d9ff;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 14px;
  background: rgba(10, 14, 39, 0.8);
  border: 2px solid rgba(0, 217, 255, 0.3);
  border-radius: 6px;
  color: #e0e0e0;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: #00d9ff;
  box-shadow: 0 0 15px rgba(0, 217, 255, 0.3);
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  color: #b0b0b0;
  font-size: 14px;
  margin-top: 16px;
}

/* TABLES & LISTS */
.pricing-table,
.hours-table {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(0, 217, 255, 0.2);
  margin: 32px 0;
}

.pricing-row,
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 20px 32px;
  border-bottom: 1px solid rgba(0, 217, 255, 0.1);
}

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

.pricing-row:hover,
.hours-row:hover {
  background: rgba(0, 217, 255, 0.05);
}

.pricing-row span:first-child,
.hours-row span:first-child {
  color: #e0e0e0;
}

.pricing-row span:last-child,
.hours-row span:last-child {
  color: #00d9ff;
  font-weight: 600;
}

/* BENEFITS & FEATURES LISTS */
.benefits-list,
.features-list,
.activities-list,
.requirements-list,
.safety-list,
.tips-list,
.value-list,
.qualifications-list,
.extras-list,
.discount-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.benefits-list li,
.features-list li,
.activities-list li,
.requirements-list li,
.safety-list li,
.tips-list li,
.value-list li,
.qualifications-list li,
.extras-list li,
.discount-list li {
  padding-left: 32px;
  position: relative;
  color: #e0e0e0;
  line-height: 1.6;
}

.benefits-list li::before,
.features-list li::before,
.activities-list li::before,
.requirements-list li::before,
.safety-list li::before,
.tips-list li::before,
.value-list li::before,
.qualifications-list li::before,
.extras-list li::before,
.discount-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #00d9ff;
  font-size: 20px;
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

/* FAQ */
.faq-item {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 2px solid rgba(0, 217, 255, 0.2);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #00d9ff;
  box-shadow: 0 6px 20px rgba(0, 217, 255, 0.2);
}

.faq-item h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.faq-item p {
  color: #b0b0b0;
}

/* STATISTICS */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin: 48px 0;
}

.stat-item {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  text-align: center;
  padding: 32px;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(123, 47, 247, 0.1));
  border-radius: 12px;
  border: 2px solid rgba(0, 217, 255, 0.3);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #00d9ff;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
}

.stat-label {
  color: #b0b0b0;
  font-size: 16px;
}

/* ERROR PAGE */
.error-box {
  text-align: center;
  padding: 60px 20px;
}

.error-code {
  font-size: 120px;
  font-weight: 700;
  color: #00d9ff;
  text-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
  margin-bottom: 24px;
}

.popular-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 32px 0;
}

.popular-links a {
  padding: 12px 24px;
  background: rgba(123, 47, 247, 0.2);
  border: 2px solid #7b2ff7;
  border-radius: 6px;
  color: #00d9ff;
  transition: all 0.3s ease;
}

.popular-links a:hover {
  background: rgba(123, 47, 247, 0.4);
  transform: translateY(-2px);
}

/* LEGAL PAGES */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
  padding: 48px;
  border-radius: 12px;
  border: 2px solid rgba(0, 217, 255, 0.2);
}

.legal-content h2 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

.legal-content p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
  margin: 16px 0 16px 32px;
}

.legal-content li {
  color: #e0e0e0;
  margin-bottom: 8px;
  line-height: 1.6;
}

blockquote {
  background: rgba(0, 217, 255, 0.1);
  border-left: 4px solid #00d9ff;
  padding: 20px 24px;
  margin: 32px 0;
  font-style: italic;
  color: #b0b0b0;
  border-radius: 6px;
}

/* CONFIRMATION PAGE */
.confirmation-box {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.9));
  padding: 48px;
  border-radius: 12px;
  text-align: center;
  border: 2px solid #00d9ff;
  box-shadow: 0 8px 30px rgba(0, 217, 255, 0.3);
  max-width: 700px;
  margin: 0 auto;
}

.confirmation-box h2 {
  margin-bottom: 24px;
}

.confirmation-box ol {
  text-align: left;
  margin: 24px 0;
  padding-left: 32px;
}

.confirmation-box li {
  color: #e0e0e0;
  margin-bottom: 12px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.98), rgba(26, 26, 46, 0.98));
  backdrop-filter: blur(10px);
  padding: 24px 20px;
  z-index: 1998;
  border-top: 2px solid rgba(0, 217, 255, 0.3);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 60%;
  color: #e0e0e0;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: linear-gradient(135deg, #00d9ff, #0088cc);
  color: #0a0e27;
  box-shadow: 0 4px 15px rgba(0, 217, 255, 0.4);
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 217, 255, 0.6);
}

.cookie-reject {
  background: rgba(255, 0, 100, 0.2);
  color: #ff0064;
  border: 2px solid #ff0064;
}

.cookie-reject:hover {
  background: rgba(255, 0, 100, 0.4);
}

.cookie-settings {
  background: rgba(123, 47, 247, 0.2);
  color: #00d9ff;
  border: 2px solid #7b2ff7;
}

.cookie-settings:hover {
  background: rgba(123, 47, 247, 0.4);
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  z-index: 1999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.98), rgba(22, 33, 62, 0.98));
  padding: 40px;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border: 2px solid rgba(0, 217, 255, 0.3);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.cookie-category {
  padding: 20px;
  background: rgba(0, 217, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 16px;
  border: 1px solid rgba(0, 217, 255, 0.2);
}

.cookie-category h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: #e0e0e0;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }

  /* Hide desktop navigation */
  .main-nav,
  .header-cta {
    display: none;
  }

  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-simple h1 {
    font-size: 32px;
  }

  /* Cards stack on mobile */
  .service-card,
  .value-card,
  .team-member,
  .testimonial-card,
  .blog-card,
  .package-card,
  .help-card,
  .category-card,
  .article-card,
  .action-card,
  .stat-item,
  .step {
    flex: 1 1 100%;
  }

  /* Process steps stack */
  .process-steps {
    flex-direction: column;
  }

  /* Footer columns stack */
  .footer-col {
    flex: 1 1 100%;
  }

  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
  }

  .cookie-text {
    flex: 1 1 100%;
  }

  /* Buttons full width on mobile */
  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }

  /* Legal links wrap */
  .legal-links {
    flex-direction: column;
    gap: 12px;
  }

  /* Pricing table */
  .pricing-row,
  .hours-row {
    flex-direction: column;
    gap: 8px;
  }

  /* Stats grid */
  .stats-grid {
    flex-direction: column;
  }

  /* Error code smaller */
  .error-code {
    font-size: 80px;
  }
}

@media (max-width: 480px) {
  /* Even smaller text on tiny screens */
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  .hero h1 {
    font-size: 32px;
  }

  /* Smaller padding */
  section {
    padding: 40px 16px;
  }

  .service-card,
  .value-card,
  .package-card {
    padding: 24px;
  }

  .legal-content {
    padding: 24px;
  }

  /* Smaller buttons */
  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }
}

/* SMOOTH ANIMATIONS */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card,
.value-card,
.team-member,
.testimonial-card {
  animation: fadeIn 0.6s ease-out;
}

/* ACCESSIBILITY */
:focus-visible {
  outline: 2px solid #00d9ff;
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid #00d9ff;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer,
  .cta-banner,
  .btn-primary,
  .btn-secondary {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  h1, h2, h3 {
    color: black;
    text-shadow: none;
  }
}