@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Sora:wght@100..800&family=Underdog&display=swap');

* {
    margin: 0; 
    padding: 0; 
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
    list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  height: auto;
  padding: 0;
  margin: 0;
}

button {
  cursor: pointer;
}

address {
  font-style: normal;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
  font-family: 'Playfair Display', sans-serif;
  margin: 0;
  height: 100%;
  background-color: #ffffff;
}

/* slider */

.swiper-slide img {
    width: 100%;
    height: 249px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  background-color: #1b1f3b;
  padding: 2rem;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #d1b3ff;
  color: #1b1f3b;
}

.swiper-slide-second {
  max-width: 300px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  background: #ffffff;
  color: #fff;
  position: relative;
  z-index: 1000;
}

header img {
    width: 60px;
    height: 60px;
}

header a {
    color: #000000;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}


header .logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #16501d;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

header .logo img {
  width: 35px;
  height: 35px;
  object-fit: contain;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-menu li a {
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
  padding: 6px 8px;
  border-radius: 4px;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: #f7c600;
  background-color: rgba(247, 198, 0, 0.15);
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: none;
    flex-direction: column;
    gap: 4px;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #000000;
}

.mobile-menu .close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    user-select: none;
    color: black;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: #fff;
    padding: 60px 20px 20px 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    z-index: 1000;
    overflow-y: auto;
}

.mobile-menu.show {
    display: block;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.mobile-menu li {
    margin: 20px 0;
}

.mobile-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 1.2rem;
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }

    .mobile-menu {
        display: none !important;
    }

    .nav-menu {
        display: flex;
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
}

.hero {
  position: relative;
  background-image: url(/assets/img/bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  text-align: center;
  padding: 200px 20px;
  overflow: hidden;

}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero h1 {
  position: relative;
  z-index: 2;
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  position: relative;
  z-index: 2;
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 30px;
}

.hero a {
  position: relative;
  z-index: 2;
  background-color: #fff;
  color: #333;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s;
}

.hero a:hover {
  background-color: #333;
  color: #fff;
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 15px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

.about {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about img {
  width: 100%;
  max-width: 300px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  object-fit: cover;
}

.about_text {
  flex: 1 1 400px;
  max-width: 600px;
}

.about_text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #333;
}

.about_text p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .about {
    flex-direction: column;
    text-align: center;
  }

  .about img {
    max-width: 300px;
  }

  .about_text h2 {
    font-size: 1.8rem;
  }

  .about_text p {
    font-size: 1rem;
  }
}

.cta {
  background: #ff9090;
  color: #000000;
  text-align: center;
  padding: 80px 20px;
  border-radius: 20px;
  margin: 60px 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cta h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  line-height: 1.3;
}

.cta a {
  background-color: #d6d6d6;
  color: #000000;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  display: inline-block;
  transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.cta a:hover {
  background-color: #1e3c72;
  color: #fff;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .cta {
    padding: 60px 15px;
  }

  .cta h2 {
    font-size: 1.8rem;
  }

  .cta a {
    padding: 10px 24px;
    font-size: 1rem;
  }
}

.offer {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.offer h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: #333;
}

.offer p {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.offer ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.offer li {
  background: #fff;
  border-radius: 16px;
  padding: 25px 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.offer li:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.offer li img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 auto;
  margin-bottom: 15px;
}

.offer li h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: #1e3c72;
}

.offer li p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .offer h2 {
    font-size: 2rem;
  }

  .offer p {
    font-size: 1rem;
  }

  .offer li h3 {
    font-size: 1.3rem;
  }
}

.gallery {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.gallery h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  color: #333;
}

.gallery p {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .gallery h2 {
    font-size: 2rem;
  }

  .gallery p {
    font-size: 1rem;
  }
}

footer {
  background-color: #ffffff;
  color: #fff;
  padding: 50px 20px;
  text-align: center;
  border-top: 1px solid black;
}

footer a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

footer a:hover {
  color: #ffd700;
}

footer img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 8px;
}

footer > a {
  display: inline-flex;
  align-items: center;
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 25px;
}

.footer-menu,
.footer-privacy {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 15px 0;
  padding: 0;
  list-style: none;
}

.footer-menu li,
.footer-privacy li {
  margin: 5px 10px;
}

footer p {
  margin-top: 25px;
  font-size: 0.95rem;
  color: #ccc;
}

@media (max-width: 768px) {
  footer > a {
    flex-direction: column;
    font-size: 1.1rem;
  }

  .footer-menu,
  .footer-privacy {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  footer img {
    margin-right: 0;
    margin-bottom: 8px;
  }
}

.privacy {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 20px;
  color: #333;
  line-height: 1.7;
  font-size: 1.05rem;
}

.privacy h2 {
  font-size: 2.4rem;
  color: #1e3c72;
  margin-bottom: 30px;
  text-align: center;
}

.privacy h3 {
  font-size: 1.6rem;
  color: #1e3c72;
  margin-top: 40px;
  margin-bottom: 15px;
}

.privacy p {
  margin-bottom: 20px;
  color: #555;
}

.privacy ul {
  padding-left: 20px;
  margin-top: 10px;
}

.privacy ul li {
  margin-bottom: 10px;
  list-style-type: disc;
  color: #444;
}

.privacy strong {
  color: #000;
}

.privacy p br {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .privacy {
    padding: 50px 15px;
    font-size: 1rem;
  }

  .privacy h2 {
    font-size: 2rem;
  }

  .privacy h3 {
    font-size: 1.4rem;
  }
}

.contact {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 4rem 2rem;
    background-color: #f9f9f9;
    flex-direction: row;
}

@media (max-width: 728px) {
    .contact {
        flex-direction: column;
    }
}



.contact-form {
    flex: 1 1 350px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.contact-form h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}

.contact-form .form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 1rem;
    font-size: 1rem;
    margin-bottom: 20px;
}

.contact-form .form-row input {
    flex: 1 1 calc(50% - 0.5rem);
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    border: none;
    background-color: #a00000;
    color: #fff;
    font-size: 1rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #c20000;
}


.thank-you-popup {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.thank-you-popup.show {
    opacity: 1;
    pointer-events: all;
}

.thank-you-popup .popup-content {
    background: #fff;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    max-width: 300px;
}

.thank-you-popup p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.thank-you-popup button {
    padding: 0.5rem 1rem;
    border: none;
    background-color: #a00000;
    color: #fff;
    border-radius: 1rem;
    cursor: pointer;
}


.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 0 15px rgba(0,0,0,0.15);
    max-width: 90%;
    width: 400px;
    font-size: 0.95rem;
    color: #333;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cookie-popup.show {
    opacity: 1;
    pointer-events: all;
}

.cookie-popup p {
    margin-bottom: 1rem;
    line-height: 1.5;
}

.cookie-popup a {
    color: #a00000;
    text-decoration: underline;
}

.cookie-popup button {
    padding: 0.5rem 1.2rem;
    border: none;
    background-color: #a00000;
    color: #fff;
    border-radius: 1rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.cookie-popup button:hover {
    background-color: #c20000;
}


.how-it-works {
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
}

.how-it-works h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #222;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.step h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #e63946;
}

.step p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 600px) {
    .how-it-works h2 {
        font-size: 2rem;
    }

    .step {
        padding: 20px 15px;
    }

    .step h3 {
        font-size: 1.5rem;
    }

    .step p {
        font-size: 0.95rem;
    }
}


.testimonials {
    padding: 60px 20px;
    background: #fff;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #222;
}

.testimonial-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    background: #f9f9f9;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.testimonial h3 {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.6;
}

.testimonial p {
    font-weight: bold;
    color: #555;
    font-size: 1rem;
}


@media (max-width: 600px) {
    .testimonials h2 {
        font-size: 2rem;
    }

    .testimonial h3 {
        font-size: 1rem;
    }

    .testimonial p {
        font-size: 0.9re
    }
  }