/* ============================================
   SHADED FANG - TECH FUTURISTIC DESIGN
   Modern CSS with Flexbox Layouts Only
   ============================================ */

/* CSS Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #e0e0e0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 32px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

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

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

a:hover {
  color: #00cccc;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

ul, ol {
  margin-left: 20px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
  color: #b0b0b0;
}

strong {
  color: #ffffff;
  font-weight: 600;
}

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

/* Header */
header {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 255, 255, 0.1);
}

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

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

.logo img:hover {
  transform: scale(1.05);
}

/* Main Navigation */
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #00ffff;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00ffff, #00ccff);
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #00ffff, #00ccff);
  border: none;
  color: #0a0a0a;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.4);
  transition: all 0.3s ease;
}

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

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
  z-index: 1999;
  padding: 80px 32px 32px;
  transition: right 0.4s ease;
  box-shadow: -5px 0 30px rgba(0, 255, 255, 0.2);
  border-left: 2px solid rgba(0, 255, 255, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #00ffff;
  color: #00ffff;
  font-size: 28px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #00ffff;
  color: #0a0a0a;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  font-size: 18px;
  font-weight: 600;
  color: #00ffff;
  padding: 16px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  border-left-color: #00ffff;
  padding-left: 24px;
  background: rgba(0, 255, 255, 0.1);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff, #00ffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

.season-label {
  display: inline-block;
  background: rgba(0, 255, 255, 0.2);
  color: #00ffff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(0, 255, 255, 0.4);
  margin-bottom: 24px;
}

.trust-badge {
  font-size: 14px;
  color: #00ffff;
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #00ffff, #00ccff);
  color: #0a0a0a;
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 255, 255, 0.5);
  color: #0a0a0a;
}

.btn-secondary {
  background: transparent;
  color: #00ffff;
  border: 2px solid #00ffff;
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(0, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 255, 255, 0.4);
}

/* Sections */
section {
  padding: 60px 20px;
  margin-bottom: 40px;
  position: relative;
}

.introduction,
.our-story,
.our-mission,
.confirmation {
  background: rgba(26, 26, 46, 0.5);
  border-radius: 16px;
  padding: 48px 32px;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.value-proposition {
  font-size: 18px;
  color: #00ffff;
  font-weight: 600;
  margin-top: 24px;
}

/* Services Grid */
.services-grid,
.services-overview .services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: rgba(26, 26, 46, 0.8);
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 16px;
  padding: 32px 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 255, 255, 0.3);
  border-color: #00ffff;
}

.service-card h3 {
  color: #00ffff;
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.service-card p {
  color: #b0b0b0;
  line-height: 1.6;
}

/* Service Details */
.service-detail {
  background: rgba(26, 26, 46, 0.6);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.service-detail:hover {
  border-color: #00ffff;
  box-shadow: 0 8px 30px rgba(0, 255, 255, 0.2);
}

.service-meta {
  color: #00ffff;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 16px;
}

/* Trends Grid */
.trends-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.trend-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(0, 204, 255, 0.05));
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 12px;
  padding: 32px 24px;
  transition: all 0.3s ease;
}

.trend-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 255, 255, 0.25);
  border-color: #00ffff;
}

.trend-card h3 {
  color: #00ffff;
  margin-bottom: 12px;
}

.trend-card .how-to {
  font-size: 14px;
  color: #00cccc;
  font-style: italic;
  margin-top: 12px;
}

/* Benefits Grid */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.benefit-item {
  flex: 1 1 calc(50% - 32px);
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: rgba(26, 26, 46, 0.4);
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  border-color: #00ffff;
  background: rgba(26, 26, 46, 0.6);
}

.benefit-item img {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
}

.benefit-item h3 {
  color: #00ffff;
  margin-bottom: 8px;
}

/* Testimonials */
.testimonials {
  background: rgba(22, 33, 62, 0.5);
  padding: 60px 20px;
  border-radius: 16px;
  margin-bottom: 60px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 255, 255, 0.2);
  border-color: #00ffff;
}

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

.testimonial-card .author {
  font-weight: 600;
  color: #00ffff;
  font-size: 14px;
  margin-bottom: 8px;
}

.testimonial-card .rating {
  color: #ffd700;
  font-size: 18px;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.step {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background: rgba(26, 26, 46, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  border-color: #00ffff;
  box-shadow: 0 8px 30px rgba(0, 255, 255, 0.2);
}

.step-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #00ffff;
  margin-bottom: 16px;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.step h3 {
  color: #00ffff;
  margin-bottom: 12px;
  font-size: 20px;
}

/* Style Types */
.styles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.style-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.05), rgba(0, 204, 255, 0.02));
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.style-card:hover {
  border-color: #00ffff;
  transform: translateY(-3px);
}

/* Color Analysis */
.color-seasons {
  list-style: none;
  margin: 32px 0;
  padding: 0;
}

.color-seasons li {
  background: rgba(26, 26, 46, 0.5);
  padding: 16px 24px;
  margin-bottom: 12px;
  border-left: 4px solid #00ffff;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.color-seasons li:hover {
  background: rgba(26, 26, 46, 0.7);
  padding-left: 32px;
}

/* Must-Haves */
.must-have-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
}

.must-have-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  padding: 24px;
  background: rgba(26, 26, 46, 0.6);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.must-have-item:hover {
  border-color: #00ffff;
  box-shadow: 0 8px 25px rgba(0, 255, 255, 0.2);
}

/* Tips Grid */
.tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.tip-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  padding: 24px;
  background: rgba(0, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-3px);
  border-color: #00ffff;
}

/* Team Grid */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.team-member {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  padding: 32px;
  background: rgba(26, 26, 46, 0.6);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 255, 255, 0.2);
  border-color: #00ffff;
}

.team-member .role {
  color: #00ffff;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

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

.stats p {
  text-align: center;
  color: #00ffff;
  font-size: 18px;
  font-weight: 600;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.stat {
  text-align: center;
  padding: 24px;
}

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

/* Values Grid */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.value-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  padding: 24px;
  background: rgba(26, 26, 46, 0.5);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.value-item:hover {
  border-color: #00ffff;
  transform: translateY(-3px);
}

/* Package Grid */
.package-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: center;
}

.package-card {
  flex: 1 1 400px;
  max-width: 500px;
  padding: 40px 32px;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(0, 204, 255, 0.05));
  border: 2px solid rgba(0, 255, 255, 0.4);
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 255, 255, 0.3);
  border-color: #00ffff;
}

.package-card .price {
  margin: 24px 0;
}

.package-card .regular {
  text-decoration: line-through;
  color: #808080;
  font-size: 20px;
  margin-right: 12px;
}

.package-card strong {
  font-size: 32px;
  color: #00ffff;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.package-card .discount {
  display: inline-block;
  background: #00ffff;
  color: #0a0a0a;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 16px;
}

/* FAQ */
.faq-item {
  background: rgba(26, 26, 46, 0.5);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #00ffff;
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.15);
}

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

/* Contact Options */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: center;
}

.contact-option {
  flex: 1 1 300px;
  max-width: 400px;
  text-align: center;
  padding: 32px;
  background: rgba(26, 26, 46, 0.6);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-option:hover {
  transform: translateY(-5px);
  border-color: #00ffff;
  box-shadow: 0 8px 30px rgba(0, 255, 255, 0.2);
}

.contact-option img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
}

.contact-option h3 {
  color: #00ffff;
  margin-bottom: 12px;
}

.contact-option .note {
  font-size: 14px;
  color: #808080;
  margin-top: 8px;
}

/* Contact Form */
.form-wrapper {
  max-width: 600px;
  margin: 32px auto;
  padding: 32px;
  background: rgba(26, 26, 46, 0.6);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 12px;
}

.form-note {
  background: rgba(0, 255, 255, 0.1);
  padding: 16px;
  border-left: 4px solid #00ffff;
  border-radius: 8px;
  margin-bottom: 24px;
  color: #e0e0e0;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.field-description {
  font-size: 14px;
  color: #808080;
  font-style: italic;
}

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

/* Location & Hours */
.hours-list {
  list-style: none;
  max-width: 400px;
  margin: 32px auto;
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(26, 26, 46, 0.5);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 8px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.hours-list li:hover {
  background: rgba(26, 26, 46, 0.7);
  border-color: #00ffff;
}

.directions ul {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}

.directions li {
  padding: 12px 16px;
  background: rgba(26, 26, 46, 0.3);
  border-left: 3px solid #00ffff;
  margin-bottom: 8px;
  border-radius: 4px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(0, 204, 255, 0.05));
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 16px;
  padding: 60px 32px;
  text-align: center;
  margin-bottom: 60px;
}

.cta-section h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

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

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

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

.trust-element {
  color: #00ffff;
  font-weight: 600;
  margin-top: 24px;
}

.service-offer {
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 12px;
  padding: 24px;
  margin: 32px auto;
  max-width: 600px;
}

/* Thank You Page */
.thank-you-hero {
  text-align: center;
  padding: 80px 20px;
}

.checkmark {
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 48px;
  color: #0a0a0a;
  background: linear-gradient(135deg, #00ffff, #00ccff);
  border-radius: 50%;
  margin: 0 auto 32px;
  box-shadow: 0 8px 30px rgba(0, 255, 255, 0.4);
}

.next-steps {
  max-width: 600px;
  margin: 32px auto;
  padding-left: 0;
  list-style: none;
}

.next-steps li {
  background: rgba(26, 26, 46, 0.5);
  border-left: 4px solid #00ffff;
  padding: 16px 24px;
  margin-bottom: 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.next-steps li:hover {
  background: rgba(26, 26, 46, 0.7);
  padding-left: 32px;
}

.action-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  justify-content: center;
}

.action-card {
  flex: 1 1 300px;
  max-width: 400px;
  padding: 32px;
  background: rgba(26, 26, 46, 0.6);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.action-card:hover {
  transform: translateY(-5px);
  border-color: #00ffff;
  box-shadow: 0 8px 30px rgba(0, 255, 255, 0.2);
}

/* Legal Content */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.legal-content h1 {
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: #00ffff;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  color: #00cccc;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 24px;
}

.legal-content li {
  margin-bottom: 12px;
  line-height: 1.6;
}

/* Key Points */
.key-points {
  list-style: none;
  padding: 0;
  margin: 32px 0;
}

.key-points li {
  background: rgba(26, 26, 46, 0.5);
  padding: 16px 24px;
  margin-bottom: 12px;
  border-left: 4px solid #00ffff;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.key-points li:hover {
  background: rgba(26, 26, 46, 0.7);
  padding-left: 32px;
}

.color-list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
}

.color-list li {
  background: rgba(26, 26, 46, 0.5);
  padding: 16px 24px;
  margin-bottom: 12px;
  border-left: 4px solid #00ffff;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.color-list li:hover {
  background: rgba(26, 26, 46, 0.7);
  padding-left: 32px;
}

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

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

.footer-brand,
.footer-contact,
.footer-nav,
.footer-legal {
  flex: 1 1 200px;
}

.footer-brand .tagline {
  font-size: 14px;
  color: #808080;
  margin-top: 16px;
  font-style: italic;
}

.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
}

footer h4 {
  color: #00ffff;
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

footer nav a {
  color: #b0b0b0;
  font-size: 14px;
  transition: all 0.3s ease;
}

footer nav a:hover {
  color: #00ffff;
  padding-left: 8px;
}

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

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

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

/* Cookie Consent Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.98), rgba(26, 26, 46, 0.98));
  backdrop-filter: blur(10px);
  border-top: 2px solid rgba(0, 255, 255, 0.4);
  padding: 24px 20px;
  z-index: 1500;
  box-shadow: 0 -4px 30px rgba(0, 255, 255, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 300px;
  color: #e0e0e0;
  font-size: 14px;
}

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

.cookie-buttons .btn {
  padding: 12px 24px;
  font-size: 14px;
}

/* Cookie Settings Modal */
#cookie-settings-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#cookie-settings-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: linear-gradient(135deg, #0a0a0a, #1a1a2e);
  border: 2px solid rgba(0, 255, 255, 0.4);
  border-radius: 16px;
  padding: 40px 32px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-modal-content h2 {
  color: #00ffff;
  margin-bottom: 24px;
}

.cookie-category {
  background: rgba(26, 26, 46, 0.5);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 16px;
}

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

.cookie-category p {
  font-size: 14px;
  color: #b0b0b0;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 24px;
  background: #333;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: #00ffff;
}

.toggle-switch::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.3s ease;
}

.toggle-switch.active::before {
  transform: translateX(26px);
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Hide desktop nav, show mobile menu */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  /* Flexbox adjustments */
  .service-card,
  .trend-card,
  .benefit-item,
  .testimonial-card,
  .step,
  .style-card,
  .must-have-item,
  .tip-card,
  .team-member,
  .value-item {
    flex: 1 1 100%;
  }
  
  /* Hero CTA */
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Process steps */
  .process-steps {
    flex-direction: column;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-buttons .btn {
    flex: 1 1 auto;
  }
  
  /* CTA buttons */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Mobile menu */
  .mobile-menu {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  section {
    padding: 40px 16px;
  }
  
  .checkmark {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 36px;
  }
}

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

.hero-content,
.service-card,
.testimonial-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth transitions */
* {
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* Accessibility */
:focus {
  outline: 2px solid #00ffff;
  outline-offset: 2px;
}

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

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-settings-modal {
    display: none !important;
  }
}