/* ========================================
   NERIUM SIGNAL - TECH FUTURISTIC 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', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #E0E0E0;
  background: linear-gradient(135deg, #0A0E27 0%, #1A1F3A 50%, #0F1419 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* TECH FUTURISTIC CUSTOM PROPERTIES */
:root {
  --primary-neon: #00F0FF;
  --secondary-neon: #7B2FFF;
  --accent-neon: #FF006E;
  --primary-dark: #0A0E27;
  --secondary-dark: #1A1F3A;
  --accent-dark: #2D3561;
  --text-light: #E0E0E0;
  --text-white: #FFFFFF;
  --text-muted: #9CA3AF;
  --glow-cyan: 0 0 20px rgba(0, 240, 255, 0.5);
  --glow-purple: 0 0 20px rgba(123, 47, 255, 0.5);
  --glow-pink: 0 0 20px rgba(255, 0, 110, 0.5);
}

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

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-white);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

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

h2 {
  font-size: 36px;
  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, var(--primary-neon), var(--secondary-neon));
  box-shadow: var(--glow-cyan);
}

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

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

p {
  margin-bottom: 16px;
  color: var(--text-light);
  font-size: 16px;
}

a {
  color: var(--primary-neon);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

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

li {
  margin-bottom: 8px;
  color: var(--text-light);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  background: rgba(26, 31, 58, 0.5);
  border: 1px solid var(--accent-dark);
}

table th,
table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--accent-dark);
}

table th {
  background: linear-gradient(135deg, var(--secondary-dark), var(--accent-dark));
  color: var(--primary-neon);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}

table tr:hover {
  background: rgba(0, 240, 255, 0.05);
}

/* BUTTONS */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.8), 0 0 60px rgba(123, 47, 255, 0.4);
  color: var(--primary-dark);
}

.btn-primary::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-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-secondary {
  background: transparent;
  color: var(--primary-neon);
  border: 2px solid var(--primary-neon);
  box-shadow: inset 0 0 20px rgba(0, 240, 255, 0.1);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(123, 47, 255, 0.2));
  box-shadow: var(--glow-cyan);
  transform: translateY(-3px);
  color: var(--text-white);
}

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, var(--secondary-dark), var(--accent-dark));
  color: var(--primary-neon);
  border: 2px solid var(--primary-neon);
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: var(--glow-cyan);
  transition: all 0.3s ease;
}

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

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, var(--primary-dark), var(--secondary-dark));
  z-index: 1000;
  transition: right 0.4s ease;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  border-left: 2px solid var(--primary-neon);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid var(--accent-neon);
  color: var(--accent-neon);
  font-size: 32px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  transform: rotate(90deg);
  box-shadow: var(--glow-pink);
  background: rgba(255, 0, 110, 0.1);
}

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

.mobile-nav a {
  display: block;
  padding: 18px 20px;
  color: var(--text-white);
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 240, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.mobile-nav a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-neon), var(--secondary-neon));
  transition: width 0.3s ease;
}

.mobile-nav a:hover::before,
.mobile-nav a:active::before {
  width: 100%;
}

.mobile-nav a:hover {
  background: rgba(0, 240, 255, 0.1);
  padding-left: 30px;
  color: var(--primary-neon);
  text-shadow: var(--glow-cyan);
}

/* HEADER */
header {
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(26, 31, 58, 0.95));
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 240, 255, 0.1);
  border-bottom: 1px solid var(--primary-neon);
  backdrop-filter: blur(10px);
}

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

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

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

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

.main-nav a {
  color: var(--text-light);
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  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, var(--primary-neon), var(--secondary-neon));
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: var(--primary-neon);
  text-shadow: var(--glow-cyan);
}

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

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

/* HERO SECTION */
.hero {
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.9), rgba(26, 31, 58, 0.9));
  border-bottom: 2px solid var(--primary-neon);
}

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

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon), var(--accent-neon));
  -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, 240, 255, 0.5)); }
  to { filter: drop-shadow(0 0 30px rgba(123, 47, 255, 0.8)); }
}

.hero-subheadline {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

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

.trust-badges span {
  padding: 10px 20px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid var(--primary-neon);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-neon);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: inset 0 0 20px rgba(0, 240, 255, 0.1);
}

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

.benefits,
.services-overview,
.process,
.testimonials,
.service-area,
.cta-section,
.services-detailed,
.service-features,
.guarantees,
.pricing-intro,
.pricing-tables,
.pricing-extras,
.payment-methods,
.company-story,
.achievements,
.values,
.certifications,
.portfolio-intro,
.portfolio-grid,
.case-study,
.contact-methods,
.contact-form-section,
.office-info,
.legal-content,
.thank-you-hero,
.next-steps,
.contact-confirmation,
.urgent-contact,
.while-you-wait,
.back-navigation {
  padding: 60px 20px;
  position: relative;
}

.benefits {
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.5), rgba(45, 53, 97, 0.3));
  border-top: 1px solid var(--primary-neon);
  border-bottom: 1px solid var(--primary-neon);
}

.benefits h2,
.services-overview h2,
.process h2,
.testimonials h2 {
  text-align: center;
  margin-bottom: 50px;
}

/* FLEXBOX GRIDS */
.benefits-grid,
.services-grid,
.features-grid,
.values-grid,
.projects-grid,
.contact-grid,
.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.benefit-card,
.service-card,
.feature,
.value-item,
.project-card,
.contact-method,
.link-card {
  flex: 1 1 280px;
  max-width: 350px;
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.8), rgba(45, 53, 97, 0.6));
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--accent-dark);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before,
.service-card::before,
.project-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
  border-radius: 12px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.benefit-card:hover,
.service-card:hover,
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(0, 240, 255, 0.3), 0 0 60px rgba(123, 47, 255, 0.2);
}

.benefit-card:hover::before,
.service-card:hover::before,
.project-card:hover::before {
  opacity: 0.5;
}

.benefit-card img,
.service-card img,
.contact-method img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.5));
}

.service-card .price,
.price-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
  color: var(--primary-dark);
  font-weight: 700;
  border-radius: 20px;
  font-size: 18px;
  box-shadow: var(--glow-cyan);
}

/* PROCESS STEPS */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 40px;
}

.step {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
  color: var(--primary-dark);
  font-size: 28px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 16px;
  box-shadow: var(--glow-cyan);
}

.step h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--primary-neon);
}

/* TESTIMONIALS */
.testimonials {
  background: rgba(26, 31, 58, 0.3);
  border-top: 1px solid var(--secondary-neon);
  border-bottom: 1px solid var(--secondary-neon);
}

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

.testimonial-card {
  flex: 1 1 400px;
  max-width: 500px;
  background: rgba(45, 53, 97, 0.5);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--accent-dark);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 240, 255, 0.2);
  border-color: var(--primary-neon);
}

.rating {
  color: var(--accent-neon);
  font-size: 24px;
  margin-bottom: 16px;
  text-shadow: var(--glow-pink);
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--accent-dark);
}

.author strong {
  color: var(--primary-neon);
  font-size: 16px;
}

.author span {
  color: var(--text-muted);
  font-size: 14px;
}

.testimonial-summary,
.rating-summary {
  text-align: center;
  margin-top: 32px;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-neon);
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(123, 47, 255, 0.1));
  padding: 80px 20px;
  text-align: center;
  border-top: 2px solid var(--primary-neon);
  border-bottom: 2px solid var(--secondary-neon);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(0, 240, 255, 0.1), transparent);
  animation: pulse 3s ease-in-out infinite;
}

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

.cta-section h2 {
  font-size: 40px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-buttons,
.hero-cta,
.nav-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

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

.availability,
.guarantee-note {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-muted);
}

/* PAGE HERO */
.page-hero {
  padding: 60px 20px 40px;
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.8), rgba(45, 53, 97, 0.6));
  border-bottom: 1px solid var(--primary-neon);
}

.breadcrumbs {
  font-size: 14px;
  margin-bottom: 20px;
  color: var(--text-muted);
}

.breadcrumbs a {
  color: var(--primary-neon);
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: var(--secondary-neon);
}

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

.page-hero p {
  font-size: 18px;
  color: var(--text-light);
}

/* PRICING TABLES */
.pricing-category {
  margin-bottom: 48px;
  background: rgba(26, 31, 58, 0.5);
  padding: 32px;
  border-radius: 12px;
  border: 1px solid var(--accent-dark);
}

.pricing-category h2 {
  margin-bottom: 24px;
  color: var(--primary-neon);
  text-align: center;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: rgba(45, 53, 97, 0.4);
  border-radius: 8px;
  border: 1px solid var(--accent-dark);
  transition: all 0.3s ease;
}

.price-item:hover {
  background: rgba(0, 240, 255, 0.1);
  border-color: var(--primary-neon);
  transform: translateX(5px);
}

.price-item .price {
  color: var(--primary-neon);
  font-weight: 700;
  font-size: 18px;
}

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

.stat-item {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(123, 47, 255, 0.1));
  border-radius: 12px;
  border: 1px solid var(--primary-neon);
  box-shadow: inset 0 0 30px rgba(0, 240, 255, 0.1);
}

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-neon);
  margin-bottom: 8px;
  text-shadow: var(--glow-cyan);
}

.stat-label {
  display: block;
  font-size: 16px;
  color: var(--text-light);
}

/* LEGAL CONTENT */
.legal-section {
  margin-bottom: 40px;
  padding: 32px;
  background: rgba(26, 31, 58, 0.5);
  border-radius: 12px;
  border-left: 4px solid var(--primary-neon);
}

.legal-section h2 {
  color: var(--primary-neon);
  margin-bottom: 20px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(26, 31, 58, 0.8), rgba(45, 53, 97, 0.6));
}

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
  color: var(--primary-dark);
  font-size: 60px;
  border-radius: 50%;
  margin-bottom: 32px;
  box-shadow: var(--glow-cyan);
  animation: scaleIn 0.5s ease;
}

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

.confirmation-message {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* FORM PLACEHOLDER */
.form-placeholder {
  background: rgba(26, 31, 58, 0.5);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid var(--accent-dark);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.form-note {
  margin: 24px 0;
  padding: 16px;
  background: rgba(0, 240, 255, 0.1);
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-muted);
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
  padding: 60px 20px 20px;
  border-top: 2px solid var(--primary-neon);
  margin-top: 60px;
}

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

.footer-column {
  flex: 1 1 200px;
  max-width: 300px;
}

.footer-column h4 {
  color: var(--primary-neon);
  margin-bottom: 16px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-column nav a {
  color: var(--text-light);
  font-size: 15px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

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

.footer-column p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 8px;
}

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

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--accent-dark);
  text-align: center;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer-legal a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--primary-neon);
}

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

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--secondary-dark), var(--accent-dark));
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 240, 255, 0.2);
  border-top: 2px solid var(--primary-neon);
  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: 20px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 400px;
  color: var(--text-light);
  font-size: 15px;
}

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

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-accept {
  background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
  color: var(--primary-dark);
  border: 2px solid var(--primary-neon);
}

.cookie-accept:hover {
  box-shadow: var(--glow-cyan);
  transform: translateY(-2px);
}

.cookie-reject {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-muted);
}

.cookie-reject:hover {
  border-color: var(--accent-neon);
  color: var(--accent-neon);
}

.cookie-settings {
  background: transparent;
  color: var(--primary-neon);
  border: 2px solid var(--primary-neon);
}

.cookie-settings:hover {
  background: rgba(0, 240, 255, 0.1);
  box-shadow: inset 0 0 20px rgba(0, 240, 255, 0.2);
}

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

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

.modal-content {
  background: linear-gradient(135deg, var(--secondary-dark), var(--accent-dark));
  padding: 40px;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  border: 2px solid var(--primary-neon);
  box-shadow: 0 0 60px rgba(0, 240, 255, 0.3);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.modal-header h3 {
  color: var(--primary-neon);
  font-size: 24px;
}

.modal-close {
  background: transparent;
  border: 2px solid var(--accent-neon);
  color: var(--accent-neon);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  transition: all 0.3s ease;
}

.modal-close:hover {
  transform: rotate(90deg);
  box-shadow: var(--glow-pink);
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(10, 14, 39, 0.5);
  border-radius: 8px;
  border: 1px solid var(--accent-dark);
}

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

.category-header h4 {
  color: var(--text-white);
  font-size: 16px;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
}

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

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--accent-dark);
  border: 2px solid var(--text-muted);
  border-radius: 26px;
  transition: all 0.3s ease;
}

.slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background: var(--text-light);
  border-radius: 50%;
  transition: all 0.3s ease;
}

input:checked + .slider {
  background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
  border-color: var(--primary-neon);
}

input:checked + .slider:before {
  transform: translateX(24px);
  background: var(--primary-dark);
}

.category-description {
  color: var(--text-muted);
  font-size: 14px;
}

.modal-footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
}

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

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

  .header-cta {
    width: 100%;
    justify-content: center;
  }

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

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

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

  .hero-subheadline {
    font-size: 16px;
  }

  /* Stack flex items */
  .hero-cta,
  .cta-buttons,
  .nav-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta a,
  .cta-buttons a,
  .nav-buttons a {
    width: 100%;
    max-width: 300px;
  }

  .trust-badges {
    flex-direction: column;
  }

  /* Grid adjustments */
  .benefits-grid,
  .services-grid,
  .features-grid,
  .process-steps,
  .testimonials-grid,
  .stats-grid,
  .projects-grid,
  .contact-grid,
  .links-grid {
    gap: 20px;
  }

  .benefit-card,
  .service-card,
  .feature,
  .value-item,
  .step,
  .testimonial-card,
  .stat-item,
  .project-card,
  .contact-method,
  .link-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  /* Footer adjustments */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  .footer-column {
    max-width: 100%;
  }

  .footer-legal {
    flex-direction: column;
    gap: 12px;
  }

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

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }

  /* Modal adjustments */
  .modal-content {
    padding: 24px;
  }

  .modal-footer {
    flex-direction: column;
  }

  .modal-footer .cookie-btn {
    width: 100%;
  }

  /* Section padding */
  .section,
  .benefits,
  .services-overview,
  .process,
  .testimonials,
  .cta-section,
  .page-hero,
  .thank-you-hero {
    padding: 40px 20px;
  }

  .hero {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

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

  .hero-subheadline {
    font-size: 14px;
  }

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

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .stat-number {
    font-size: 36px;
  }

  .success-icon {
    width: 80px;
    height: 80px;
    font-size: 48px;
  }
}

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

.highlight {
  color: var(--primary-neon);
  font-weight: 600;
}

.intro-text {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 32px;
  color: var(--text-light);
}

.highlight-banner {
  background: linear-gradient(135deg, var(--primary-neon), var(--secondary-neon));
  color: var(--primary-dark);
  padding: 16px 32px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin: 32px auto;
  display: inline-block;
  box-shadow: var(--glow-cyan);
}

.last-updated {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 8px;
}

.text-section {
  max-width: 800px;
  margin: 0 auto;
}

.extras-grid,
.guarantees-list,
.cert-list,
.payment-list,
.steps-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 24px;
}

.extra-item,
.guarantee-item,
.cert-item,
.payment-item {
  flex: 1 1 200px;
  max-width: 280px;
  padding: 16px 20px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid var(--primary-neon);
  border-radius: 8px;
  text-align: center;
  font-size: 15px;
  transition: all 0.3s ease;
}

.extra-item:hover,
.guarantee-item:hover,
.cert-item:hover,
.payment-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--glow-cyan);
  background: rgba(0, 240, 255, 0.15);
}

.stats-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.stats-inline span {
  color: var(--primary-neon);
  font-weight: 600;
  font-size: 15px;
}

.phone-large {
  font-size: 32px;
  font-weight: 700;
  margin: 16px 0;
}

.phone-large a {
  color: var(--primary-neon);
  text-shadow: var(--glow-cyan);
}

.email-display {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-neon);
  margin: 16px 0;
}

.spam-notice {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
}

.timeline-note {
  text-align: center;
  margin-top: 32px;
  font-size: 16px;
  color: var(--primary-neon);
  font-weight: 600;
}

.response-time {
  text-align: center;
  margin-top: 24px;
  font-size: 16px;
  color: var(--text-muted);
}

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

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

/* ACCESSIBILITY */
a:focus,
button:focus,
input:focus {
  outline: 2px solid var(--primary-neon);
  outline-offset: 2px;
}

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

  body {
    background: white;
    color: black;
  }

  a {
    color: black;
    text-decoration: underline;
  }
}

/* SMOOTH SCROLLING */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}