/* Global Styles */
:root {
  --background: #101820;
  --text: #e0e0e0;
  --headings: #ffffff;
  --accent-gold: #ffd700;
  --accent-turquoise: #00ffc6;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 40px;
}

body {
  background-color: var(--background);
  color: var(--text);
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

section[id] {
  scroll-margin-top: 40px;
}

div {
  word-break: break-word;
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--headings);
  margin-bottom: 1rem;
  font-weight: 700;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--accent-gold),
    var(--accent-turquoise)
  );
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--accent-turquoise);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-gold);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.btn {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(
    90deg,
    var(--accent-gold),
    var(--accent-turquoise)
  );
  color: var(--background);
  border: none;
  border-radius: 5px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  color: var(--background);
}

.section-padding {
  padding: 6rem 0;
}

.text-center {
  text-align: center;
}

/* Header & Navigation */
header {
  background-color: rgba(16, 24, 32, 0.9);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(
    90deg,
    var(--accent-gold),
    var(--accent-turquoise)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: lowercase;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: var(--text);
  font-weight: 500;
  position: relative;
}

nav a:hover {
  color: var(--accent-turquoise);
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--accent-gold),
    var(--accent-turquoise)
  );
  transition: var(--transition);
}

nav a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  min-height: 90vh;
  background-image: linear-gradient(
      rgba(16, 24, 32, 0.7),
      rgba(16, 24, 32, 0.9)
    ),
    url("./img/GXl0b.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero-content {
  width: 100%;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  animation: fadeInDown 1s ease;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease;
}

.hero .btn {
  animation: fadeInUp 1.2s ease;
}

/* About Section */
.about {
  position: relative;
  overflow: hidden;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-image img {
  width: 100%;
  height: auto;
  transition: var(--transition);
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-text h2 {
  text-align: left;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 3rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-color: var(--accent-turquoise);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-content {
  padding: 1.5rem;
}

.service-content h3 {
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 10px;
}

.service-content h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--accent-gold),
    var(--accent-turquoise)
  );
}

/* Benefits Section */
.benefits {
  position: relative;
}

.benefits-container {
  position: relative;
  z-index: 1;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 3rem;
}

.benefit-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 2rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.benefit-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent-turquoise);
}

.benefit-icon {
  margin-bottom: 1.5rem;
  font-size: 4rem;
  line-height: 1;
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 3rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 2rem;
  position: relative;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 4rem;
  color: rgba(255, 215, 0, 0.2);
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonial-author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author-info h4 {
  margin-bottom: 0.2rem;
  font-size: 1rem;
}

.testimonial-author-info p {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.7;
}

/* Steps Section */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 3rem;
  counter-reset: step-counter;
}

.step-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 2rem;
  position: relative;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
  counter-increment: step-counter;
}

.step-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-turquoise);
}

.step-card::before {
  content: counter(step-counter);
  position: absolute;
  top: -15px;
  left: 20px;
  background: linear-gradient(
    90deg,
    var(--accent-gold),
    var(--accent-turquoise)
  );
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--background);
}

.step-card h3 {
  margin-bottom: 1rem;
}

/* Form Section */
.form-section {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  padding: 3rem 2rem;
  margin: 3rem auto;
  max-width: 800px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-turquoise);
  background: rgba(255, 255, 255, 0.15);
}

.form-select {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23E0E0E0' 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 15px center;
}

.form-select:focus {
  outline: none;
  border-color: var(--accent-turquoise);
  background-color: rgba(255, 255, 255, 0.15);
}

.form-select option {
  background-color: var(--background);
  color: var(--text);
  padding: 12px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 0.25rem;
  margin-right: 0.5rem;
  accent-color: var(--accent-turquoise);
}

.btn-submit {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Contact Section */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  margin-right: 1rem;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--accent-gold),
    var(--accent-turquoise)
  );
  border-radius: 50%;
  font-size: 1.5rem;
}

.contact-text {
  flex-grow: 1;
}

.contact-text h4 {
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.contact-map {
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
footer {
  background: rgba(0, 0, 0, 0.2);
  padding: 3rem 0 1rem;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column h3 {
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--accent-gold),
    var(--accent-turquoise)
  );
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--text);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-turquoise);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background: rgba(16, 24, 32, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: bottom 0.5s ease;
}

.cookie-popup.show {
  bottom: 0;
}

.cookie-content {
  flex-grow: 1;
  padding-right: 2rem;
}

.cookie-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.cookie-content p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

/* Policy Pages */
.policy-container {
  max-width: 900px;
  margin: 8rem auto 5rem;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.policy-container h1 {
  margin-bottom: 2rem;
  text-align: center;
}

.policy-container h2 {
  margin-top: 2rem;
}

.policy-container ul,
.policy-container ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

/* Thank You Page */
.thank-you {
  max-width: 700px;
  margin: 8rem auto 5rem;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--accent-turquoise);
  border-radius: 10px;
  text-align: center;
}

.thank-you h1 {
  margin-bottom: 1.5rem;
  color: var(--accent-turquoise);
}

.thank-you .icon {
  font-size: 5rem;
  margin-bottom: 2rem;
  color: var(--accent-gold);
}

/* FAQ Section (using checkbox hack) */
.faq-container {
  margin: 3rem 0;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  overflow: hidden;
}

.faq-question {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-toggle {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(255, 255, 255, 0.02);
}

.faq-toggle:checked ~ .faq-content {
  max-height: 500px;
}

.faq-toggle:checked ~ .faq-question::after {
  content: "−";
}

.faq-answer {
  padding: 1rem;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Media Queries */
@media (max-width: 992px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle-label {
    display: block;
    position: relative;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    height: 21px;
  }

  .nav-toggle-label span,
  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: linear-gradient(
      90deg,
      var(--accent-gold),
      var(--accent-turquoise)
    );
    border-radius: 9px;
    transition: all 0.3s ease-in-out;
  }

  .nav-toggle-label span {
    top: 9px;
  }

  .nav-toggle-label span::before {
    content: "";
    top: -9px;
  }

  .nav-toggle-label span::after {
    content: "";
    bottom: -9px;
  }

  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(16, 24, 32, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  nav a {
    font-size: 1.5rem;
  }

  .nav-toggle:checked ~ nav {
    transform: translateY(0);
  }

  .nav-toggle:checked ~ .nav-toggle-label span {
    background: transparent;
  }

  .nav-toggle:checked ~ .nav-toggle-label span::before {
    transform: rotate(45deg);
    top: 0;
  }

  .nav-toggle:checked ~ .nav-toggle-label span::after {
    transform: rotate(-45deg);
    bottom: 0;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .cookie-popup {
    flex-direction: column;
    text-align: center;
  }

  .cookie-content {
    padding-right: 0;
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .section-padding {
    padding: 4rem 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .policy-container,
  .thank-you {
    padding: 2rem;
    margin: 6rem auto 3rem;
  }
}
