:root {
  --color-bg: #2B0A3D;
  --color-accent1: #FF5E5B;
  --color-accent2: #B9FF66;
  --color-text: #F5E9DC;
  --color-heading: #FFFFFF;
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Poppins', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  padding-top: 4rem;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-heading);
  font-family: var(--font-secondary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

a {
  color: var(--color-accent1);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--color-accent2);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  background: linear-gradient(135deg, var(--color-accent1), var(--color-accent2));
  color: var(--color-bg);
  box-shadow: 0 0 15px rgba(255, 94, 91, 0.5);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(185, 255, 102, 0.7);
  color: var(--color-bg);
}

/* Header Styles */
header {
  background-color: rgba(43, 10, 61, 0.95);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.5rem 0;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 94, 91, 0.3);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-heading);
}

.logo svg {
  margin-right: 0.5rem;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 1rem;
}

nav ul li a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
}

nav ul li a:hover {
  color: var(--color-accent2);
}

/* Hero Section */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(43, 10, 61, 0.8), rgba(43, 10, 61, 0.95));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin: 0 auto 2rem;
  max-width: 600px;
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent1), var(--color-accent2));
  border-radius: 10px;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.about-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 10px rgba(255, 94, 91, 0.2);
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: inset 0 0 15px rgba(185, 255, 102, 0.3);
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 10px rgba(255, 94, 91, 0.2);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: inset 0 0 15px rgba(185, 255, 102, 0.3);
}

.service-card h3 {
  margin-bottom: 1rem;
}

.price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-accent2);
  margin: 1.5rem 0;
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.benefit-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-accent1), var(--color-accent2));
  border-radius: 50%;
  color: var(--color-bg);
  font-size: 1.5rem;
}

/* Testimonials Section */
.testimonials-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 2rem;
  padding: 1rem 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  min-width: 300px;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
  scroll-snap-align: center;
  box-shadow: inset 0 0 10px rgba(255, 94, 91, 0.2);
}

.testimonial-card:hover {
  box-shadow: inset 0 0 15px rgba(185, 255, 102, 0.3);
}

.client-name {
  font-weight: 600;
  color: var(--color-accent2);
  margin-top: 1rem;
  display: block;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  padding: 1.2rem;
  cursor: pointer;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 94, 91, 0.3);
}

.faq-answer {
  padding: 0 1.2rem 1.2rem;
}

/* Contact Form Section */
.form-section {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

form .form-group {
  margin-bottom: 1.5rem;
}

form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

form input, 
form select, 
form textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid rgba(255, 94, 91, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #be4949;
  transition: all 0.3s ease;
}

form input:focus, 
form select:focus, 
form textarea:focus {
  border-color: var(--color-accent2);
  outline: none;
  box-shadow: 0 0 10px rgba(185, 255, 102, 0.3);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.checkbox-group input {
  width: auto;
  margin-top: 0.3rem;
}

/* Footer */
footer {
  background: rgba(43, 10, 61, 0.9);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid rgba(255, 94, 91, 0.3);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-info {
  margin-bottom: 1rem;
}

.footer-links h4 {
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.copyright {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(245, 233, 220, 0.7);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: rgba(43, 10, 61, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  z-index: 9999;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 94, 91, 0.3);
  transition: bottom 0.5s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.cookie-banner.show {
  bottom: 0;
}

.cookie-btn {
  padding: 0.5rem 1.2rem;
  white-space: nowrap;
}

/* Thank You Page */
.thank-you {
  text-align: center;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  background: url('./img/jrXZo4.jpg') center/cover no-repeat;
}

.thank-you::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(43, 10, 61, 0.85), rgba(43, 10, 61, 0.9));
  z-index: 1;
}

.thank-you .container {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 94, 91, 0.3);
  max-width: 600px;
}

.thank-you h1 {
  color: var(--color-accent2);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.thank-you p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.thank-you .btn {
  margin-top: 2rem;
  font-size: 1.1rem;
  padding: 1rem 2rem;
}

.thank-you-icons {
  margin: 2rem 0;
}

.thank-you-icons span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-accent1), var(--color-accent2));
  color: var(--color-bg);
  font-size: 2.5rem;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 94, 91, 0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(255, 94, 91, 0.5);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(185, 255, 102, 0.7);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(255, 94, 91, 0.5);
  }
}

/* Policy Pages */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.policy-content h2 {
  margin-top: 2rem;
}

/* Media Queries */
@media screen and (max-width: 768px) {
  body {
    padding-top: 3.5rem;
  }
  
  .hero {
    padding: 2rem 0;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .form-section {
    padding: 2rem;
  }
  
  nav ul {
    gap: 0.5rem;
  }
  
  .logo {
    font-size: 1rem;
  }
  
  header {
    padding: 0.3rem 0;
  }
}

@media screen and (max-width: 480px) {
  body {
    padding-top: 3.5rem;
  }
  
  .hero {
    padding: 1.5rem 0;
  }
  
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 1.7rem;
  }
  
  .logo {
    font-size: 1rem;
  }
  
  nav ul li a {
    font-size: 0.8rem;
  }
  
  header {
    padding: 0.3rem 0;
  }
  
  .form-section {
    padding: 1.5rem;
  }
  
  .testimonial-card {
    min-width: 250px;
  }
} 