/* ============================================
   ARCANE POND - TECH FUTURISTIC DESIGN SYSTEM
   Futuristic tech-inspired garden design
   ============================================ */

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style-position: inside;
}

/* ============================================
   TECH FUTURISTIC COLOR SYSTEM
   ============================================ */

:root {
  /* Futuristic Gradient Colors */
  --primary-dark: #0f3460;
  --primary-mid: #16213e;
  --primary-light: #1a1a2e;
  --neon-cyan: #00d9ff;
  --neon-purple: #b537f2;
  --neon-green: #39ff14;
  --accent-gold: #ffd700;
  --accent-orange: #ff6b35;
  
  /* Text Colors */
  --text-light: #ffffff;
  --text-primary: #e0e0e0;
  --text-secondary: #a0a0a0;
  --text-muted: #707070;
  
  /* Background Colors */
  --bg-dark: #0a0a0a;
  --bg-card: rgba(26, 26, 46, 0.8);
  --bg-card-hover: rgba(15, 52, 96, 0.9);
  
  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-xxl: 64px;
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

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

/* ============================================
   TYPOGRAPHY - FUTURISTIC STYLE
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text-light);
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

h1 {
  font-size: 48px;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #00d9ff, #b537f2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 32px;
  letter-spacing: 1.5px;
  color: var(--neon-cyan);
}

h3 {
  font-size: 24px;
  letter-spacing: 1px;
  color: var(--text-light);
}

h4 {
  font-size: 18px;
  color: var(--text-primary);
}

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

/* ============================================
   MOBILE MENU TOGGLE BUTTON
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  border: 2px solid var(--neon-cyan);
  color: var(--text-light);
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
}

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

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, var(--primary-mid) 0%, var(--primary-dark) 100%);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 30px rgba(0, 217, 255, 0.3);
  border-left: 2px solid var(--neon-cyan);
}

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

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

.mobile-menu-close:hover {
  background: var(--neon-cyan);
  color: var(--primary-dark);
  transform: rotate(90deg);
}

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

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

.mobile-nav a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--neon-cyan);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

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

.mobile-nav a:hover::before {
  transform: translateX(0);
}

/* ============================================
   HEADER - FUTURISTIC DESIGN
   ============================================ */

header {
  background: linear-gradient(180deg, rgba(26, 26, 46, 0.95) 0%, rgba(15, 52, 96, 0.8) 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 2px solid var(--neon-cyan);
  box-shadow: 0 4px 30px rgba(0, 217, 255, 0.3);
  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, 217, 255, 0.6));
  transition: all 0.3s ease;
}

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

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

.main-nav a {
  color: var(--text-light);
  font-weight: 600;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 6px;
  position: relative;
  transition: all 0.3s ease;
}

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

.main-nav a:hover {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.8);
}

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

/* ============================================
   HERO SECTION - FUTURISTIC GRADIENT
   ============================================ */

.hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-mid) 50%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

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

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5), 0 0 20px rgba(181, 55, 242, 0.3);
  }
  to {
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.8), 0 0 30px rgba(181, 55, 242, 0.6);
  }
}

.hero-subheadline {
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.8;
}

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

/* ============================================
   BUTTONS - FUTURISTIC NEON STYLE
   ============================================ */

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

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

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

.btn-primary {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  color: var(--text-light);
  border: 2px solid var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.4);
}

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

.btn-secondary {
  background: transparent;
  color: var(--neon-cyan);
  border: 2px solid var(--neon-cyan);
}

.btn-secondary:hover {
  background: var(--neon-cyan);
  color: var(--primary-dark);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
  transform: translateY(-2px);
}

/* ============================================
   SECTIONS - CONSISTENT SPACING
   ============================================ */

.section,
.intro,
.services-overview,
.benefits,
.testimonials,
.cta-banner,
.story,
.philosophy,
.values,
.portfolio-intro,
.projects,
.blog-intro,
.featured-article,
.blog-grid,
.expert-tips,
.contact-intro,
.contact-methods,
.contact-form-section,
.office-info,
.legal-content,
.thank-you-content,
.next-steps,
.social-proof,
.services-intro,
.service-details {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.content-wrapper,
.content-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats {
  display: flex;
  justify-content: space-around;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px;
  background: var(--bg-card);
  border-radius: 12px;
  border: 2px solid var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
  transition: all 0.3s ease;
  flex: 1;
  min-width: 150px;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   CARDS & GRIDS - FLEXBOX LAYOUTS
   ============================================ */

.services-grid,
.benefits-grid,
.philosophy-grid,
.values-grid,
.articles-grid,
.tips-grid,
.methods-grid,
.suggestions-grid,
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.service-card,
.benefit-item,
.philosophy-card,
.value-card,
.article-card,
.tip-card,
.method-card,
.suggestion-card,
.step-card,
.project-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: var(--bg-card);
  padding: 32px;
  border-radius: 12px;
  border: 2px solid rgba(0, 217, 255, 0.3);
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  margin-bottom: 20px;
}

.service-card::before,
.benefit-item::before,
.philosophy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
  border-radius: 12px 12px 0 0;
}

.service-card:hover,
.benefit-item:hover,
.philosophy-card:hover,
.value-card:hover,
.article-card:hover,
.tip-card:hover,
.method-card:hover,
.suggestion-card:hover,
.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 217, 255, 0.3);
  border-color: var(--neon-cyan);
  background: var(--bg-card-hover);
}

.service-card h3,
.benefit-item h3,
.philosophy-card h3,
.value-card h3,
.article-card h3,
.tip-card h3,
.method-card h3,
.project-card h3 {
  color: var(--neon-cyan);
  margin-bottom: 12px;
  font-size: 20px;
}

.service-card p,
.benefit-item p,
.philosophy-card p,
.value-card p,
.article-card p,
.tip-card p,
.method-card p,
.project-card p {
  color: var(--text-secondary);
  line-height: 1.8;
  flex-grow: 1;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-top: 16px;
  display: inline-block;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* ============================================
   TESTIMONIALS - READABLE DESIGN
   ============================================ */

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

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: rgba(255, 255, 255, 0.95);
  padding: 32px;
  border-radius: 12px;
  border: 2px solid var(--neon-cyan);
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.2);
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 80px;
  color: var(--neon-cyan);
  opacity: 0.3;
  font-family: Georgia, serif;
}

.testimonial-card p {
  color: #1a1a2e;
  font-size: 16px;
  line-height: 1.8;
  font-style: italic;
}

.testimonial-card .author {
  color: #0f3460;
  font-weight: 700;
  font-size: 14px;
  text-align: right;
  font-style: normal;
  margin-top: 12px;
}

/* ============================================
   CTA BANNER - FUTURISTIC GRADIENT
   ============================================ */

.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-mid) 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 16px;
  border: 2px solid var(--neon-cyan);
  box-shadow: 0 0 40px rgba(0, 217, 255, 0.3);
  position: relative;
  overflow: hidden;
  margin: 60px 20px;
}

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

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

.cta-banner h2 {
  margin-bottom: 16px;
  color: var(--neon-cyan);
  position: relative;
  z-index: 1;
}

.cta-banner p {
  margin-bottom: 24px;
  font-size: 18px;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
}

.contact-info,
.contact-details {
  margin-top: 24px;
  color: var(--text-secondary);
  font-size: 14px;
}

/* ============================================
   TEXT-IMAGE SECTIONS
   ============================================ */

.text-columns {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.column {
  flex: 1;
  min-width: 280px;
}

/* ============================================
   PAGE HERO
   ============================================ */

.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-mid) 100%);
  padding: 80px 20px 60px;
  text-align: center;
  margin-bottom: 60px;
  border-bottom: 2px solid var(--neon-cyan);
  box-shadow: 0 4px 30px rgba(0, 217, 255, 0.3);
}

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

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

/* ============================================
   SERVICE DETAILS
   ============================================ */

.service-detail {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 12px;
  border: 2px solid rgba(0, 217, 255, 0.3);
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.1);
}

.service-detail h2 {
  color: var(--neon-cyan);
  margin-bottom: 12px;
}

.service-tagline {
  font-size: 18px;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 16px;
}

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

.service-detail li {
  margin-bottom: 12px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.duration,
.certification {
  display: inline-block;
  background: rgba(0, 217, 255, 0.1);
  padding: 8px 16px;
  border-radius: 6px;
  color: var(--neon-cyan);
  font-size: 14px;
  margin-top: 16px;
  border: 1px solid var(--neon-cyan);
}

/* ============================================
   BADGES & HIGHLIGHTS
   ============================================ */

.badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  color: var(--text-light);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.highlight-box {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(181, 55, 242, 0.2));
  border: 2px solid var(--neon-cyan);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--neon-cyan);
  margin-top: 24px;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

/* ============================================
   META INFORMATION
   ============================================ */

.meta {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 12px;
}

.location {
  font-size: 14px;
  color: var(--neon-cyan);
  font-weight: 600;
  margin-bottom: 12px;
}

.challenge,
.solution {
  margin-top: 16px;
  padding: 16px;
  background: rgba(0, 217, 255, 0.05);
  border-left: 4px solid var(--neon-cyan);
  border-radius: 4px;
}

/* ============================================
   FORMS PLACEHOLDER
   ============================================ */

.form-placeholder {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 12px;
  border: 2px dashed var(--neon-cyan);
  text-align: center;
  margin-top: 32px;
}

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

.form-placeholder .note {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}

/* ============================================
   THANK YOU PAGE
   ============================================ */

.thank-you-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-mid) 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: var(--text-light);
  box-shadow: 0 0 30px rgba(57, 255, 20, 0.6);
  animation: successPulse 2s ease-in-out infinite;
}

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

.response-time,
.confirmation-note {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 16px;
  font-style: italic;
}

.testimonial-highlight {
  background: rgba(255, 255, 255, 0.95);
  padding: 32px;
  border-radius: 12px;
  border: 2px solid var(--neon-cyan);
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.2);
}

.testimonial-highlight p {
  color: #1a1a2e;
  font-size: 18px;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-highlight .author {
  color: #0f3460;
  font-weight: 700;
  text-align: right;
}

.rating,
.customer-count {
  text-align: center;
  font-size: 16px;
  color: var(--accent-gold);
  font-weight: 600;
  margin: 12px 0;
}

/* ============================================
   FOOTER - FUTURISTIC DESIGN
   ============================================ */

footer {
  background: linear-gradient(180deg, var(--primary-mid) 0%, var(--bg-dark) 100%);
  padding: 60px 20px 20px;
  margin-top: 80px;
  border-top: 2px solid var(--neon-cyan);
  box-shadow: 0 -4px 30px rgba(0, 217, 255, 0.2);
}

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

.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer-section h3,
.footer-section h4 {
  color: var(--neon-cyan);
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-section p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
}

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

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

.footer-nav a:hover {
  color: var(--neon-cyan);
  padding-left: 8px;
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.6);
}

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

.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(180deg, var(--primary-mid) 0%, var(--primary-dark) 100%);
  padding: 24px;
  box-shadow: 0 -4px 30px rgba(0, 217, 255, 0.3);
  border-top: 2px solid var(--neon-cyan);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1;
  min-width: 250px;
  color: var(--text-primary);
  font-size: 14px;
  line-height: 1.6;
}

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

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

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
  color: var(--text-light);
  border-color: var(--neon-cyan);
}

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

.cookie-btn-reject,
.cookie-btn-settings {
  background: transparent;
  color: var(--text-primary);
  border-color: rgba(0, 217, 255, 0.5);
}

.cookie-btn-reject:hover,
.cookie-btn-settings:hover {
  background: rgba(0, 217, 255, 0.1);
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
}

/* ============================================
   COOKIE MODAL
   ============================================ */

#cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: linear-gradient(180deg, var(--primary-mid) 0%, var(--primary-dark) 100%);
  padding: 40px;
  border-radius: 12px;
  border: 2px solid var(--neon-cyan);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 0 50px rgba(0, 217, 255, 0.5);
}

.cookie-modal-content h2 {
  color: var(--neon-cyan);
  margin-bottom: 24px;
}

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

.cookie-category h3 {
  color: var(--text-light);
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: var(--neon-cyan);
}

.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-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

/* ============================================
   LEGAL CONTENT
   ============================================ */

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--neon-cyan);
}

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

.legal-content p {
  margin-bottom: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
}

.legal-content ul,
.legal-content ol {
  margin: 16px 0;
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 8px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.last-updated {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 32px;
}

.contact-note {
  background: rgba(0, 217, 255, 0.1);
  padding: 16px;
  border-left: 4px solid var(--neon-cyan);
  border-radius: 4px;
  margin-top: 24px;
}

/* ============================================
   FEATURED ARTICLE
   ============================================ */

.article-featured {
  background: var(--bg-card);
  padding: 40px;
  border-radius: 12px;
  border: 2px solid var(--neon-cyan);
  box-shadow: 0 4px 30px rgba(0, 217, 255, 0.2);
  position: relative;
}

.article-featured h2 {
  color: var(--neon-cyan);
  margin-bottom: 16px;
}

/* ============================================
   SECTION SUBHEADLINES
   ============================================ */

.section-subheadline {
  text-align: center;
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  /* Button adjustments */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  /* Card layouts */
  .services-grid,
  .benefits-grid,
  .philosophy-grid,
  .values-grid,
  .articles-grid,
  .tips-grid,
  .methods-grid,
  .suggestions-grid {
    flex-direction: column;
  }
  
  .service-card,
  .benefit-item,
  .philosophy-card,
  .value-card,
  .article-card,
  .tip-card,
  .method-card,
  .suggestion-card,
  .project-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Stats */
  .stats {
    flex-direction: column;
  }
  
  .stat-item {
    width: 100%;
  }
  
  /* Text columns */
  .text-columns {
    flex-direction: column;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    width: 100%;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Testimonials */
  .testimonials-grid {
    flex-direction: column;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  /* Service details */
  .service-detail {
    padding: 24px;
  }
  
  /* Steps grid */
  .steps-grid {
    flex-direction: column;
  }
  
  .step-card {
    flex: 1 1 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  .service-card,
  .benefit-item,
  .philosophy-card,
  .value-card,
  .article-card,
  .tip-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .testimonial-card {
    flex: 1 1 calc(50% - 24px);
  }
}

/* ============================================
   ACCESSIBILITY & FOCUS STATES
   ============================================ */

a:focus,
button:focus,
.btn:focus {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 2px;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
  text-align: center;
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

@media (prefers-reduced-motion: no-preference) {
  .service-card,
  .benefit-item,
  .philosophy-card,
  .testimonial-card,
  .project-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
  }
  
  .service-card:nth-child(1) { animation-delay: 0.1s; }
  .service-card:nth-child(2) { animation-delay: 0.2s; }
  .service-card:nth-child(3) { animation-delay: 0.3s; }
  .service-card:nth-child(4) { animation-delay: 0.4s; }
  .service-card:nth-child(5) { animation-delay: 0.5s; }
  .service-card:nth-child(6) { animation-delay: 0.6s; }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  a {
    color: black;
    text-decoration: underline;
  }
}

/* ============================================
   END OF STYLESHEET
   ============================================ */