/* 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: #1a1a1a;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0f3460 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

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

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

a:hover {
  color: #00ccff;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
}

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

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

strong {
  color: #00ffff;
  font-weight: 600;
}

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

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

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

.logo {
  display: flex;
  align-items: center;
}

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

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

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

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

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

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

.main-nav a:hover {
  background: rgba(0, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

/* 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;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  color: #0a0a1a;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.5);
  transition: all 0.3s ease;
}

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #0a0a1a 0%, #1a1a2e 100%);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 20px rgba(0, 255, 255, 0.3);
  border-left: 2px solid rgba(0, 255, 255, 0.5);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 255, 255, 0.2);
  border: 2px solid #00ffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  color: #00ffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
  gap: 4px;
}

.mobile-nav a {
  padding: 16px 20px;
  font-size: 18px;
  color: #00ffff;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.mobile-nav a:hover {
  background: rgba(0, 255, 255, 0.1);
  border-color: rgba(0, 255, 255, 0.3);
  transform: translateX(8px);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(10, 10, 26, 0.9), rgba(26, 26, 46, 0.9)), 
              linear-gradient(45deg, #00ffff22, #ff00ff22);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(30px, 30px); }
}

.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, #00ffff, #00ccff, #0099ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5)); }
  to { filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.8)); }
}

.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: 32px;
}

.trust-badge {
  display: inline-block;
  padding: 12px 24px;
  background: rgba(0, 255, 255, 0.1);
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 50px;
  color: #00ffff;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: width 0.6s, height 0.6s, top 0.6s, left 0.6s;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

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

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 255, 255, 0.6);
}

.btn-secondary {
  background: transparent;
  color: #00ffff;
  border-color: #00ffff;
}

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

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

.page-hero {
  background: linear-gradient(135deg, rgba(10, 10, 26, 0.95), rgba(26, 26, 46, 0.95));
  padding: 80px 20px 60px;
  text-align: center;
  border-bottom: 2px solid rgba(0, 255, 255, 0.3);
}

.breadcrumbs {
  margin-top: 20px;
  font-size: 14px;
  color: #808080;
}

.breadcrumbs a {
  color: #00ffff;
}

/* Feature Grids */
.features-grid,
.services-grid,
.testimonials-grid,
.article-grid,
.season-grid,
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.feature-card,
.service-card,
.testimonial-card,
.article-card,
.season-card,
.stat-card {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(15, 52, 96, 0.6));
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  margin-bottom: 20px;
}

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

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

.feature-card:hover,
.service-card:hover,
.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 255, 255, 0.3);
  border-color: rgba(0, 255, 255, 0.5);
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(15, 52, 96, 0.8));
}

.feature-card h3,
.service-card h3,
.article-card h3 {
  color: #00ffff;
  margin-bottom: 12px;
  font-size: 20px;
}

.price,
.price-range {
  font-size: 24px;
  font-weight: 700;
  color: #00ffff;
  margin-top: 16px;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Testimonials */
.testimonials {
  background: linear-gradient(135deg, rgba(15, 52, 96, 0.3), rgba(26, 26, 46, 0.5));
  padding: 60px 20px;
}

.testimonial-card {
  background: rgba(26, 26, 46, 0.9);
  padding: 32px;
  border-left: 4px solid #00ffff;
  position: relative;
  flex: 1 1 calc(50% - 12px);
}

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

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

.rating {
  color: #ffd700;
  font-size: 18px;
  margin-top: 8px;
}

/* Value Proposition */
.value-proposition {
  background: linear-gradient(135deg, rgba(10, 10, 26, 0.8), rgba(26, 26, 46, 0.6));
  padding: 60px 20px;
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 36px;
}

/* Services Preview */
.services-preview {
  padding: 60px 20px;
}

.services-preview h2 {
  text-align: center;
  margin-bottom: 48px;
}

.services-preview .btn {
  display: block;
  margin: 40px auto 0;
  max-width: 400px;
}

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

.cta-banner h2,
.cta-section h2 {
  margin-bottom: 16px;
}

.contact-info {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 24px 0;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e0e0e0;
  font-weight: 600;
}

.contact-info img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

/* Product Categories */
.product-category,
.service-detailed {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(15, 52, 96, 0.6));
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.product-category:hover,
.service-detailed:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 255, 255, 0.3);
  border-color: rgba(0, 255, 255, 0.4);
}

/* Quality & Delivery Info */
.quality-section,
.delivery-info,
.process-section,
.consultation-types {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.6), rgba(15, 52, 96, 0.4));
  border-radius: 16px;
  padding: 32px;
  margin-top: 32px;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

.quality-section ul,
.process-section ol {
  list-style-position: inside;
}

.process-section ol {
  counter-reset: item;
  list-style: none;
}

.process-section ol li {
  counter-increment: item;
  padding-left: 32px;
  position: relative;
  margin-bottom: 16px;
}

.process-section ol li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #00ffff, #00ccff);
  color: #0a0a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

/* Consultation Cards */
.consultation-card,
.method-card {
  background: rgba(26, 26, 46, 0.8);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.consultation-card:hover,
.method-card:hover {
  border-color: rgba(0, 255, 255, 0.4);
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.2);
}

/* Blog/Articles */
.article-grid {
  margin-top: 40px;
}

.article-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
}

/* Seasonal Guides */
.seasonal-guides {
  margin-top: 48px;
}

.season-grid {
  margin-top: 32px;
}

.season-card {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(0, 204, 255, 0.1));
  padding: 24px;
}

/* Expert Tips */
.expert-tips {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.6), rgba(15, 52, 96, 0.4));
  border-radius: 16px;
  padding: 32px;
  margin-top: 48px;
  border: 1px solid rgba(0, 255, 255, 0.2);
}

/* FAQ */
.faq,
.faq-contact {
  margin-top: 48px;
}

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

.faq-item:hover {
  background: rgba(26, 26, 46, 0.8);
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.2);
}

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

/* About Page */
.story,
.mission-vision,
.values,
.team,
.why-us,
.location,
.departments {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(15, 52, 96, 0.6));
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
}

.statistics {
  margin: 48px 0;
}

.stats-grid {
  margin-top: 32px;
}

.stat-card {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.15), rgba(0, 204, 255, 0.1));
  border: 2px solid rgba(0, 255, 255, 0.3);
  padding: 32px 24px;
}

.stat-card h3 {
  font-size: 48px;
  color: #00ffff;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

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

/* Contact Page */
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}

.contact-methods .method-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
}

.consultation-booking,
.office-hours,
.location-details {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(15, 52, 96, 0.6));
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
}

/* Legal Pages */
.legal-content {
  padding: 40px 20px;
}

.legal-section {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(15, 52, 96, 0.6));
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
}

.legal-section h2 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #00ffff;
}

.legal-section h3 {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #00ccff;
}

.legal-section ul li,
.legal-section ol li {
  margin-bottom: 12px;
  line-height: 1.6;
}

/* Thank You Page */
.thank-you-hero {
  background: linear-gradient(135deg, rgba(10, 10, 26, 0.95), rgba(26, 26, 46, 0.95));
  padding: 100px 20px;
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #00ffff, #00ccff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  color: #0a0a1a;
  margin: 32px auto;
  box-shadow: 0 8px 40px rgba(0, 255, 255, 0.5);
  animation: successPulse 2s ease-in-out infinite;
}

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

.confirmation,
.while-you-wait,
.contact-alternative,
.reassurance,
.next-steps {
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(15, 52, 96, 0.6));
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
}

.while-you-wait ul {
  list-style: none;
  padding-left: 0;
}

.while-you-wait ul li {
  margin-bottom: 12px;
}

.while-you-wait ul li a {
  display: inline-block;
  padding: 12px 24px;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.while-you-wait ul li a:hover {
  background: rgba(0, 255, 255, 0.2);
  transform: translateX(8px);
}

.testimonial-single {
  padding: 60px 20px;
}

.testimonial-single .testimonial-card {
  max-width: 700px;
  margin: 0 auto;
  flex: none;
}

/* Footer */
footer {
  background: linear-gradient(180deg, rgba(10, 10, 26, 0.95), rgba(5, 5, 13, 1));
  border-top: 2px solid rgba(0, 255, 255, 0.3);
  padding: 60px 20px 32px;
  margin-top: 60px;
}

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

.footer-brand,
.footer-links,
.footer-contact,
.footer-legal {
  flex: 1 1 calc(25% - 30px);
  min-width: 200px;
}

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

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

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

.footer-links a,
.footer-legal a {
  display: block;
  padding: 8px 0;
  color: #b0b0b0;
  transition: all 0.3s ease;
  font-size: 14px;
}

.footer-links a:hover,
.footer-legal a:hover {
  color: #00ffff;
  padding-left: 8px;
}

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

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

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

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(10, 10, 26, 0.98), rgba(5, 5, 13, 0.98));
  border-top: 2px solid rgba(0, 255, 255, 0.3);
  padding: 24px;
  z-index: 1998;
  box-shadow: 0 -4px 20px rgba(0, 255, 255, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-consent-text {
  flex: 1 1 60%;
  min-width: 300px;
}

.cookie-consent-text p {
  color: #e0e0e0;
  font-size: 14px;
  margin-bottom: 0;
}

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

.cookie-consent-buttons button {
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-accept-all {
  background: linear-gradient(135deg, #00ffff, #00ccff);
  color: #0a0a1a;
}

.cookie-accept-all:hover {
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.5);
  transform: translateY(-2px);
}

.cookie-reject-all {
  background: transparent;
  color: #808080;
  border: 2px solid #808080;
}

.cookie-reject-all:hover {
  color: #e0e0e0;
  border-color: #e0e0e0;
}

.cookie-settings {
  background: transparent;
  color: #00ffff;
  border: 2px solid #00ffff;
}

.cookie-settings:hover {
  background: rgba(0, 255, 255, 0.1);
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 2000;
  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(15, 52, 96, 0.98));
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  box-shadow: 0 8px 40px rgba(0, 255, 255, 0.3);
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 255, 255, 0.2);
  border: 2px solid #00ffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  color: #00ffff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: rgba(0, 255, 255, 0.3);
  transform: rotate(90deg);
}

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

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

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

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background: #4a4a4a;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: linear-gradient(135deg, #00ffff, #00ccff);
}

.cookie-toggle.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

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

.cookie-toggle.active::after {
  transform: translateX(24px);
}

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

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

.cookie-modal-buttons button {
  flex: 1;
  padding: 14px 24px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 140px;
}

.cookie-save-preferences {
  background: linear-gradient(135deg, #00ffff, #00ccff);
  color: #0a0a1a;
}

.cookie-save-preferences:hover {
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 40px; }
  
  /* Header */
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  
  /* Hero */
  .hero { padding: 60px 20px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  
  /* Cards */
  .feature-card,
  .service-card,
  .testimonial-card,
  .article-card,
  .season-card,
  .stat-card,
  .method-card {
    flex: 1 1 100%;
    min-width: auto;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-brand,
  .footer-links,
  .footer-contact,
  .footer-legal {
    flex: 1 1 100%;
  }
  
  /* Cookie Consent */
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-consent-text {
    flex: 1 1 100%;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-consent-buttons button {
    width: 100%;
  }
  
  /* Cookie Modal */
  .cookie-modal-content {
    padding: 24px;
    max-height: 90vh;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons button {
    width: 100%;
  }
  
  /* Contact Methods */
  .contact-methods .method-card {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  .hero h1 { font-size: 32px; }
  
  .btn {
    padding: 14px 24px;
    font-size: 14px;
  }
  
  section {
    padding: 40px 16px;
  }
  
  .feature-card,
  .service-card,
  .legal-section,
  .product-category {
    padding: 24px;
  }
}

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

.feature-card,
.service-card,
.testimonial-card {
  animation: fadeIn 0.6s ease-out forwards;
}

/* Accessibility */
.btn:focus,
button:focus,
a:focus {
  outline: 2px solid #00ffff;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none !important;
  }
}