/* ===================================
   SPARKHILL - TECH FUTURISTIC DESIGN
   CSS STYLESHEET
   =================================== */

/* ===================================
   CSS RESET & BASE STYLES
   =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: #E0E0E0;
  background: linear-gradient(135deg, #0A1628 0%, #1A2332 50%, #0F1B2D 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(74, 144, 164, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(123, 201, 150, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #FFFFFF;
  text-shadow: 0 0 20px rgba(74, 144, 164, 0.3);
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #4A90A4 0%, #7BC996 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 32px;
  color: #4A90A4;
  position: relative;
  padding-bottom: 12px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #4A90A4 0%, #7BC996 100%);
  box-shadow: 0 0 10px rgba(74, 144, 164, 0.5);
}

h3 {
  font-size: 24px;
  color: #7BC996;
}

h4 {
  font-size: 18px;
  color: #4A90A4;
}

p {
  margin-bottom: 16px;
  color: #B8C5D0;
  line-height: 1.8;
}

a {
  color: #4A90A4;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

a:hover {
  color: #7BC996;
  text-shadow: 0 0 10px rgba(123, 201, 150, 0.5);
}

strong {
  color: #FFFFFF;
  font-weight: 600;
}

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

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

blockquote {
  border-left: 4px solid #4A90A4;
  padding-left: 20px;
  margin: 24px 0;
  font-style: italic;
  color: #B8C5D0;
  background: rgba(74, 144, 164, 0.05);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(74, 144, 164, 0.1);
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
header {
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(74, 144, 164, 0.2);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 0 40px rgba(74, 144, 164, 0.1);
}

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

.logo img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(74, 144, 164, 0.5));
  transition: all 0.3s ease;
}

.logo img:hover {
  filter: drop-shadow(0 0 20px rgba(123, 201, 150, 0.7));
  transform: scale(1.05);
}

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

.main-nav a {
  color: #B8C5D0;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #4A90A4 0%, #7BC996 100%);
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(74, 144, 164, 0.5);
}

.main-nav a:hover {
  color: #7BC996;
}

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

.cta-button {
  background: linear-gradient(135deg, #4A90A4 0%, #2D5A68 100%);
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(74, 144, 164, 0.3);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(74, 144, 164, 0.3), 0 0 20px rgba(74, 144, 164, 0.2);
}

.cta-button:hover {
  background: linear-gradient(135deg, #7BC996 0%, #4A90A4 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(123, 201, 150, 0.4), 0 0 30px rgba(123, 201, 150, 0.3);
}

/* ===================================
   MOBILE MENU
   =================================== */
.mobile-menu-toggle {
  display: none;
  background: linear-gradient(135deg, #4A90A4 0%, #2D5A68 100%);
  color: #FFFFFF;
  border: 1px solid rgba(74, 144, 164, 0.3);
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 6px;
  position: fixed;
  top: 16px;
  right: 20px;
  z-index: 1001;
  box-shadow: 0 4px 15px rgba(74, 144, 164, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: linear-gradient(135deg, #7BC996 0%, #4A90A4 100%);
  box-shadow: 0 6px 25px rgba(123, 201, 150, 0.4);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(15px);
  padding: 80px 30px 30px;
  z-index: 1002;
  transition: right 0.3s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
  border-left: 1px solid rgba(74, 144, 164, 0.2);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #7BC996;
  border: none;
  font-size: 32px;
  cursor: pointer;
  padding: 8px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  color: #FFFFFF;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #B8C5D0;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(74, 144, 164, 0.1);
  transition: all 0.3s ease;
  position: relative;
  padding-left: 16px;
}

.mobile-nav a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #4A90A4 0%, #7BC996 100%);
  transition: width 0.3s ease;
}

.mobile-nav a:hover {
  color: #7BC996;
  padding-left: 24px;
}

.mobile-nav a:hover::before {
  width: 12px;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.9) 0%, rgba(26, 35, 50, 0.9) 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(74, 144, 164, 0.2);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(74, 144, 164, 0.1) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

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

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

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

.subheadline {
  font-size: 20px;
  color: #B8C5D0;
  margin-bottom: 32px;
  line-height: 1.6;
  animation: fadeInUp 1s ease;
}

.benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
  animation: fadeInUp 1.2s ease;
}

.benefit-list span {
  background: rgba(74, 144, 164, 0.1);
  border: 1px solid rgba(74, 144, 164, 0.3);
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  color: #7BC996;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(74, 144, 164, 0.1);
}

.benefit-list span:hover {
  background: rgba(123, 201, 150, 0.15);
  border-color: #7BC996;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(123, 201, 150, 0.2);
}

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

/* ===================================
   BUTTONS
   =================================== */
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-primary,
.btn-secondary {
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid transparent;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, #4A90A4 0%, #2D5A68 100%);
  color: #FFFFFF;
  border-color: rgba(74, 144, 164, 0.3);
  box-shadow: 0 4px 15px rgba(74, 144, 164, 0.3), 0 0 20px rgba(74, 144, 164, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #7BC996 0%, #4A90A4 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(123, 201, 150, 0.4), 0 0 30px rgba(123, 201, 150, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #4A90A4;
  border: 2px solid #4A90A4;
  box-shadow: 0 0 20px rgba(74, 144, 164, 0.2);
}

.btn-secondary:hover {
  background: rgba(74, 144, 164, 0.1);
  border-color: #7BC996;
  color: #7BC996;
  transform: translateY(-3px);
  box-shadow: 0 4px 25px rgba(123, 201, 150, 0.3);
}

.trust-badge {
  display: inline-block;
  background: rgba(123, 201, 150, 0.1);
  border: 1px solid rgba(123, 201, 150, 0.3);
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 14px;
  color: #7BC996;
  margin-top: 16px;
  box-shadow: 0 0 20px rgba(123, 201, 150, 0.1);
}

/* ===================================
   CARD LAYOUTS
   =================================== */
.card-container,
.benefits-grid,
.services-grid,
.testimonials-grid,
.steps-grid,
.guarantees-grid,
.factors-grid,
.methods-grid,
.extras-grid,
.values-grid,
.reasons-grid,
.security-grid,
.stats-grid,
.faq-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.card,
.benefit-card,
.service-card,
.testimonial-card,
.step,
.guarantee-item,
.factor,
.method-card,
.extra-item,
.value-card,
.reason,
.security-item,
.stat,
.faq-item {
  background: rgba(10, 22, 40, 0.8);
  border: 1px solid rgba(74, 144, 164, 0.2);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 280px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.card::before,
.benefit-card::before,
.service-card::before,
.testimonial-card::before,
.step::before,
.guarantee-item::before,
.factor::before,
.method-card::before,
.extra-item::before,
.value-card::before,
.reason::before,
.security-item::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #4A90A4 0%, #7BC996 100%);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.card:hover,
.benefit-card:hover,
.service-card:hover,
.testimonial-card:hover,
.step:hover,
.guarantee-item:hover,
.factor:hover,
.method-card:hover,
.extra-item:hover,
.value-card:hover,
.reason:hover,
.security-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(74, 144, 164, 0.3), 0 0 30px rgba(74, 144, 164, 0.2);
}

.card:hover::before,
.benefit-card:hover::before,
.service-card:hover::before,
.testimonial-card:hover::before,
.step:hover::before,
.guarantee-item:hover::before,
.factor:hover::before,
.method-card:hover::before,
.extra-item:hover::before,
.value-card:hover::before,
.reason:hover::before,
.security-item:hover::before {
  opacity: 0.1;
}

.benefit-card img,
.method-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 10px rgba(74, 144, 164, 0.5));
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.service-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #7BC996;
  margin: 16px 0;
  text-shadow: 0 0 15px rgba(123, 201, 150, 0.3);
}

.service-card .features {
  list-style: none;
  padding: 0;
  margin-top: auto;
}

.service-card .features li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(74, 144, 164, 0.1);
  color: #B8C5D0;
  position: relative;
  padding-left: 24px;
}

.service-card .features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #7BC996;
  font-weight: 700;
}

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonial-card {
  background: rgba(26, 35, 50, 0.8);
  border: 1px solid rgba(123, 201, 150, 0.2);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: #E0E0E0;
  line-height: 1.8;
  margin-bottom: 20px;
}

.author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(74, 144, 164, 0.2);
  padding-top: 16px;
}

.author strong {
  color: #7BC996;
  font-size: 16px;
}

.author span {
  color: #B8C5D0;
  font-size: 14px;
}

/* ===================================
   STEPS & PROCESS
   =================================== */
.step {
  position: relative;
  padding-top: 80px;
}

.step-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4A90A4 0%, #2D5A68 100%);
  border: 3px solid rgba(123, 201, 150, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  box-shadow: 0 0 30px rgba(74, 144, 164, 0.5);
}

/* ===================================
   STATS
   =================================== */
.stats,
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
  padding: 40px 20px;
  background: rgba(10, 22, 40, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(74, 144, 164, 0.2);
}

.stat {
  text-align: center;
  min-width: 150px;
  padding: 20px;
  background: transparent;
  border: none;
  box-shadow: none;
}

.stat:hover {
  transform: scale(1.05);
  box-shadow: none;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #7BC996;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(123, 201, 150, 0.5);
}

.stat-label {
  font-size: 14px;
  color: #B8C5D0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===================================
   TABLES
   =================================== */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: rgba(10, 22, 40, 0.6);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(74, 144, 164, 0.2);
}

table th,
table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid rgba(74, 144, 164, 0.1);
}

table th {
  background: rgba(74, 144, 164, 0.2);
  color: #7BC996;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}

table td {
  color: #B8C5D0;
}

table tr:hover {
  background: rgba(74, 144, 164, 0.05);
}

/* ===================================
   SECTIONS
   =================================== */
.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 18px;
  color: #B8C5D0;
}

.page-hero {
  padding: 80px 20px 60px;
  text-align: center;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.9) 0%, rgba(26, 35, 50, 0.9) 100%);
  border-bottom: 1px solid rgba(74, 144, 164, 0.2);
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(74, 144, 164, 0.1) 0%, transparent 70%);
}

.benefits,
.services-preview,
.testimonials,
.how-it-works,
.cta-final,
.services-detail,
.pricing-tables,
.process-overview,
.our-story,
.our-values,
.why-choose-us,
.contact-methods,
.quality-guarantee,
.pricing-intro {
  padding: 60px 20px;
  position: relative;
}

.benefits {
  background: rgba(10, 22, 40, 0.4);
}

.how-it-works {
  background: rgba(26, 35, 50, 0.4);
}

.testimonials {
  background: rgba(10, 22, 40, 0.6);
  border-top: 1px solid rgba(74, 144, 164, 0.2);
  border-bottom: 1px solid rgba(74, 144, 164, 0.2);
}

.cta-final,
.cta-section,
.cta-process,
.cta-pricing,
.cta-contact {
  background: linear-gradient(135deg, rgba(74, 144, 164, 0.15) 0%, rgba(123, 201, 150, 0.1) 100%);
  text-align: center;
  padding: 80px 20px;
  border-top: 1px solid rgba(74, 144, 164, 0.2);
  border-bottom: 1px solid rgba(74, 144, 164, 0.2);
  position: relative;
}

.cta-final::before,
.cta-section::before,
.cta-process::before,
.cta-pricing::before,
.cta-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(123, 201, 150, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.phone-text,
.alternative {
  margin-top: 24px;
  font-size: 16px;
  color: #B8C5D0;
}

.phone-text a,
.alternative a {
  color: #7BC996;
  font-weight: 600;
  font-size: 20px;
}

/* ===================================
   PRICING SPECIFIC
   =================================== */
.pricing-table {
  background: rgba(10, 22, 40, 0.8);
  border: 1px solid rgba(74, 144, 164, 0.2);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.pricing-table h3 {
  text-align: center;
  margin-bottom: 16px;
  font-size: 28px;
}

.duration,
.frequency {
  text-align: center;
  color: #7BC996;
  font-size: 14px;
  margin: 16px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.note {
  background: rgba(123, 201, 150, 0.1);
  border-left: 3px solid #7BC996;
  padding: 12px 16px;
  margin: 16px 0;
  font-size: 14px;
  color: #B8C5D0;
  border-radius: 4px;
}

.package-examples {
  margin: 24px 0;
  padding: 20px;
  background: rgba(74, 144, 164, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(74, 144, 164, 0.2);
}

.package-examples p {
  margin-bottom: 12px;
}

/* ===================================
   SERVICE DETAILED
   =================================== */
.service-detailed {
  background: rgba(10, 22, 40, 0.8);
  border: 1px solid rgba(74, 144, 164, 0.2);
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(74, 144, 164, 0.2);
}

.service-header h3 {
  flex: 1;
  margin-bottom: 0;
}

.service-header .price,
.service-header .duration,
.service-header .frequency {
  background: rgba(123, 201, 150, 0.1);
  border: 1px solid rgba(123, 201, 150, 0.3);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 600;
  color: #7BC996;
}

.best-for {
  background: rgba(74, 144, 164, 0.1);
  border-left: 3px solid #4A90A4;
  padding: 16px;
  margin-top: 24px;
  font-style: italic;
  border-radius: 4px;
}

/* ===================================
   CONTACT PAGE
   =================================== */
.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(10, 22, 40, 0.8);
  border: 1px solid rgba(74, 144, 164, 0.2);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.form-note {
  background: rgba(123, 201, 150, 0.1);
  border: 1px solid rgba(123, 201, 150, 0.3);
  padding: 16px;
  border-radius: 8px;
  margin: 24px 0;
  font-size: 14px;
  color: #B8C5D0;
}

.form-fields-display {
  background: rgba(26, 35, 50, 0.6);
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(74, 144, 164, 0.2);
}

.form-fields-display p {
  margin-bottom: 16px;
}

.form-fields-display ul {
  list-style-position: inside;
}

.implementation-note {
  margin-top: 16px;
  font-style: italic;
  font-size: 13px;
  color: #7BC996;
}

.method-value {
  font-size: 20px;
  font-weight: 600;
  color: #7BC996;
  margin: 16px 0;
}

.method-value a {
  color: #7BC996;
}

.hours,
.response {
  color: #B8C5D0;
  font-size: 14px;
  margin: 8px 0;
}

.location-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 32px;
}

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

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

.map-placeholder {
  background: rgba(26, 35, 50, 0.6);
  border: 2px dashed rgba(74, 144, 164, 0.3);
  padding: 60px 20px;
  text-align: center;
  border-radius: 8px;
  color: #B8C5D0;
  font-style: italic;
}

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

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(10, 22, 40, 0.8);
  border: 1px solid rgba(74, 144, 164, 0.2);
  border-radius: 12px;
  padding: 48px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(74, 144, 164, 0.2);
}

.legal-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.last-updated {
  color: #B8C5D0;
  font-size: 14px;
  font-style: italic;
  margin-bottom: 32px;
}

/* ===================================
   THANK YOU PAGE
   =================================== */
.thank-you-page {
  padding: 80px 20px;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: rgba(10, 22, 40, 0.8);
  border: 1px solid rgba(123, 201, 150, 0.3);
  border-radius: 12px;
  padding: 60px 40px;
  box-shadow: 0 8px 40px rgba(123, 201, 150, 0.2);
}

.thank-you-icon {
  margin-bottom: 24px;
}

.thank-you-icon img {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 0 20px rgba(123, 201, 150, 0.7));
}

.thank-you-content h1 {
  color: #7BC996;
  margin-bottom: 16px;
}

.lead {
  font-size: 20px;
  color: #B8C5D0;
  margin-bottom: 32px;
}

.thank-you-message,
.thank-you-info,
.thank-you-next-steps {
  background: rgba(26, 35, 50, 0.6);
  border: 1px solid rgba(74, 144, 164, 0.2);
  border-radius: 8px;
  padding: 24px;
  margin: 24px 0;
  text-align: left;
}

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

.phone-large a {
  color: #7BC996;
}

.thank-you-cta {
  margin-top: 40px;
}

/* ===================================
   FOOTER
   =================================== */
footer {
  background: rgba(10, 22, 40, 0.95);
  border-top: 1px solid rgba(74, 144, 164, 0.2);
  padding: 60px 20px 20px;
  margin-top: 80px;
  position: relative;
}

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

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

.footer-column img {
  height: 48px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(74, 144, 164, 0.5));
}

.tagline {
  font-size: 14px;
  color: #B8C5D0;
  font-style: italic;
  margin-bottom: 24px;
}

.contact-info {
  font-size: 14px;
  line-height: 1.8;
}

.contact-info p {
  margin-bottom: 8px;
  color: #B8C5D0;
}

.contact-info a {
  color: #4A90A4;
}

.footer-column h4 {
  color: #7BC996;
  margin-bottom: 16px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.footer-column nav a {
  color: #B8C5D0;
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 0;
  position: relative;
}

.footer-column nav a::before {
  content: '';
  position: absolute;
  left: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: #7BC996;
  transition: width 0.3s ease;
}

.footer-column nav a:hover {
  color: #7BC996;
  padding-left: 8px;
}

.footer-column nav a:hover::before {
  width: 12px;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(74, 144, 164, 0.2);
  color: #B8C5D0;
  font-size: 14px;
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(15px);
  border-top: 2px solid rgba(74, 144, 164, 0.3);
  padding: 20px;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  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: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 250px;
  color: #B8C5D0;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-text a {
  color: #7BC996;
  text-decoration: underline;
}

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

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

.cookie-btn-accept {
  background: linear-gradient(135deg, #7BC996 0%, #4A90A4 100%);
  color: #FFFFFF;
  border-color: rgba(123, 201, 150, 0.3);
}

.cookie-btn-accept:hover {
  box-shadow: 0 4px 20px rgba(123, 201, 150, 0.4);
  transform: translateY(-2px);
}

.cookie-btn-reject,
.cookie-btn-settings {
  background: transparent;
  color: #B8C5D0;
  border: 1px solid rgba(74, 144, 164, 0.3);
}

.cookie-btn-reject:hover,
.cookie-btn-settings:hover {
  background: rgba(74, 144, 164, 0.1);
  border-color: #4A90A4;
  color: #7BC996;
}

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-content {
  background: rgba(10, 22, 40, 0.98);
  border: 2px solid rgba(74, 144, 164, 0.3);
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

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

.cookie-modal-header h3 {
  color: #7BC996;
}

.cookie-modal-close {
  background: transparent;
  border: none;
  color: #B8C5D0;
  font-size: 28px;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  color: #7BC996;
  transform: rotate(90deg);
}

.cookie-category {
  background: rgba(26, 35, 50, 0.6);
  border: 1px solid rgba(74, 144, 164, 0.2);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 16px;
}

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

.cookie-category h4 {
  color: #4A90A4;
  margin-bottom: 0;
}

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

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

.cookie-toggle.active {
  background: linear-gradient(135deg, #7BC996 0%, #4A90A4 100%);
}

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

.cookie-toggle::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

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

.cookie-modal-footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(74, 144, 164, 0.2);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
  h1 { font-size: 40px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 42px; }
  .subheadline { font-size: 18px; }
}

@media (max-width: 768px) {
  /* MOBILE MENU */
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav,
  .cta-button {
    display: none;
  }
  
  header {
    padding: 12px 0;
  }
  
  .header-content {
    justify-content: center;
  }
  
  /* TYPOGRAPHY */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 18px; }
  
  .hero h1 { font-size: 32px; }
  .subheadline { font-size: 16px; }
  .section-intro { font-size: 16px; }
  
  /* SECTIONS */
  .hero { padding: 60px 20px; }
  .page-hero { padding: 60px 20px 40px; }
  
  .benefits,
  .services-preview,
  .testimonials,
  .how-it-works,
  .cta-final,
  .services-detail,
  .pricing-tables,
  .process-overview,
  .our-story,
  .our-values,
  .why-choose-us,
  .contact-methods,
  .quality-guarantee,
  .pricing-intro {
    padding: 40px 20px;
  }
  
  /* CARDS */
  .benefits-grid,
  .services-grid,
  .testimonials-grid,
  .steps-grid,
  .guarantees-grid,
  .factors-grid,
  .methods-grid,
  .extras-grid,
  .values-grid,
  .reasons-grid,
  .security-grid,
  .faq-grid {
    flex-direction: column;
  }
  
  .card,
  .benefit-card,
  .service-card,
  .testimonial-card,
  .step,
  .guarantee-item,
  .factor,
  .method-card,
  .extra-item,
  .value-card,
  .reason,
  .security-item,
  .faq-item {
    min-width: 100%;
  }
  
  /* BUTTONS */
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* STATS */
  .stats,
  .stats-grid {
    flex-direction: column;
    gap: 24px;
  }
  
  .stat-number { font-size: 36px; }
  
  /* SERVICE HEADER */
  .service-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  /* FOOTER */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  /* COOKIE BANNER */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
    margin: 0 10px;
  }
  
  /* LOCATION */
  .location-grid {
    flex-direction: column;
  }
  
  /* LEGAL */
  .legal-content {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  .hero h1 { font-size: 28px; }
  
  .container {
    padding: 0 16px;
  }
  
  .section {
    padding: 32px 16px;
  }
  
  .card,
  .benefit-card,
  .service-card,
  .testimonial-card,
  .step,
  .guarantee-item,
  .factor,
  .method-card,
  .extra-item,
  .value-card,
  .reason,
  .security-item,
  .faq-item {
    padding: 24px;
  }
  
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 14px;
  }
}

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

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(74, 144, 164, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(123, 201, 150, 0.5);
  }
}

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

.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; }

.p-1 { padding: 8px; }
.p-2 { padding: 16px; }
.p-3 { padding: 24px; }
.p-4 { padding: 32px; }

/* ===================================
   ACCESSIBILITY
   =================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

*:focus {
  outline: 2px solid #7BC996;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #7BC996;
  outline-offset: 2px;
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .cta-buttons,
  .btn-primary,
  .btn-secondary {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  a {
    color: black;
    text-decoration: underline;
  }
}