

:root {
  --electric-blue: #0066ff;
  --neon-cyan: #00ffff;
  --deep-blue: #0a1628;
  --coral: #ff6b6b;
  --coral-light: #ff8787;
  --dark-bg: #0f172a;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.15);
  --text-primary: #ffffff;
  --text-secondary: #b8c5d6;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}


h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h1 {
  font-size: 3.5rem;
  line-height: 1.1;
}

h2 {
  font-size: 2.5rem;
  line-height: 1.2;
}

h3 {
  font-size: 1.75rem;
}

p {
  color: var(--text-secondary);
}


.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s ease;
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: var(--neon-cyan);
  box-shadow: 0 20px 40px rgba(0, 255, 255, 0.15);
}


.gradient-text {
  background: linear-gradient(135deg, var(--neon-cyan), var(--electric-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.btn-primary {
  background: linear-gradient(135deg, var(--electric-blue), var(--neon-cyan));
  color: var(--deep-blue);
  font-weight: 600;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.btn-coral {
  background: var(--coral);
  color: white;
  font-weight: 600;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-coral:hover {
  background: var(--coral-light);
  transform: scale(1.05);
}


.section-dark {
  background: var(--dark-bg);
  padding: 6rem 0;
}

.section-gradient {
  background: linear-gradient(180deg, var(--deep-blue) 0%, var(--dark-bg) 100%);
  padding: 6rem 0;
}


.navbar {
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem 0;
}

.navbar-brand .logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand .logo span {
  background: linear-gradient(135deg, var(--neon-cyan), var(--electric-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--neon-cyan) !important;
}


.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, var(--deep-blue) 0%, #0d1b2a 100%);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

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


.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--electric-blue));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--neon-cyan);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--electric-blue), var(--neon-cyan));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}


.stat-item {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--neon-cyan), var(--electric-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
}

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


.footer-section {
  background: var(--deep-blue);
  border-top: 1px solid var(--glass-border);
  padding: 4rem 0 2rem;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  display: block;
  padding: 0.3rem 0;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--neon-cyan);
}


.input-field {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  color: var(--text-primary);
  width: 100%;
  transition: border-color 0.3s ease;
}

.input-field:focus {
  outline: none;
  border-color: var(--neon-cyan);
}

.input-field::placeholder {
  color: var(--text-secondary);
}


.cookie-consent-banner {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  max-width: 500px;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  z-index: 9999;
  display: block;
}

.cookie-consent-banner h4 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.cookie-consent-banner p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.cookie-btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}


.navbar-burger {
  color: var(--text-primary);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.navbar-burger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  margin: 5px 0;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-section {
    padding: 4rem 0;
    min-height: auto;
  }
  
  .section-dark, .section-gradient {
    padding: 4rem 0;
  }
  
  .cookie-consent-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
}


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

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mt-5 {
  margin-top: 3rem;
}

.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}


.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--text-primary);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--neon-cyan);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}


.pricing-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  height: 100%;
}

.pricing-card.featured {
  border-color: var(--neon-cyan);
  transform: scale(1.05);
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--neon-cyan);
  margin: 1.5rem 0;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
}

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--glass-border);
  color: var(--text-secondary);
}

.pricing-features li::before {
  content: '✓';
  color: var(--neon-cyan);
  margin-right: 0.5rem;
}


.map-container {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}


@media screen and (min-width: 769px) {
  .navbar-menu {
    display: flex !important;
  }
}


.navbar-menu.is-active {
  display: block !important;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.98);
  padding: 1rem;
  border-bottom: 1px solid var(--glass-border);
}


strong, b, p {
  color: inherit;
}


.has-text-white {
  color: #ffffff !important;
}

.has-text-light {
  color: #f5f5f5 !important;
}


.button {
  min-height: 44px;
}


input:focus, textarea:focus, select:focus {
  border-color: var(--neon-cyan) !important;
  box-shadow: 0 0 0 3px rgba(0, 255, 255, 0.1) !important;
}


.columns {
  margin-left: 0;
  margin-right: 0;
}

.column {
  padding: 1.5rem;
}


.image-container {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
}


.contact-info-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--electric-blue), var(--neon-cyan));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}


.process-step {
  position: relative;
  padding-left: 4rem;
}

.process-step::before {
  content: attr(data-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--electric-blue), var(--neon-cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--deep-blue);
}


.area-list {
  list-style: none;
  padding: 0;
}

.area-list li {
  padding: 1rem;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.area-list li::before {
  content: '📍';
}


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

.legal-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-content p {
  margin-bottom: 1rem;
}

.legal-content ul {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.legal-content li {
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}


.thank-you-container {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.success-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #10b981, var(--neon-cyan));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  margin: 0 auto 2rem;
}


::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--deep-blue);
}

::-webkit-scrollbar-thumb {
  background: var(--electric-blue);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--neon-cyan);
}


@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.4);
  }
}

.animate-pulse-glow {
  animation: pulse-glow 2s infinite;
}


@media screen and (max-width: 768px) {
  .navbar-menu {
    display: none;
  }

  .nav-link {
    display: block;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .cookie-btn-group {
    flex-direction: column;
  }
  
  .cookie-btn-group .button {
    width: 100%;
  }
  
  .contact-info-card {
    flex-direction: column;
    text-align: center;
  }
}