/* Global Styles */
:root {
  --emerald: #0f3b28;
  --mint-gray: #b1cfc6;
  --coral: #ff6240;
  --dark-graphite: #1f1f1f;
  --neon-yellow: #f1ff4e;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --font-main: "Montserrat", sans-serif;
  --transition: all 0.3s ease-in-out;
}

* {
  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: var(--font-main);
  color: var(--dark-graphite);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--emerald);
  position: relative;
  text-align: center;
}

.section-title:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--coral);
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--coral);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.btn:hover {
  background-color: var(--emerald);
  transform: translateY(-2px);
}

/* Header */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  position: relative;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--emerald);
  text-transform: lowercase;
  letter-spacing: -1px;
  z-index: 101;
}

.logo span {
  color: var(--coral);
}

/* Mobile Menu Button */
.menu-toggle {
  display: none; /* Hide the checkbox */
}

.menu-button {
  display: none;
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 102;
  cursor: pointer;
}

.menu-icon {
  display: block;
  position: relative;
  width: 100%;
  height: 3px;
  background-color: var(--emerald);
  transition: var(--transition);
  top: 13px;
}

.menu-icon:before,
.menu-icon:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--emerald);
  transition: var(--transition);
}

.menu-icon:before {
  top: -8px;
}

.menu-icon:after {
  top: 8px;
}

/* Menu Icon Animation */
.menu-toggle:checked + .menu-button .menu-icon {
  background-color: transparent;
}

.menu-toggle:checked + .menu-button .menu-icon:before {
  transform: rotate(45deg);
  top: 0;
}

.menu-toggle:checked + .menu-button .menu-icon:after {
  transform: rotate(-45deg);
  top: 0;
}

/* Navigation */
.main-nav {
  transition: var(--transition);
}

.nav-list {
  display: flex;
  gap: 25px;
}

.nav-link {
  font-weight: 500;
  color: var(--dark-graphite);
  position: relative;
  padding: 5px 0;
}

.nav-link:after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--coral);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--coral);
}

.nav-link:hover:after {
  width: 100%;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .menu-button {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 100;
    transition: right 0.3s ease-in-out;
    padding-top: 70px;
  }

  .menu-toggle:checked ~ .main-nav {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .nav-list li {
    width: 100%;
    text-align: center;
  }

  .nav-link {
    display: block;
    padding: 15px 0;
    font-size: 1.1rem;
  }

  .nav-link:after {
    display: none;
  }

  .feature-item {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .cta-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .form-container {
    padding: 25px;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Hero Section */
.hero {
  min-height: 80vh;
  background-color: var(--emerald);
  background-image: url("./img/BlPqI.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(15, 59, 40, 0.9),
    rgba(15, 59, 40, 0.7)
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero h1 span {
  color: var(--neon-yellow);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-btn {
  background-color: var(--coral);
  padding: 15px 35px;
  font-size: 1.1rem;
}

/* About Section */
.about {
  padding: 100px 0;
  background-color: var(--white);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
  padding: 100px 0;
  background-color: var(--light-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-img {
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-content {
  padding: 25px;
}

.service-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--emerald);
}

/* Why Us Section */
.why-us {
  padding: 100px 0;
  background-color: var(--mint-gray);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.feature-item {
  background-color: var(--white);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: var(--transition);
}

.feature-item:hover {
  transform: scale(1.05);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--mint-gray);
  border-radius: 50%;
}

.feature-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--emerald);
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background-color: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: var(--light-gray);
  padding: 30px;
  border-radius: 10px;
  position: relative;
}

.testimonial-card:before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 4rem;
  color: var(--coral);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-text {
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: var(--emerald);
}

/* Form Section */
.contact-form {
  padding: 100px 0;
  background-color: var(--light-gray);
  background-image: url("./img/bSTuF.jpg");
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  position: relative;
}

.contact-form:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  z-index: 1;
}

.contact-form .container {
  position: relative;
  z-index: 2;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-top: 5px solid var(--coral);
}

.form-error {
  padding: 12px 15px;
  background-color: rgba(255, 98, 64, 0.1);
  border-left: 4px solid var(--coral);
  margin-bottom: 25px;
  border-radius: 4px;
}

.form-error ul {
  list-style-type: disc;
  padding-left: 20px;
  color: var(--coral);
  margin: 0;
}

.custom-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.form-group {
  margin-bottom: 0;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--emerald);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  font-size: 1rem;
  border: 2px solid var(--mint-gray);
  border-radius: 8px;
  transition: var(--transition);
  background-color: rgba(177, 207, 198, 0.1);
}

.form-control:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(15, 59, 40, 0.15);
  outline: none;
  background-color: #fff;
}

/* Custom Select Styles */
.custom-select-wrapper {
  position: relative;
  width: 100%;
}

.custom-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%230f3b28' 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;
  padding-right: 45px;
}

.custom-select option {
  background-color: var(--light-gray);
  color: var(--dark-graphite);
  padding: 12px;
}

.custom-select option:checked,
.custom-select option:hover {
  background-color: var(--mint-gray);
  color: var(--emerald);
}

/* New Checkbox Styles */
.new-checkbox {
  position: relative;
  margin-top: 10px;
}

.new-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.new-checkbox label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  user-select: none;
  font-size: 0.9rem;
  color: var(--dark-graphite);
}

.check-box {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  background-color: rgba(177, 207, 198, 0.2);
  border: 2px solid var(--mint-gray);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

/* SVG Checkmark */
.checkmark {
  width: 100%;
  height: 100%;
  fill: #ffffff;
  visibility: hidden;
  transform-origin: center;
  transform: scale(0);
  transition: all 0.2s ease-out;
}

.new-checkbox input:focus + label .check-box {
  box-shadow: 0 0 0 3px rgba(255, 98, 64, 0.3);
}

.new-checkbox input:hover + label .check-box {
  border-color: var(--coral);
}

.new-checkbox input:checked + label .check-box {
  background-color: var(--coral);
  border-color: var(--coral);
}

.new-checkbox input:checked + label .checkmark {
  visibility: visible;
  transform: scale(0.7);
}

.checkbox-text {
  font-size: 0.9rem;
  color: var(--dark-graphite);
  line-height: 1.5;
  padding-top: 2px;
}

.checkbox-text a {
  color: var(--coral);
  text-decoration: underline;
  transition: var(--transition);
}

.checkbox-text a:hover {
  color: var(--emerald);
}

.submit-btn {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  background-color: var(--coral);
  color: var(--white);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 10px;
  box-shadow: 0 4px 15px rgba(255, 98, 64, 0.3);
}

.submit-btn:hover {
  background-color: var(--emerald);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 59, 40, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(15, 59, 40, 0.2);
}

/* FAQ Section */
.faq {
  padding: 100px 0;
  background-color: var(--white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--mint-gray);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  position: relative;
  padding: 20px 20px 20px 50px;
  cursor: pointer;
  font-weight: 600;
  color: var(--emerald);
  background-color: var(--light-gray);
  display: block;
}

.faq-question:before {
  content: "+";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--coral);
}

.faq-checkbox {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-checkbox:checked ~ .faq-content {
  max-height: 500px;
}

.faq-checkbox:checked ~ .faq-question:before {
  content: "−";
}

.faq-answer {
  padding: 0 20px 20px 50px;
  color: var(--dark-graphite);
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background-color: var(--mint-gray);
}

.contact-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--emerald);
}

.contact-details {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.contact-text {
  line-height: 1.4;
}

.contact-text strong {
  display: block;
  color: #ff845c;
}

.contact-map {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  overflow: hidden;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */
footer {
  background-color: var(--dark-graphite);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: lowercase;
}

.footer-logo span {
  color: var(--coral);
}

.footer-about {
  max-width: 300px;
}

.footer-links h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--coral);
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: var(--light-gray);
  opacity: 0.8;
  transition: var(--transition);
}

.footer-links ul li a:hover {
  opacity: 1;
  color: var(--coral);
  padding-left: 5px;
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  background-color: var(--dark-graphite);
  color: var(--white);
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
  transition: bottom 0.5s ease;
}

.cookie-visible {
  bottom: 0;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-text {
  flex: 1;
  min-width: 200px;
}

.cookie-text p {
  margin-bottom: 0;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 8px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
}

.cookie-accept {
  background-color: var(--coral);
  color: var(--white);
}

.cookie-more {
  background-color: transparent;
  border: 1px solid var(--white);
  color: var(--white);
}

/* Thank You Page */
.thank-you {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 50px 20px;
}

.thank-you-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  border: 2px solid var(--emerald);
  border-radius: 10px;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background-color: var(--mint-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  color: var(--emerald);
  font-size: 2.5rem;
}

.thank-you h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--emerald);
}

.thank-you p {
  margin-bottom: 30px;
}

/* Policy Pages */
.policy-page {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.policy-container {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--white);
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  word-break: break-word;
  overflow-wrap: break-word;
}

.policy-container h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: var(--emerald);
  text-align: center;
}

.policy-content h2 {
  font-size: 1.8rem;
  margin: 40px 0 20px;
  color: var(--emerald);
}

.policy-content p {
  margin-bottom: 20px;
}

.policy-content ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.policy-content ul li {
  margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .about-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .cta-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .form-container {
    padding: 25px;
  }

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
