/* 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.7;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

/* VIBRANT ENERGETIC DESIGN SYSTEM */
:root {
  --electric-blue: #00d4ff;
  --neon-pink: #ff006e;
  --cyber-purple: #8338ec;
  --laser-green: #00ff88;
  --hot-orange: #ff6b00;
  --deep-black: #0a0a0a;
  --bright-white: #ffffff;
  --energy-gradient: linear-gradient(135deg, #00d4ff 0%, #ff006e 50%, #8338ec 100%);
  --glow-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
  --pulse-animation: pulse 2s ease-in-out infinite;
}

/* Typography - Bold & Dynamic */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  line-height: 1.2;
  color: var(--deep-black);
  letter-spacing: -0.02em;
}

h1 {
  font-size: 56px;
  margin-bottom: 24px;
  background: var(--energy-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: var(--pulse-animation);
}

h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: var(--cyber-purple);
}

h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--neon-pink);
}

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

p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #2a2a2a;
}

a {
  color: var(--electric-blue);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
}

a:hover {
  color: var(--neon-pink);
  transform: translateY(-2px);
}

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

/* Header */
header {
  background: var(--deep-black);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
  border-bottom: 3px solid var(--electric-blue);
}

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

.logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 0 10px var(--electric-blue));
  transition: all 0.3s ease;
}

.logo img:hover {
  filter: drop-shadow(0 0 20px var(--neon-pink));
  transform: scale(1.05);
}

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

.main-nav a {
  color: var(--bright-white);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--energy-gradient);
  transition: width 0.3s ease;
}

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

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

/* Buttons - High Energy */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 3px solid transparent;
  text-align: center;
  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: 400px;
  height: 400px;
}

.btn-primary {
  background: var(--energy-gradient);
  color: var(--bright-white);
  box-shadow: 0 6px 30px rgba(0, 212, 255, 0.4);
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(255, 0, 110, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--bright-white);
  border: 3px solid var(--electric-blue);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.btn-secondary:hover {
  background: var(--electric-blue);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
}

.btn-text {
  background: none;
  color: var(--electric-blue);
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 700;
}

.btn-text:hover {
  color: var(--neon-pink);
  transform: translateX(8px);
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: var(--energy-gradient);
  color: var(--bright-white);
  border: none;
  padding: 16px 20px;
  font-size: 28px;
  cursor: pointer;
  border-radius: 12px;
  box-shadow: var(--glow-shadow);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--deep-black);
  z-index: 1999;
  padding: 80px 40px 40px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  border-left: 4px solid var(--electric-blue);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--neon-pink);
  color: var(--bright-white);
  border: none;
  padding: 12px 18px;
  font-size: 28px;
  cursor: pointer;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: var(--hot-orange);
}

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

.mobile-nav a {
  color: var(--bright-white);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 16px 20px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  border-left-color: var(--electric-blue);
  background: rgba(0, 212, 255, 0.1);
  transform: translateX(10px);
}

/* Hero Section - Maximum Energy */
.hero {
  background: var(--deep-black);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--energy-gradient);
  opacity: 0.15;
  animation: gradient-shift 8s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% { transform: translateX(0) translateY(0); }
  25% { transform: translateX(5%) translateY(5%); }
  50% { transform: translateX(-5%) translateY(-5%); }
  75% { transform: translateX(5%) translateY(-5%); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero h1 {
  font-size: 72px;
  margin-bottom: 32px;
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.hero-subtitle {
  font-size: 24px;
  color: var(--bright-white);
  margin-bottom: 40px;
  font-weight: 300;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

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

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 2px solid var(--electric-blue);
  transition: all 0.3s ease;
}

.badge:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
}

.badge img {
  width: 50px;
  height: 50px;
  filter: drop-shadow(0 0 10px var(--electric-blue));
}

.badge span {
  color: var(--bright-white);
  font-weight: 700;
  font-size: 16px;
  text-align: center;
}

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

.section-subtitle {
  font-size: 20px;
  color: #555;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 400;
}

/* Values Section */
.values {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
}

.values h2 {
  text-align: center;
  margin-bottom: 16px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 60px;
}

.value-card {
  flex: 1 1 300px;
  background: var(--bright-white);
  padding: 40px 32px;
  border-radius: 20px;
  border: 3px solid var(--electric-blue);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--energy-gradient);
  opacity: 0;
  transition: all 0.4s ease;
}

.value-card:hover::before {
  left: 0;
  opacity: 0.1;
}

.value-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 50px rgba(255, 0, 110, 0.3);
  border-color: var(--neon-pink);
}

.value-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 15px var(--electric-blue));
  transition: all 0.3s ease;
}

.value-card:hover img {
  transform: scale(1.2) rotate(10deg);
  filter: drop-shadow(0 0 25px var(--neon-pink));
}

.value-card h3 {
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.value-card p {
  color: #444;
  position: relative;
  z-index: 1;
}

/* Services Section */
.services {
  background: var(--deep-black);
  color: var(--bright-white);
}

.services h2 {
  text-align: center;
  color: var(--bright-white);
  background: var(--energy-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 60px;
}

.service-card {
  flex: 1 1 340px;
  background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
  padding: 40px 32px;
  border-radius: 20px;
  border: 3px solid var(--electric-blue);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
  transition: all 0.4s ease;
  position: relative;
  margin-bottom: 24px;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 0 50px rgba(131, 56, 236, 0.5);
  border-color: var(--cyber-purple);
}

.service-card img {
  width: 70px;
  height: 70px;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 15px var(--laser-green));
}

.service-card h3 {
  color: var(--bright-white);
  margin-bottom: 16px;
}

.service-card p {
  color: #ccc;
  margin-bottom: 20px;
}

.service-card .price {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--laser-green);
  margin-bottom: 24px;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* Process Section */
.process {
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.process h2 {
  text-align: center;
  margin-bottom: 16px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 60px;
}

.step {
  flex: 1 1 250px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  margin-bottom: 24px;
}

.step-number {
  display: block;
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--energy-gradient);
  color: var(--bright-white);
  font-size: 32px;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
  transition: all 0.3s ease;
}

.step:hover .step-number {
  transform: scale(1.2) rotate(360deg);
  box-shadow: 0 0 50px rgba(255, 0, 110, 0.6);
}

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

.step p {
  color: #555;
}

/* Stats Section */
.stats {
  background: var(--deep-black);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--energy-gradient);
  opacity: 0.1;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-around;
  position: relative;
  z-index: 1;
}

.stat {
  flex: 1 1 200px;
  text-align: center;
  padding: 32px 24px;
  margin-bottom: 24px;
}

.stat-number {
  display: block;
  font-size: 64px;
  font-weight: 900;
  background: var(--energy-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.stat-label {
  display: block;
  color: var(--bright-white);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Testimonials Section */
.testimonials {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  padding: 80px 20px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 16px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 60px;
}

.testimonial-card {
  flex: 1 1 450px;
  background: var(--bright-white);
  padding: 40px;
  border-radius: 20px;
  border: 3px solid var(--neon-pink);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(255, 0, 110, 0.3);
}

.testimonial-card .quote {
  font-size: 20px;
  font-style: italic;
  color: #1a1a1a;
  margin-bottom: 24px;
  line-height: 1.6;
  position: relative;
  padding-left: 30px;
}

.testimonial-card .quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 60px;
  color: var(--electric-blue);
  font-family: Georgia, serif;
}

.testimonial-card .author {
  font-weight: 800;
  color: var(--neon-pink);
  font-size: 18px;
  margin-bottom: 4px;
}

.testimonial-card .location {
  color: #666;
  font-size: 16px;
}

/* CTA Banner */
.cta-banner {
  background: var(--energy-gradient);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="40" stroke="rgba(255,255,255,0.1)" stroke-width="2" fill="none"/></svg>');
  opacity: 0.3;
  animation: pattern-move 20s linear infinite;
}

@keyframes pattern-move {
  from { transform: translateX(0) translateY(0); }
  to { transform: translateX(100px) translateY(100px); }
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  color: var(--bright-white);
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-banner p {
  color: var(--bright-white);
  font-size: 22px;
  margin-bottom: 40px;
  font-weight: 300;
}

.cta-buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-banner .btn-primary {
  background: var(--bright-white);
  color: var(--cyber-purple);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.cta-banner .btn-primary:hover {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.trust-note {
  margin-top: 24px;
  font-size: 16px;
  color: var(--bright-white);
  font-style: italic;
}

/* Location Section */
.location {
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
  padding: 80px 20px;
}

.location h2 {
  text-align: center;
  margin-bottom: 40px;
}

.location-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.location-info {
  flex: 1 1 400px;
  text-align: center;
}

.location-info .address {
  font-size: 24px;
  font-weight: 700;
  color: var(--electric-blue);
  margin-bottom: 16px;
}

.location-info .hours {
  font-size: 18px;
  color: #555;
  margin-top: 24px;
  margin-bottom: 24px;
  font-weight: 600;
}

/* Page Hero */
.page-hero {
  background: var(--energy-gradient);
  padding: 80px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  color: var(--bright-white);
  font-size: 14px;
  margin-bottom: 24px;
  font-weight: 600;
}

.breadcrumb a {
  color: var(--bright-white);
  text-decoration: underline;
}

.page-hero h1 {
  color: var(--bright-white);
  font-size: 56px;
  margin-bottom: 20px;
  -webkit-text-fill-color: var(--bright-white);
}

.page-hero .hero-subtitle {
  color: var(--bright-white);
  font-size: 22px;
}

/* Text Sections */
.text-section {
  max-width: 800px;
  margin: 40px auto;
}

.text-section p {
  margin-bottom: 20px;
}

blockquote {
  border-left: 6px solid var(--electric-blue);
  padding: 24px 32px;
  margin: 40px 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(131, 56, 236, 0.05));
  font-size: 24px;
  font-style: italic;
  color: var(--cyber-purple);
  border-radius: 0 12px 12px 0;
}

/* Team Section */
.team {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
}

.team h2 {
  text-align: center;
  margin-bottom: 16px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 60px;
}

.team-member {
  flex: 1 1 320px;
  background: var(--bright-white);
  padding: 40px 32px;
  border-radius: 20px;
  border: 3px solid var(--hot-orange);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(255, 107, 0, 0.3);
}

.team-member h3 {
  margin-bottom: 8px;
  color: var(--cyber-purple);
}

.team-member .position {
  color: var(--electric-blue);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 16px;
}

.team-member .credentials {
  color: #666;
  font-size: 14px;
  font-style: italic;
  margin-top: 16px;
}

/* Certifications */
.certifications {
  background: var(--deep-black);
  padding: 80px 20px;
}

.certifications h2 {
  text-align: center;
  color: var(--bright-white);
  margin-bottom: 60px;
}

.cert-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  border-radius: 12px;
  border: 2px solid var(--laser-green);
  transition: all 0.3s ease;
}

.cert-item:hover {
  transform: translateX(10px);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.cert-item img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 10px var(--laser-green));
}

.cert-item span {
  color: var(--bright-white);
  font-weight: 600;
  font-size: 16px;
}

/* Timeline */
.timeline {
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.timeline h2 {
  text-align: center;
  margin-bottom: 60px;
}

.timeline-items {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 60px;
}

.timeline-items::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--energy-gradient);
}

.timeline-item {
  position: relative;
  padding: 24px 32px;
  background: var(--bright-white);
  border-radius: 12px;
  border: 3px solid var(--electric-blue);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: var(--neon-pink);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 0, 110, 0.6);
}

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

.timeline-item .year {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: var(--cyber-purple);
  margin-bottom: 12px;
}

.timeline-item p {
  color: #444;
}

/* Service Detail Pages */
.services-intro,
.properties-intro,
.guide-intro,
.contact-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.service-detail {
  padding: 60px 20px;
}

.service-detail:nth-child(even) {
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.service-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  gap: 24px;
}

.service-content img {
  width: 100px;
  height: 100px;
  filter: drop-shadow(0 0 20px var(--electric-blue));
}

.service-content h2 {
  margin-bottom: 16px;
}

.service-content .tagline {
  font-size: 22px;
  color: var(--neon-pink);
  font-weight: 700;
  margin-bottom: 20px;
}

.service-content .price {
  font-size: 32px;
  font-weight: 900;
  color: var(--laser-green);
  margin: 24px 0;
  text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.service-content .features {
  list-style: none;
  margin: 32px 0;
  text-align: left;
  width: 100%;
}

.service-content .features li {
  padding: 16px 20px 16px 50px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(131, 56, 236, 0.05));
  border-radius: 8px;
  border-left: 4px solid var(--electric-blue);
  position: relative;
  transition: all 0.3s ease;
}

.service-content .features li:hover {
  transform: translateX(10px);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(131, 56, 236, 0.1));
}

.service-content .features li::before {
  content: '✓';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--laser-green);
  font-weight: 900;
  font-size: 20px;
}

/* Districts */
.districts {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
}

.districts h2 {
  text-align: center;
  margin-bottom: 16px;
}

.districts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 60px;
}

.district-card {
  flex: 1 1 320px;
  background: var(--bright-white);
  padding: 40px 32px;
  border-radius: 20px;
  border: 3px solid var(--hot-orange);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.district-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(255, 107, 0, 0.3);
}

.district-card h3 {
  margin-bottom: 12px;
}

/* Market Insights */
.market-insights {
  background: var(--deep-black);
  padding: 80px 20px;
}

.market-insights h2 {
  text-align: center;
  color: var(--bright-white);
  margin-bottom: 60px;
}

.insights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 60px;
}

.insight-card {
  flex: 1 1 320px;
  background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
  padding: 40px 32px;
  border-radius: 20px;
  border: 3px solid var(--cyber-purple);
  box-shadow: 0 0 30px rgba(131, 56, 236, 0.2);
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.insight-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 50px rgba(131, 56, 236, 0.5);
}

.insight-card h3 {
  color: var(--bright-white);
  margin-bottom: 12px;
}

.insight-card p {
  color: #ccc;
}

/* Off-Market */
.off-market {
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
  text-align: center;
}

.off-market h2 {
  margin-bottom: 24px;
}

.off-market .benefits {
  list-style: none;
  max-width: 600px;
  margin: 40px auto;
  text-align: left;
}

.off-market .benefits li {
  padding: 16px 20px 16px 50px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(131, 56, 236, 0.05));
  border-radius: 8px;
  border-left: 4px solid var(--neon-pink);
  position: relative;
  font-size: 18px;
}

.off-market .benefits li::before {
  content: '★';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--laser-green);
  font-size: 20px;
}

/* Selling CTA */
.selling-cta {
  background: var(--energy-gradient);
  padding: 80px 20px;
  text-align: center;
  color: var(--bright-white);
}

.selling-cta h2 {
  color: var(--bright-white);
  margin-bottom: 24px;
}

.selling-cta p {
  color: var(--bright-white);
  font-size: 20px;
  margin-bottom: 40px;
}

.selling-cta .usps {
  list-style: none;
  max-width: 600px;
  margin: 40px auto;
}

.selling-cta .usps li {
  padding: 16px 20px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
}

/* Guide Categories */
.guide-categories {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
}

.guide-categories h2 {
  text-align: center;
  margin-bottom: 60px;
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.category-card {
  flex: 1 1 280px;
  background: var(--bright-white);
  padding: 40px 32px;
  border-radius: 20px;
  border: 3px solid var(--electric-blue);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 212, 255, 0.3);
  border-color: var(--neon-pink);
}

.category-card h3 {
  margin-bottom: 12px;
}

/* Articles */
.featured-articles {
  background: var(--deep-black);
  padding: 80px 20px;
}

.featured-articles h2 {
  text-align: center;
  color: var(--bright-white);
  margin-bottom: 60px;
}

.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.article-card {
  flex: 1 1 450px;
  background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
  padding: 40px 32px;
  border-radius: 20px;
  border: 3px solid var(--laser-green);
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.article-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 50px rgba(0, 255, 136, 0.5);
}

.article-card h3 {
  color: var(--bright-white);
  margin-bottom: 16px;
}

.article-card p {
  color: #ccc;
  margin-bottom: 20px;
}

.article-card .read-time {
  display: block;
  color: var(--laser-green);
  font-weight: 700;
  font-size: 14px;
}

/* Resources */
.resources {
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.resources h2 {
  text-align: center;
  margin-bottom: 16px;
}

.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 60px;
}

.resource-card {
  flex: 1 1 400px;
  background: var(--bright-white);
  padding: 40px 32px;
  border-radius: 20px;
  border: 3px solid var(--hot-orange);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.resource-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(255, 107, 0, 0.3);
}

.resource-card h3 {
  margin-bottom: 12px;
}

.resource-card .format {
  display: block;
  color: var(--cyber-purple);
  font-weight: 700;
  font-size: 14px;
  margin-top: 16px;
}

/* FAQ */
.faq {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
}

.faq h2 {
  text-align: center;
  margin-bottom: 60px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faq-item {
  background: var(--bright-white);
  padding: 32px;
  border-radius: 12px;
  border: 3px solid var(--electric-blue);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.faq-item h3 {
  margin-bottom: 16px;
  color: var(--cyber-purple);
}

.faq-item p {
  color: #444;
}

/* Contact Methods */
.contact-methods {
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.contact-methods h2 {
  text-align: center;
  margin-bottom: 60px;
}

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

.method-card {
  flex: 1 1 400px;
  background: var(--bright-white);
  padding: 40px 32px;
  border-radius: 20px;
  border: 3px solid var(--neon-pink);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.method-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(255, 0, 110, 0.3);
}

.method-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 15px var(--electric-blue));
}

.method-card h3 {
  margin-bottom: 16px;
}

.method-card .note {
  font-size: 14px;
  color: #666;
  font-style: italic;
  margin-top: 16px;
}

/* Office Info */
.office-info {
  background: var(--deep-black);
  padding: 80px 20px;
  color: var(--bright-white);
}

.office-info h2 {
  text-align: center;
  color: var(--bright-white);
  margin-bottom: 60px;
}

.office-details {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.office-details .address {
  font-size: 24px;
  font-weight: 700;
  color: var(--electric-blue);
  margin-bottom: 24px;
}

.office-details .hours {
  margin: 32px 0;
}

.office-details .hours h3 {
  color: var(--bright-white);
  margin-bottom: 16px;
}

.office-details .hours p {
  color: #ccc;
}

.office-details .note {
  color: #999;
  font-size: 16px;
  font-style: italic;
  margin-top: 32px;
}

/* Team Contact */
.team-contact {
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
}

.team-contact h2 {
  text-align: center;
  margin-bottom: 16px;
}

.team-contact .specialty {
  color: var(--neon-pink);
  font-weight: 700;
  font-size: 16px;
  margin-top: 12px;
}

/* Legal Content */
.legal-content {
  background: #ffffff;
  padding: 60px 20px;
}

.legal-content .container {
  max-width: 800px;
}

.legal-content h2 {
  margin-top: 48px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--electric-blue);
}

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

.legal-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.legal-content .last-updated {
  color: #666;
  font-size: 16px;
  font-style: italic;
  margin-top: 16px;
}

/* Contact Section in Legal Pages */
.contact-section {
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
  padding: 60px 20px;
}

.contact-section .container {
  max-width: 600px;
  text-align: center;
}

.contact-section h2 {
  margin-bottom: 32px;
}

/* Thank You Page */
.thank-you-hero {
  background: var(--energy-gradient);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.thank-you-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
}

.thank-you-hero .container {
  position: relative;
  z-index: 1;
}

.success-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 32px;
  background: var(--bright-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(0, 255, 136, 0.5);
  animation: success-pulse 2s ease-in-out infinite;
}

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

.success-icon img {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 0 20px var(--laser-green));
}

.thank-you-hero h1 {
  color: var(--bright-white);
  -webkit-text-fill-color: var(--bright-white);
}

.confirmation-details {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
}

.confirmation-details h2 {
  text-align: center;
  margin-bottom: 60px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.step-card {
  flex: 1 1 300px;
  background: var(--bright-white);
  padding: 40px 32px;
  border-radius: 20px;
  border: 3px solid var(--laser-green);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 255, 136, 0.3);
}

.step-card img {
  width: 70px;
  height: 70px;
  margin-bottom: 24px;
  filter: drop-shadow(0 0 15px var(--electric-blue));
}

.step-card h3 {
  margin-bottom: 12px;
}

/* Next Steps */
.next-steps {
  background: var(--deep-black);
  padding: 80px 20px;
}

.next-steps h2 {
  text-align: center;
  color: var(--bright-white);
  margin-bottom: 60px;
}

.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.action-card {
  flex: 1 1 450px;
  background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
  padding: 40px 32px;
  border-radius: 20px;
  border: 3px solid var(--cyber-purple);
  box-shadow: 0 0 30px rgba(131, 56, 236, 0.2);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.action-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 50px rgba(131, 56, 236, 0.5);
}

.action-card h3 {
  color: var(--bright-white);
  margin-bottom: 16px;
}

.action-card p {
  color: #ccc;
  margin-bottom: 24px;
}

/* Testimonial Single */
.testimonial-single {
  background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
  padding: 80px 20px;
}

.testimonial-single .testimonial-card {
  max-width: 800px;
  margin: 0 auto;
}

/* Back Navigation */
.back-navigation {
  background: #ffffff;
  padding: 60px 20px;
}

.nav-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Section CTA */
.section-cta {
  text-align: center;
  margin-top: 60px;
}

/* Footer */
footer {
  background: var(--deep-black);
  color: var(--bright-white);
  padding: 80px 20px 40px;
  border-top: 4px solid var(--electric-blue);
}

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

.footer-column {
  flex: 1 1 250px;
  margin-bottom: 24px;
}

.footer-column h3 {
  color: var(--bright-white);
  font-size: 24px;
  margin-bottom: 16px;
  background: var(--energy-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-column h4 {
  color: var(--bright-white);
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column .tagline {
  color: #999;
  font-size: 14px;
  font-style: italic;
  margin-bottom: 20px;
}

.footer-column p {
  color: #ccc;
  font-size: 16px;
  line-height: 1.6;
}

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

.footer-column nav a {
  color: #ccc;
  font-size: 16px;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.footer-column nav a:hover {
  color: var(--electric-blue);
  transform: translateX(8px);
}

.footer-bottom {
  border-top: 2px solid rgba(0, 212, 255, 0.3);
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.footer-legal a {
  color: #999;
  font-size: 14px;
  transition: all 0.3s ease;
}

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

.copyright {
  color: #666;
  font-size: 14px;
  text-align: center;
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--deep-black);
  border-top: 4px solid var(--electric-blue);
  padding: 24px;
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

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

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

.cookie-text {
  flex: 1 1 400px;
  color: var(--bright-white);
}

.cookie-text h3 {
  color: var(--bright-white);
  font-size: 20px;
  margin-bottom: 8px;
}

.cookie-text p {
  color: #ccc;
  font-size: 16px;
}

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

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

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

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

.cookie-modal-content {
  background: var(--bright-white);
  padding: 40px;
  border-radius: 20px;
  border: 3px solid var(--electric-blue);
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--neon-pink);
  color: var(--bright-white);
  border: none;
  padding: 8px 14px;
  font-size: 20px;
  cursor: pointer;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  transform: rotate(90deg);
  background: var(--hot-orange);
}

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: linear-gradient(135deg, #f8f8f8, #ffffff);
  border-radius: 12px;
  border-left: 4px solid var(--electric-blue);
}

.cookie-category h3 {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-weight: 700;
}

.cookie-category input[type="checkbox"] {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.cookie-category p {
  color: #555;
  font-size: 16px;
  margin-top: 12px;
}

.cookie-category.disabled {
  opacity: 0.6;
}

.cookie-category.disabled input {
  cursor: not-allowed;
}

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

/* Animations */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

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

/* Responsive Design */
@media (max-width: 768px) {
  /* Mobile Menu Visible */
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav,
  .header-cta {
    display: none;
  }
  
  /* Typography */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 32px;
  }
  
  h3 {
    font-size: 24px;
  }
  
  p {
    font-size: 16px;
  }
  
  .hero h1 {
    font-size: 42px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  /* Sections */
  section {
    padding: 60px 20px;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 20px;
  }
  
  /* Buttons */
  .btn {
    padding: 14px 28px;
    font-size: 14px;
  }
  
  /* Grids */
  .values-grid,
  .services-grid,
  .process-steps,
  .testimonials-grid,
  .team-grid,
  .districts-grid,
  .insights-grid,
  .categories-grid,
  .articles-grid,
  .resources-grid,
  .methods-grid,
  .steps-grid,
  .actions-grid {
    flex-direction: column;
  }
  
  /* Cards */
  .value-card,
  .service-card,
  .testimonial-card,
  .team-member,
  .district-card,
  .insight-card,
  .category-card,
  .article-card,
  .resource-card,
  .method-card,
  .step-card,
  .action-card {
    flex: 1 1 100%;
  }
  
  /* Stats */
  .stats-grid {
    flex-direction: column;
    gap: 24px;
  }
  
  .stat-number {
    font-size: 48px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  /* Cookie Consent */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  /* Timeline */
  .timeline-items {
    padding-left: 40px;
  }
  
  .timeline-item::before {
    left: -40px;
  }
  
  /* Service Content */
  .service-content .features li {
    padding: 12px 16px 12px 40px;
  }
  
  /* CTA Banner */
  .cta-banner h2 {
    font-size: 32px;
  }
  
  .cta-banner p {
    font-size: 18px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  .hero-cta,
  .cta-banner,
  .cta-buttons,
  .btn {
    display: none !important;
  }
  
  body {
    color: #000;
    background: #fff;
  }
  
  a {
    color: #000;
    text-decoration: underline;
  }
}