/* ============================================
   REBOZ'S PUNT - TECH FUTURISTIC CSS STYLES
   Design Style: Futuristic tech-inspired design
   ============================================ */

/* CSS RESET & BASE */
* {
  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', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #e0e0e0;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1420 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* TECH FUTURISTIC VARIABLES */
:root {
  --primary-color: #00d4ff;
  --secondary-color: #ff006e;
  --accent-color: #00ff88;
  --dark-bg: #0a0e27;
  --dark-card: #151a35;
  --neon-glow: 0 0 20px rgba(0, 212, 255, 0.5);
  --neon-glow-strong: 0 0 30px rgba(0, 212, 255, 0.8);
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', 'Open Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 16px;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #00d4ff, #ff006e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  color: var(--text-secondary);
}

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

a:hover {
  color: var(--accent-color);
  text-shadow: var(--neon-glow);
}

ul {
  list-style: none;
}

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

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

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

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

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

.logo img:hover {
  filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.8));
  transform: scale(1.05);
}

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

.main-nav a {
  color: var(--text-primary);
  font-weight: 500;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 8px;
  position: relative;
  transition: var(--transition);
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: translateX(-50%);
  transition: var(--transition);
}

.main-nav a:hover {
  color: var(--primary-color);
}

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

.header-cta {
  display: flex;
  align-items: center;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--neon-glow-strong);
  transition: var(--transition);
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 0 40px rgba(0, 212, 255, 1);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #0a0e27 0%, #151a35 100%);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -5px 0 30px rgba(0, 212, 255, 0.3);
  border-left: 2px solid var(--primary-color);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--secondary-color);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 0 15px rgba(255, 0, 110, 0.5);
}

.mobile-menu-close:hover {
  transform: rotate(90deg);
  box-shadow: 0 0 25px rgba(255, 0, 110, 0.8);
}

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

.mobile-nav a {
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 500;
  padding: 16px 20px;
  border-radius: 8px;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: var(--transition);
}

.mobile-nav a:hover {
  background: rgba(0, 212, 255, 0.15);
  border-color: var(--primary-color);
  transform: translateX(10px);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  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.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  box-shadow: var(--neon-glow);
  border: 2px solid transparent;
}

.btn-primary:hover {
  box-shadow: var(--neon-glow-strong);
  transform: translateY(-3px);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: inset 0 0 15px rgba(0, 212, 255, 0.2);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: var(--dark-bg);
  box-shadow: var(--neon-glow);
  transform: translateY(-3px);
}

/* HERO SECTIONS */
.hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(255, 0, 110, 0.1) 100%);
  border-bottom: 2px solid rgba(0, 212, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 212, 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;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease-out;
}

.hero p {
  font-size: 20px;
  margin-bottom: 32px;
  color: var(--text-secondary);
  animation: fadeInUp 1s ease-out;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1.2s ease-out;
}

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

.trust-indicators {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-indicators span {
  padding: 12px 24px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-primary);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

/* SECTIONS */
.section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

.section h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 40px;
}

.section p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 32px;
  font-size: 18px;
}

/* SERVICE GRIDS & CARDS */
.service-grid,
.pricing-grid,
.features-grid,
.values-grid,
.options-grid,
.link-grid,
.discount-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.service-card,
.pricing-card,
.feature,
.value-card,
.option-card,
.link-card,
.discount-card {
  background: var(--dark-card);
  padding: 32px;
  border-radius: var(--border-radius);
  border: 2px solid rgba(0, 212, 255, 0.2);
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 400px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before,
.pricing-card::before,
.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
  transition: left 0.6s;
}

.service-card:hover::before,
.pricing-card:hover::before,
.feature:hover::before {
  left: 100%;
}

.service-card:hover,
.pricing-card:hover,
.feature:hover,
.value-card:hover,
.option-card:hover,
.link-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

.service-card img,
.link-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px var(--primary-color));
}

.service-card h3,
.pricing-card h3,
.feature h3,
.value-card h3,
.option-card h3,
.link-card h3 {
  color: var(--text-primary);
  margin-bottom: 12px;
}

.service-card p,
.pricing-card p,
.feature p,
.value-card p,
.option-card p,
.link-card p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  text-align: left;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
  margin: 16px 0;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.savings {
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--dark-bg);
  font-weight: 600;
  margin-top: 16px;
}

.discount-amount {
  font-size: 32px;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 16px 0;
  text-shadow: 0 0 10px rgba(255, 0, 110, 0.5);
}

/* LISTS */
ul {
  margin: 16px 0;
  padding-left: 0;
}

li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  color: var(--text-secondary);
}

li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
  text-shadow: 0 0 5px var(--accent-color);
}

/* TESTIMONIALS */
.testimonials {
  background: rgba(0, 212, 255, 0.05);
  padding: 60px 20px;
  border-top: 2px solid rgba(0, 212, 255, 0.3);
  border-bottom: 2px solid rgba(0, 212, 255, 0.3);
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.testimonial-card {
  background: var(--dark-card);
  padding: 32px;
  border-radius: var(--border-radius);
  border: 2px solid rgba(0, 212, 255, 0.2);
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 500px;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 80px;
  color: rgba(0, 212, 255, 0.2);
  font-family: Georgia, serif;
}

.testimonial-card p {
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 20px;
  text-align: left;
  position: relative;
  z-index: 1;
}

.author {
  color: var(--text-secondary);
  font-size: 14px;
  text-align: right;
  margin-top: 16px;
}

.author strong {
  color: var(--primary-color);
  display: block;
  margin-bottom: 4px;
}

/* PROCESS/STEPS */
.process {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(255, 0, 110, 0.05) 100%);
  padding: 60px 20px;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 40px;
}

.step {
  flex: 1 1 calc(25% - 32px);
  min-width: 250px;
  max-width: 300px;
  text-align: center;
  position: relative;
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  line-height: 60px;
  margin-bottom: 16px;
  box-shadow: var(--neon-glow);
}

.step h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.step p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* CTA BANNERS */
.cta-banner,
.cta-secondary {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(255, 0, 110, 0.2));
  padding: 60px 20px;
  text-align: center;
  border-radius: var(--border-radius);
  margin: 60px 0;
  border: 2px solid var(--primary-color);
  box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

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

.cta-banner p {
  font-size: 18px;
  margin-bottom: 32px;
  color: var(--text-secondary);
}

/* SERVICE DETAILS */
.services .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-detail {
  background: var(--dark-card);
  padding: 40px;
  border-radius: var(--border-radius);
  border: 2px solid rgba(0, 212, 255, 0.2);
  transition: var(--transition);
}

.service-detail:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

.service-detail h2 {
  text-align: left;
  margin-bottom: 16px;
}

.service-detail .price {
  margin: 16px 0;
}

.service-detail ul {
  margin: 24px 0;
}

/* BOARDING SPECIFIC */
.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 24px 0;
}

.benefits li {
  padding: 12px 24px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  color: var(--text-primary);
}

.benefits li::before {
  display: none;
}

.duration {
  font-size: 14px;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.schedule {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.schedule-item {
  padding: 16px 24px;
  background: var(--dark-card);
  border-left: 4px solid var(--primary-color);
  border-radius: 8px;
  color: var(--text-secondary);
  transition: var(--transition);
}

.schedule-item:hover {
  transform: translateX(10px);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.schedule-item strong {
  color: var(--accent-color);
  font-weight: 700;
}

/* CONTACT PAGE */
.quick-contact {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.quick-contact p {
  padding: 16px 32px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  margin-bottom: 0;
}

.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.method-card {
  background: var(--dark-card);
  padding: 40px;
  border-radius: var(--border-radius);
  border: 2px solid rgba(0, 212, 255, 0.2);
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 500px;
  text-align: center;
  transition: var(--transition);
}

.method-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 40px rgba(0, 212, 255, 0.3);
}

.method-card img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  filter: drop-shadow(0 0 10px var(--primary-color));
}

.response-time {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
}

.form-placeholder {
  background: var(--dark-card);
  padding: 40px;
  border-radius: var(--border-radius);
  border: 2px solid rgba(0, 212, 255, 0.2);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.privacy-notice {
  font-size: 12px;
  color: var(--text-secondary);
  margin: 24px 0;
  font-style: italic;
}

.address-info {
  text-align: center;
  margin-bottom: 32px;
}

.directions h3 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.hours-table {
  max-width: 500px;
  margin: 0 auto 24px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 16px 24px;
  background: var(--dark-card);
  margin-bottom: 8px;
  border-radius: 8px;
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.hours-row span:first-child {
  color: var(--text-primary);
  font-weight: 600;
}

.hours-row span:last-child {
  color: var(--accent-color);
}

/* CONTACT OPTIONS */
.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 32px;
  background: var(--dark-card);
  border-radius: 8px;
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.contact-item img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 5px var(--primary-color));
}

.contact-item p {
  margin: 0;
  text-align: left;
}

/* THANK YOU PAGE */
.thank-you-hero {
  padding: 80px 20px;
  text-align: center;
}

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

.checkmark {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: white;
  margin: 0 auto 32px;
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.confirmation {
  text-align: center;
  padding: 40px 20px;
  background: rgba(0, 212, 255, 0.05);
  border-radius: var(--border-radius);
  margin: 40px 0;
}

.contact-info {
  margin-top: 32px;
  padding: 24px;
  background: var(--dark-card);
  border-radius: 8px;
  border: 1px solid rgba(0, 212, 255, 0.2);
}

/* 404 PAGE */
.error-hero {
  padding: 80px 20px;
  text-align: center;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code {
  font-size: 120px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

/* LEGAL PAGES */
.legal-content {
  padding: 60px 20px;
}

.legal-content h1 {
  margin-bottom: 32px;
}

.legal-content h2 {
  text-align: left;
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 28px;
}

.legal-content p,
.legal-content li {
  text-align: left;
  max-width: 800px;
}

.legal-content ul {
  margin: 20px 0;
}

/* FOOTER */
footer {
  background: var(--dark-bg);
  border-top: 2px solid rgba(0, 212, 255, 0.3);
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

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

.footer-logo {
  width: 150px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
}

.footer-col h4 {
  color: var(--primary-color);
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-col p {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col li {
  padding-left: 0;
}

.footer-col li::before {
  display: none;
}

.footer-col a {
  color: var(--text-secondary);
  font-size: 14px;
  transition: var(--transition);
}

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

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

.footer-bottom p {
  color: var(--text-secondary);
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--dark-bg), var(--dark-card));
  border-top: 2px solid var(--primary-color);
  padding: 24px;
  z-index: 1500;
  box-shadow: 0 -5px 30px rgba(0, 212, 255, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

.cookie-text p {
  color: var(--text-secondary);
  margin-bottom: 0;
  font-size: 14px;
}

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

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

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background: var(--dark-card);
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius);
  padding: 40px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 60px rgba(0, 212, 255, 0.5);
}

.cookie-modal h2 {
  margin-bottom: 24px;
  text-align: left;
}

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

.cookie-category h3 {
  margin-bottom: 8px;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-category p {
  font-size: 14px;
  color: var(--text-secondary);
  text-align: left;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #555;
  transition: var(--transition);
  border-radius: 24px;
}

.cookie-slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: white;
  transition: var(--transition);
  border-radius: 50%;
}

input:checked + .cookie-slider {
  background: var(--primary-color);
  box-shadow: var(--neon-glow);
}

input:checked + .cookie-slider:before {
  transform: translateX(26px);
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  justify-content: flex-end;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .header-cta {
    display: none;
  }
  
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .service-card,
  .pricing-card,
  .feature,
  .value-card,
  .option-card,
  .link-card,
  .discount-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  .step {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  .error-code {
    font-size: 80px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .section {
    padding: 40px 16px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero {
    padding: 60px 16px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .service-card,
  .pricing-card,
  .method-card,
  .service-detail {
    padding: 24px;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

/* ANIMATIONS */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* UTILITY CLASSES */
.text-center {
  text-align: center;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

/* ACCESSIBILITY */
:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 4px;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-consent,
  .cookie-modal,
  .btn {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
}

/* END OF STYLESHEET */