:root {
  --wine: #6E1E47;
  --neon-lime: #C9FF43;
  --anthracite: #1C1C1C;
  --dusty-pink: #F4C2C2;
  --pastel-beige: #FFF1D0;
  --text-dark: #202020;
  --text-light: #FFFFFF;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--wine);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.5em;
  line-height: 1.2;
  font-weight: 700;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--neon-lime);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--text-light);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  background: linear-gradient(135deg, #3f51b5, var(--neon-lime));
  color: var(--text-light);
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--anthracite);
  padding: 1rem 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: monospace;
  font-weight: bold;
  font-size: 1.8rem;
  color: var(--text-light);
}

/* Navigation */
.nav-toggle {
  display: none;
}

.nav-toggle-form {
  display: inline;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--anthracite);
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
  }
  
  .nav.active {
    height: auto;
  }
  
  .nav-list {
    flex-direction: column;
  }
  
  .nav-item {
    width: 100%;
    text-align: center;
  }
}

.nav-list {
  display: flex;
  list-style: none;
}

.nav-item {
  margin-left: 2rem;
}

.nav-link {
  color: var(--text-light);
  font-weight: 500;
}

.nav-link:hover {
  color: var(--neon-lime);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
  overflow: hidden;
  background-color: var(--wine);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23FFFFFF'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* About Section */
.about {
  background-color: var(--text-light);
  padding: 5rem 0;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-stats {
  flex: 1;
  min-width: 300px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.stat-item {
  background-color: var(--pastel-beige);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--wine);
}

/* Services */
.services {
  padding: 5rem 0;
  background-color: var(--dusty-pink);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M1200 0L0 0 598.97 114.72 1200 0z' fill='%23F4C2C2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--text-light);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 2rem;
  flex: 1;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--wine);
}

.service-content ul {
  list-style-position: inside;
  padding-left: 0.5rem;
}

.service-content li {
  margin-bottom: 0.5rem;
}

/* Process Steps */
.process {
  background-color: var(--text-light);
  padding: 5rem 0;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--wine);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
}

.timeline-item:nth-child(odd) {
  padding-right: calc(50% + 30px);
}

.timeline-item:nth-child(even) {
  padding-left: calc(50% + 30px);
}

.timeline-marker {
  position: absolute;
  top: 0;
  left: 50%;
  width: 30px;
  height: 30px;
  background-color: var(--neon-lime);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-content {
  background-color: var(--pastel-beige);
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Why Us */
.why-us {
  background-color: var(--dusty-pink);
  padding: 5rem 0;
  position: relative;
}

.why-us::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M1200 0L0 0 598.97 114.72 1200 0z' fill='%23F4C2C2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-item {
  background-color: var(--text-light);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  fill: var(--wine);
}

/* Testimonials */
.testimonials {
  background-color: var(--text-light);
  padding: 5rem 0;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-item {
  background-color: var(--pastel-beige);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 1rem 0;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 1rem;
}

.testimonial-name {
  font-weight: 700;
}

/* Contact Form */
.contact {
  background-color: var(--wine);
  padding: 5rem 0;
  color: var(--text-light);
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  color: var(--text-light);
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--neon-lime);
  background-color: rgba(255, 255, 255, 0.2);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-select option {
  background-color: var(--wine);
  color: var(--text-light);
  padding: 10px;
}

.form-select:focus {
  border-color: var(--neon-lime);
}

.form-check {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.form-check-input {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

.form-check-label {
  font-size: 0.9rem;
}

/* FAQ Section */
.faq {
  background-color: var(--text-light);
  padding: 5rem 0;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.accordion-header {
  background-color: var(--pastel-beige);
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
}

.accordion-header:hover {
  background-color: #f0b6b6;
  color: var(--wine);
}

.accordion-body {
  background-color: var(--text-light);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-body.active {
  padding: 1.5rem;
  max-height: 1000px;
}

/* Footer */
.footer {
  background-color: var(--anthracite);
  padding: 3rem 0 1rem;
  color: var(--text-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: monospace;
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.contact-list {
  list-style: none;
}

.contact-item {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
}

.contact-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  fill: var(--neon-lime);
}

.footer-links {
  list-style: none;
}

.footer-link-item {
  margin-bottom: 0.75rem;
}

.footer-copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Cookie Consent */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--anthracite);
  color: var(--text-light);
  padding: 1rem;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-text {
  flex: 1;
  margin-right: 1rem;
}

.cookie-buttons .btn {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* Policy Pages */
.policy-page {
  background-color: var(--text-light);
  padding: 5rem 0;
}

.policy-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--text-light);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.policy-logo {
  text-align: center;
  margin-bottom: 2rem;
}

.policy-title {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--wine);
}

.policy-section {
  margin-bottom: 2rem;
}

.policy-section-title {
  color: var(--wine);
  margin-bottom: 1rem;
}

/* Thank You Page */
.thanks-page {
  background-color: var(--wine);
  color: var(--text-light);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}

.thanks-container {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 3rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  max-width: 600px;
  width: 100%;
  border: 2px solid var(--neon-lime);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 
              inset 0 0 15px rgba(201, 255, 67, 0.2);
  position: relative;
  margin: 0 auto;
}

.thanks-container::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  z-index: -1;
}

.thanks-icon {
  width: 80px;
  height: 80px;
  fill: var(--neon-lime);
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 0 8px rgba(201, 255, 67, 0.5));
}

.thanks-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.thanks-text {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.5s ease forwards;
}

/* Responsive */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 992px) {
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    padding-left: 70px;
    padding-right: 0;
  }
  
  .timeline-marker {
    left: 30px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-text {
    font-size: 1rem;
  }
  
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-text {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .policy-container {
    padding: 2rem 1.5rem;
  }
  
  .form-container {
    padding: 1.5rem;
  }
} 