/* Global Styles */
:root {
  --turquoise: #2bc0e4;
  --light-yellow: #eaecc6;
  --fuchsia: #ff4081;
  --lime: #c6ff00;
  --graphite: #212121;
  --white: #ffffff;
  --sky-gray: #eceff1;
  --text-dark: #263238;
  --text-light: #ffffff;
}

* {
  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: "Roboto", "Arial", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
}

a {
  text-decoration: none;
  color: var(--turquoise);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--fuchsia);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background: linear-gradient(135deg, var(--turquoise), #606051);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* Navigation */
.nav-container {
  position: relative;
}

.burger-checkbox {
  display: none;
}

.burger-label {
  display: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.burger-label span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--white);
  margin: 5px 0;
  transition: all 0.3s ease;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 1.5rem;
}

nav ul li a {
  color: var(--white);
  font-weight: 500;
  position: relative;
}

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--white);
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  height: 80vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("./img/Ry6EX.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
  display: flex;
  align-items: center;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--fuchsia);
  color: var(--white);
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn:hover {
  background: var(--lime);
  color: var(--graphite);
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* About Section */
.about {
  padding: 5rem 0;
  background-color: var(--white);
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--turquoise), var(--light-yellow));
  margin: 0.8rem auto;
}

.about-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  height: 400px;
  background: url("./img/CAuOd.jpg") center/cover no-repeat;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
  padding: 5rem 0;
  background-color: var(--sky-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-img {
  height: 200px;
  width: 100%;
  background-size: cover;
  background-position: center;
}

.service-content {
  padding: 1.5rem;
}

.service-content h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: var(--turquoise);
}

/* Benefits Section */
.benefits {
  padding: 5rem 0;
  background-color: var(--white);
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-item {
  text-align: center;
  padding: 2rem;
  border-radius: 10px;
  background-color: var(--sky-gray);
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
}

.benefit-item img {
  width: 80px;
  margin-bottom: 1rem;
}

.benefit-item h3 {
  margin-bottom: 1rem;
  color: var(--turquoise);
}

/* How We Work Section */
.how-we-work {
  padding: 5rem 0;
  background-color: var(--sky-gray);
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.step {
  flex: 1;
  min-width: 250px;
  margin: 1rem;
  padding: 2rem;
  background-color: var(--white);
  border-radius: 10px;
  text-align: center;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--turquoise), #606051);
  border-radius: 50%;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.faq {
  padding: 5rem 0;
  background-color: var(--white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
}

.faq-checkbox {
  display: none;
}

.faq-label {
  display: block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--turquoise), #606051);
  color: var(--white);
  cursor: pointer;
  position: relative;
  font-weight: 500;
  border-radius: 10px;
}

.faq-label::after {
  content: "+";
  position: absolute;
  right: 2rem;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  background-color: var(--sky-gray);
  transition: max-height 0.3s ease;
}

.faq-text {
  padding: 0 2rem;
  margin: 0;
  height: 0;
}

.faq-checkbox:checked ~ .faq-label::after {
  transform: rotate(45deg);
}

.faq-checkbox:checked ~ .faq-content {
  max-height: 500px;
}

.faq-checkbox:checked ~ .faq-content .faq-text {
  padding: 2rem;
  height: auto;
}

/* Form Section */
.contact-form {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--turquoise), #606051);
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--white);
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-title {
  margin-bottom: 2rem;
  text-align: center;
  color: var(--turquoise);
}

.input-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 500;
}

.form-input,
.form-select {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid var(--sky-gray);
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--turquoise);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23263238%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  background-size: 12px;
  padding-right: 2.5rem;
}

.checkbox-group {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
}

.checkbox-input {
  margin-right: 10px;
  margin-top: 5px;
}

.checkbox-label {
  flex: 1;
  font-size: 0.9rem;
}

.checkbox-label a {
  text-decoration: underline;
}

.submit-container {
  text-align: center;
  margin-top: 2rem;
}

/* Footer */
footer {
  background-color: var(--graphite);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-section h3 {
  color: var(--turquoise);
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-section h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--turquoise);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--sky-gray);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--turquoise);
}

.contact-info {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
}

.contact-info i {
  margin-right: 10px;
  color: var(--turquoise);
}

.copyright {
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(33, 33, 33, 0.95);
  color: var(--white);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1001;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.cookie-popup.show {
  transform: translateY(0);
}

.cookie-text {
  margin-right: 2rem;
}

.cookie-btn {
  white-space: nowrap;
}

/* Policy Pages */
.policy-container {
  max-width: 800px;
  margin: 3rem auto;
  padding: 3rem;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.policy-title {
  margin-bottom: 2rem;
  color: var(--turquoise);
  text-align: center;
}

.policy-content h2 {
  color: var(--turquoise);
  margin: 2rem 0 1rem;
}

.policy-content p,
.policy-content ul,
.policy-content ol {
  margin-bottom: 1.5rem;
}

.policy-content ul,
.policy-content ol {
  padding-left: 2rem;
}

/* Thank You Page */
.thank-you {
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thank-you-container {
  max-width: 600px;
  margin: 5rem auto;
  padding: 3rem;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.thank-you h1 {
  color: var(--turquoise);
  margin-bottom: 1rem;
}

.thank-you p {
  margin-bottom: 2rem;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .container {
    padding: 0 15px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0.8rem;
  }

  .burger-label {
    display: block;
  }

  .nav-container nav {
    position: absolute;
    top: 100%;
    right: 0;
    width: 250px;
    background: linear-gradient(135deg, var(--turquoise), #606051);
    padding: 1rem 0;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .burger-checkbox:checked ~ nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .burger-checkbox:checked ~ .burger-label span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .burger-checkbox:checked ~ .burger-label span:nth-child(2) {
    opacity: 0;
  }

  .burger-checkbox:checked ~ .burger-label span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  nav ul {
    flex-direction: column;
  }

  nav ul li {
    margin: 0;
  }

  nav ul li a {
    display: block;
    padding: 0.8rem 2rem;
  }

  .hero {
    height: 60vh;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .about-content {
    flex-direction: column;
  }

  .about-image {
    width: 100%;
  }

  .cookie-popup {
    flex-direction: column;
    text-align: center;
  }

  .cookie-text {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.8rem;
  }

  .btn {
    padding: 0.6rem 1.5rem;
  }

  .form-container {
    padding: 1.5rem;
  }
}
