/* Global Styles */
:root {
  --indigo: #1e1f3a;
  --gold: #ffcc00;
  --gray-white: #f4f4f4;
  --charcoal: #2a2a2a;
  --lime: #b2ff59;
  --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 40px;
}

section[id] {
  scroll-margin-top: 40px;
}

body {
  background-color: var(--gray-white);
  color: var(--charcoal);
  line-height: 1.6;
  font-size: 16px;
}

a {
  text-decoration: none;
  color: var(--indigo);
  transition: var(--transition);
}

a:hover {
  color: var(--gold);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--gold);
  color: var(--indigo);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  text-transform: uppercase;
}

.btn:hover {
  background-color: var(--indigo);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.section-title {
  font-size: 2.5rem;
  color: var(--indigo);
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 4px;
  background-color: var(--gold);
}

section {
  padding: 5rem 0;
}

/* Header Styles */
header {
  background-color: var(--indigo);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: lowercase;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
}

.menu-btn {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
}

.menu-btn span,
.menu-btn span::before,
.menu-btn span::after {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--gold);
  transition: var(--transition);
}

.menu-btn span {
  top: 9px;
}

.menu-btn span::before {
  content: "";
  top: -8px;
}

.menu-btn span::after {
  content: "";
  top: 8px;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  color: var(--gray-white);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.nav-links a:hover {
  color: var(--gold);
}

/* Hero Section */
.hero {
  background-image: linear-gradient(
      rgba(30, 31, 58, 0.7),
      rgba(30, 31, 58, 0.7)
    ),
    url("./img/Y5SYv.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--gray-white);
  text-align: center;
  padding: 10rem 0;
  display: flex;
  align-items: center;
  min-height: 80vh;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.3s;
  animation-fill-mode: both;
}

.hero-btn {
  animation: fadeInUp 1s ease 0.6s;
  animation-fill-mode: both;
}

/* About Section */
.about {
  background-color: var(--gray-white);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* Services Section */
.services {
  background-color: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  background-color: var(--gray-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  padding: 20px;
}

.service-title {
  color: var(--indigo);
  margin-bottom: 10px;
  font-size: 1.3rem;
}

/* Benefits Section */
.benefits {
  background-color: var(--indigo);
  color: white;
}

.benefits .section-title {
  color: white;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: var(--transition);
}

.benefit-item:hover {
  background-color: var(--gold);
  color: var(--indigo);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--gold);
}

.benefit-item:hover .benefit-icon {
  color: var(--indigo);
}

.benefit-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--gray-white);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 4rem;
  color: rgba(255, 204, 0, 0.2);
  font-family: Georgia, serif;
}

.testimonial-content {
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-name {
  font-weight: 600;
  color: var(--indigo);
}

.testimonial-role {
  color: var(--charcoal);
  font-size: 0.9rem;
}

/* How We Work */
.how-we-work {
  background-color: white;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.process-step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 20px;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 30%;
  right: 0;
  width: 50px;
  height: 2px;
  background-color: var(--gold);
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--gold);
  color: var(--indigo);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 15px;
}

.step-title {
  color: var(--indigo);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

/* FAQ Section */
.faq {
  background-color: var(--gray-white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.faq-question {
  background-color: var(--indigo);
  color: white;
  padding: 15px 20px;
  position: relative;
  cursor: pointer;
}

.faq-checkbox {
  display: none;
}

.faq-label {
  display: block;
  cursor: pointer;
  font-weight: 600;
  padding-right: 30px;
}

.faq-label::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  transition: var(--transition);
}

.faq-checkbox:checked + .faq-label::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background-color: white;
  transition: max-height 0.3s ease;
}

.faq-answer-content {
  padding: 20px;
}

.faq-checkbox:checked ~ .faq-answer {
  max-height: 500px;
}

/* Form Section */
.contact-form {
  background-color: white;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--gray-white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.form-row {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 5px;
  color: var(--indigo);
  font-weight: 600;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

.form-control:focus {
  border-color: var(--gold);
  outline: none;
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: "▼";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

select.form-control option {
  background-color: var(--gold);
  color: var(--indigo);
}

.checkbox-group {
  margin-top: 10px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  cursor: pointer;
}

.checkbox-label input {
  margin-right: 10px;
  margin-top: 5px;
}

.checkbox-text {
  font-size: 0.9rem;
}

.checkbox-text a {
  color: var(--indigo);
  font-weight: 600;
}

.form-submit {
  text-align: center;
  margin-top: 30px;
}

.error-text {
  color: #e53935;
  margin-top: 5px;
  font-size: 0.9rem;
}

/* Contact Section */
.contact {
  background-color: var(--gray-white);
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.contact-item {
  text-align: center;
}

.contact-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 15px;
}

.contact-item h4 {
  color: var(--indigo);
  margin-bottom: 10px;
}

.map-container {
  height: 400px;
  margin-top: 50px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
footer {
  background-color: var(--indigo);
  color: var(--gray-white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-column h3 {
  color: var(--gold);
  margin-bottom: 20px;
  position: relative;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--gold);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--gray-white);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-contact {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.footer-contact i {
  color: var(--gold);
  margin-right: 10px;
  margin-top: 5px;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

/* Thank You Page */
.thank-you {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--gray-white);
}

.thank-you-content {
  background-color: white;
  padding: 50px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-icon {
  color: var(--lime);
  font-size: 4rem;
  margin-bottom: 20px;
}

.thank-you-title {
  color: var(--indigo);
  margin-bottom: 15px;
}

/* Policy Pages */
.policy-page {
  padding: 5rem 0;
  background-color: var(--gray-white);
}

.policy-container {
  max-width: 900px;
  margin: 0 auto;
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  border: 1px solid #e0e0e0;
}

.policy-title {
  color: var(--indigo);
  margin-bottom: 30px;
  text-align: center;
}

.policy-section {
  margin-bottom: 30px;
}

.policy-section-title {
  color: var(--indigo);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background-color: var(--indigo);
  color: white;
  padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  transition: bottom 0.5s ease;
}

.cookie-popup.show {
  bottom: 0;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-text {
  flex: 1;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 8px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.accept-cookies {
  background-color: var(--gold);
  color: var(--indigo);
}

.accept-cookies:hover {
  background-color: var(--lime);
}

.reject-cookies {
  background-color: transparent;
  border: 1px solid white;
  color: white;
}

.reject-cookies:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .process-steps {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--indigo);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 50px;
    transition: left 0.3s ease;
    overflow-y: auto;
  }

  .nav-links li {
    margin: 15px 0;
  }

  .menu-toggle:checked ~ .nav-links {
    left: 0;
  }

  .menu-toggle:checked ~ .menu-btn span {
    background-color: transparent;
  }

  .menu-toggle:checked ~ .menu-btn span::before {
    transform: rotate(45deg);
    top: 0;
  }

  .menu-toggle:checked ~ .menu-btn span::after {
    transform: rotate(-45deg);
    top: 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}
