/* Global Styles */
:root {
  --bg-color: #0d0d1c;
  --accent-aqua: #1fffc1;
  --accent-azure: #00d9ff;
  --accent-yellow: #fff936;
  --text-white: #ffffff;
  --text-gray: #c0c0c0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 40px;
}

section[id] {
  scroll-margin-top: 40px;
}

body {
  font-family: "Montserrat", Arial, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-white);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1,
h2,
h3,
h4 {
  margin-bottom: 1rem;
}

a {
  color: var(--accent-aqua);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-azure);
}

p {
  margin-bottom: 1rem;
}

section {
  padding: 5rem 0;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(
    to right,
    var(--accent-aqua),
    var(--accent-azure)
  );
  color: var(--bg-color);
  font-weight: bold;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  color: var(--bg-color);
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--accent-aqua),
    var(--accent-azure)
  );
}

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  background-color: rgba(13, 13, 28, 0.95);
  z-index: 1000;
  backdrop-filter: blur(5px);
  border-bottom: 1px solid rgba(31, 255, 193, 0.2);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-white);
  position: relative;
}

.logo::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    to right,
    var(--accent-aqua),
    var(--accent-azure)
  );
}

#burger-toggle {
  display: none;
}

.burger-menu {
  display: none;
  cursor: pointer;
}

.burger-menu span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background-color: var(--text-white);
  transition: all 0.3s ease;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: var(--text-white);
  position: relative;
}

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(
    to right,
    var(--accent-aqua),
    var(--accent-azure)
  );
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 13, 28, 0.7);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(
    to right,
    var(--accent-aqua),
    var(--accent-azure)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: fadeIn 1s ease-out;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--text-white);
  animation: fadeIn 1s ease-out 0.3s both;
}

/* About Section */
.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(31, 255, 193, 0.1);
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    to right,
    var(--accent-aqua),
    var(--accent-azure)
  );
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
  margin-bottom: 20px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon img {
  max-height: 100%;
}

.benefit-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(31, 255, 193, 0.1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--accent-aqua);
}

.service-description {
  color: var(--text-gray);
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-button {
  align-self: flex-start;
  margin-top: auto;
}

/* Testimonials Section */
.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonial {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(31, 255, 193, 0.1);
  margin: 20px auto;
  max-width: 600px;
}

.testimonial-content {
  margin-bottom: 20px;
  font-style: italic;
  color: var(--text-gray);
}

.testimonial-author {
  font-weight: bold;
  color: var(--accent-aqua);
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid rgba(31, 255, 193, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  position: relative;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  display: block;
  width: 100%;
  text-align: left;
  color: var(--text-white);
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-checkbox {
  display: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-gray);
}

.faq-checkbox:checked + .faq-question::after {
  transform: rotate(45deg);
}

.faq-checkbox:checked + .faq-question {
  background: rgba(31, 255, 193, 0.1);
}

.faq-checkbox:checked ~ .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 20px;
}

/* Form Section */
.form-section {
  max-width: 600px;
  margin: 5rem auto;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  padding: 40px;
  border: 1px solid rgba(31, 255, 193, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-white);
}

.form-input,
.form-select {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(31, 255, 193, 0.3);
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  transition: border-color 0.3s ease;
}

.form-select option {
  background-color: var(--bg-color);
  color: var(--text-white);
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--accent-aqua);
}

.form-checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.form-checkbox {
  margin-right: 10px;
}

.form-submit {
  width: 100%;
  padding: 15px;
  background: linear-gradient(
    to right,
    var(--accent-aqua),
    var(--accent-azure)
  );
  color: var(--bg-color);
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.contact-item {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(31, 255, 193, 0.1);
}

.contact-icon {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--accent-aqua);
}

.contact-text {
  color: var(--text-gray);
}

.map-container {
  margin-top: 40px;
  border-radius: 10px;
  overflow: hidden;
  height: 300px;
}

/* Footer */
footer {
  background: rgba(0, 0, 0, 0.3);
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-column h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--accent-aqua);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-gray);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-aqua);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  color: var(--text-gray);
}

/* Thank You Page */
.gracias-container {
  margin: 5rem auto;
  border: 2px solid #1fffc1;
  padding: 2rem;
  max-width: 600px;
  text-align: center;
}

/* Policy Pages */
.policy-container {
  margin: 3rem auto;
  max-width: 800px;
  border: 1px solid rgba(31, 255, 193, 0.3);
  padding: 2rem;
  border-radius: 10px;
}

.policy-title {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(31, 255, 193, 0.3);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(13, 13, 28, 0.95);
  padding: 20px;
  z-index: 9999;
  display: none;
  border-top: 1px solid rgba(31, 255, 193, 0.3);
  backdrop-filter: blur(5px);
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-text {
  flex-grow: 1;
  margin-right: 20px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 8px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: linear-gradient(
    to right,
    var(--accent-aqua),
    var(--accent-azure)
  );
  color: var(--bg-color);
  border: none;
}

.cookie-more {
  background: transparent;
  border: 1px solid var(--accent-aqua);
  color: var(--accent-aqua);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .burger-menu {
    display: block;
  }

  nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(13, 13, 28, 0.95);
    overflow: hidden;
    transition: height 0.3s ease;
    z-index: 999;
  }

  #burger-toggle:checked ~ nav {
    height: calc(100vh - 70px);
  }

  nav ul {
    flex-direction: column;
    padding: 20px;
  }

  nav ul li {
    margin: 15px 0;
  }

  nav ul li a {
    display: block;
    padding: 10px 0;
  }

  #burger-toggle:checked + .burger-menu span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  #burger-toggle:checked + .burger-menu span:nth-child(2) {
    opacity: 0;
  }

  #burger-toggle:checked + .burger-menu span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-text {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
