/* Global Styles */
:root {
  --primary-bg: #f5f9fc;
  --accent-color: #ff6b81;
  --dark-text: #1e1e1e;
  --light-text: #5c5c5c;
  --border-color: #dfe6e9;
  --button-gradient: linear-gradient(to right, #ff6b81, #ffc371);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", Arial, sans-serif;
  background-color: var(--primary-bg);
  color: var(--dark-text);
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 40px;
}

section[id] {
  scroll-margin-top: 40px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-padding {
  padding: 80px 0;
}

.text-center {
  text-align: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 20px;
  color: var(--dark-text);
}

p {
  margin-bottom: 20px;
  color: var(--light-text);
}

a {
  text-decoration: none;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--dark-text);
}

.footer p {
  color: #dfe6e9;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--button-gradient);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  color: white;
}

/* Header & Navigation */
.header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: var(--dark-text);
}

.nav-checkbox {
  display: none;
}

.nav-toggle {
  display: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--dark-text);
  margin: 5px 0;
  transition: all 0.3s ease;
}

.nav-menu {
  display: flex;
  list-style: none;
}

.nav-item {
  margin: 0 15px;
}

.nav-link {
  color: var(--dark-text);
  font-weight: 500;
}

.nav-link:hover {
  color: var(--accent-color);
}

/* Hero Section */
.hero {
  min-height: 80vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("./img/5gcYJ.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-content {
  color: white;
  max-width: 800px;
  margin: 5rem auto;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  color: white;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  color: white;
  margin-bottom: 30px;
}

/* About Section */
.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-text {
  flex: 1;
}

/* Benefits Section */
.benefits-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.benefit-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card img {
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
}

/* Services Section */
.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.service-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  padding: 20px;
}

/* Testimonials Section */
.testimonials-slider {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 20px;
  position: relative;
}

.testimonial-content {
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: bold;
}

/* FAQ Section */
.faq-container {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
}

.faq-checkbox {
  display: none;
}

.faq-question {
  display: block;
  padding: 15px 20px;
  background-color: white;
  font-weight: bold;
  cursor: pointer;
  position: relative;
}

.faq-question:after {
  content: "+";
  position: absolute;
  right: 20px;
  transition: all 0.3s ease;
}

.faq-checkbox:checked ~ .faq-question:after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: white;
  padding: 0 20px;
}

.faq-checkbox:checked ~ .faq-answer {
  max-height: 1000px;
  padding: 0 20px 15px;
}

/* CTA Section */
.cta {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("./img/kXfyL.jpg") center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 100px 0;
}

.cta h2,
.cta p {
  color: white;
}

/* Contact Form */
.contact-form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 16px;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
}

select.form-control option {
  background-color: #f8f8f8;
  color: var(--dark-text);
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.form-check-input {
  margin-right: 10px;
  margin-top: 5px;
}

.form-error {
  color: red;
  margin-top: 5px;
  font-size: 14px;
}

/* Thank You Page */
.thank-you {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 50px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background-color: white;
}

/* Policy Pages */
.policy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 20px;
}

.policy-content {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

.policy-content h1 {
  margin-bottom: 30px;
}

.policy-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

/* Footer */
.footer {
  background-color: var(--dark-text);
  color: white;
  padding: 50px 0 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.footer-col h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #dfe6e9;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-contact p {
  color: #dfe6e9;
  margin-bottom: 10px;
}

.footer-bottom {
  margin-top: 30px;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  z-index: 1001;
  display: none;
}

.cookie-popup.show {
  display: block;
}

.cookie-popup p {
  margin-bottom: 15px;
}

/* Media Queries */
@media (max-width: 768px) {
  /* Header & Navigation */
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: white;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
    transition: all 0.4s ease;
  }

  .nav-checkbox:checked ~ .nav-menu {
    left: 0;
  }

  .nav-checkbox:checked ~ .nav-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-checkbox:checked ~ .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .nav-checkbox:checked ~ .nav-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-item {
    margin: 15px 0;
  }

  /* About Section */
  .about-content {
    flex-direction: column;
  }

  /* Hero Section */
  .hero h1 {
    font-size: 36px;
  }

  /* Footer */
  .footer-container {
    grid-template-columns: 1fr;
  }
}
