@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&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%;
    width: 100%;
    scroll-behavior: smooth;
    font-family: "Open Sans", sans-serif;
}

body {
    font-family: "Open Sans", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}
  
img {
    display: block;
    height: auto;
    padding: 0;
    margin: 0;
}
  
address {
    font-style: normal;
}
  
html {
    height: 100%;
    scroll-behavior: smooth;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #c76c10;
  padding: 10px 20px;
  position: relative;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.2rem;
}

.logo img {
  width: 40px;
  height: 40px;
}

.menu-toggle {
  background: none;
  border: none;
  font-size: 28px;
  color: #ffffff;
  cursor: pointer;
  display: none;
}

.nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  transition: color 0.3s;
}

.nav a:hover {
  color: #000000;
}

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

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #c76c10;
    display: none;
    flex-direction: column;
    align-items: center;
  }

  .nav.open {
    display: flex;
  }

  .nav ul {
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
  }
}

.hero {
  background-color: #d98b47ab;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 70vh;
}


.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 6px rgba(0,0,0,0.7);
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px;
  line-height: 1.5;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.hero a {
  display: inline-block;
  padding: 12px 36px;
  background: #e67e22;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  width: 200px;
  margin: 0 auto;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.hero a:hover,
.hero a:focus {
  background: #d35400;
  outline: none;
}

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

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

  .hero p {
    font-size: 1rem;
    max-width: 90%;
  }

  .hero a {
    padding: 10px 28px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 40px 10px;
    min-height: 50vh;
  }

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

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

  .hero a {
    padding: 8px 24px;
    font-size: 0.9rem;
  }
}

.our_success {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 1rem;
}

.our_success h2 {
  text-align: center;
  font-size: 2.4rem;
  color: #c76c10;
  margin-bottom: 2.5rem;
}

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

.success-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.success-card {
  background: #fff8f0;
  border: 3px solid #f6c27a;
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.success-card:hover,
.success-card:focus-within {
  transform: translateY(-8px);
  outline: none;
}

.success-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.2rem;
}

.success-card h3 {
  font-size: 1.8rem;
  color: #c76c10;
  margin-bottom: 0.8rem;
}

.success-card p {
  font-size: 1.1rem;
  color: #7a4b00;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .success-list {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .success-card img {
    height: 220px;
  }
}


.about {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 1000px;
  margin: 4rem auto 6rem;
  padding: 0 1rem;
  color: #5f4820;
  background-color: #fff8f0;
  border-radius: 15px;
  padding: 2.5rem;
}

.about_text {
  flex: 1 1 450px;
}

.about_text h2 {
  font-size: 2.3rem;
  color: #c76c10;
  margin-bottom: 1.2rem;
}

.about_text p {
  font-size: 1.15rem;
  line-height: 1.7;
}

.about_image {
  flex: 1 1 450px;
  text-align: center;
}

.about_image img {
  max-width: 100%;
  border-radius: 15px;
  object-fit: cover;
  height: auto;
}

@media (max-width: 768px) {
  .about {
    flex-direction: column;
    padding: 2rem 1rem;
  }

  .about_text,
  .about_image {
    flex: none;
    width: 100%;
  }

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


.services {
  max-width: 1200px;
  margin: 4rem auto 6rem;
  padding: 0 1rem;
  color: #5f4820;
}

.services h2 {
  text-align: center;
  font-size: 2.3rem;
  color: #c76c10;
  margin-bottom: 2.5rem;
}

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

.services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  padding: 0;
  margin: 0 0 2.5rem 0;
}

.service-card {
  background: #fff8f0;
  border: 3px solid #f6c27a;
  border-radius: 15px;
  padding: 1.8rem 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-8px);
  outline: none;
}

.service-card h3 {
  color: #c76c10;
  font-size: 1.9rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.service-card p {
  font-size: 1.1rem;
  line-height: 1.5;
  margin: 0.3rem 0;
}

.btn-primary {
  display: block;
  max-width: 200px;
  margin: 0 auto;
  background-color: #c76c10;
  color: #fff;
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #f6c27a;
  color: #5f4820;
  outline: none;
}

@media (max-width: 768px) {
  .services-list {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .service-card h3 {
    font-size: 1.6rem;
  }

  .service-card p {
    font-size: 1rem;
  }

  .btn-primary {
    max-width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
  }
}

.why {
  max-width: 1200px;
  margin: 4rem auto 6rem;
  padding: 0 1rem;
  color: #5f4820;
}

.why h2 {
  text-align: center;
  font-size: 2.3rem;
  color: #c76c10;
  margin-bottom: 3rem;
}

.why-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.why-card {
  background: #fff8f0;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-card:hover,
.why-card:focus-within {
  transform: translateY(-6px);
  outline: none;
}

.why-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.why-card h3 {
  font-size: 1.8rem;
  color: #c76c10;
  margin-bottom: 0.8rem;
}

.why-card p {
  font-size: 1.1rem;
  color: #7a4b00;
  line-height: 1.5;
  max-width: 260px;
}

@media (max-width: 768px) {
  .why-list {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
  }

  .why-card h3 {
    font-size: 1.5rem;
  }

  .why-card p {
    font-size: 1rem;
    max-width: 100%;
  }
}

.how {
  max-width: 1200px;
  margin: 4rem auto 6rem;
  padding: 0 1rem;
  color: #5f4820;
  background-color: #fff8f0;
  border-radius: 15px;
  padding: 3rem 2.5rem;
}

.how h2 {
  text-align: center;
  font-size: 2.3rem;
  color: #c76c10;
  margin-bottom: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

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

.how li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2.8rem;
  position: relative;
}

.how li:last-child {
  margin-bottom: 0;
}

.how li h3 {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: #c76c10;
  color: white;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  margin-right: 1.8rem;
  user-select: none;
}

.how li p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #5f4820;
  margin: 0;
  max-width: 600px;
}

@media (max-width: 480px) {
  .how li {
    flex-direction: column;
    align-items: flex-start;
  }

  .how li h3 {
    margin-right: 0;
    margin-bottom: 0.6rem;
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
    line-height: 40px;
  }

  .how li p {
    max-width: 100%;
  }
}

.reviews {
  max-width: 1200px;
  margin: 4rem auto 6rem;
  padding: 0 1rem;
  color: #5f4820;
}

.reviews h2 {
  text-align: center;
  font-size: 2.3rem;
  color: #c76c10;
  margin-bottom: 3rem;
}

.reviews-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.8rem;
  padding: 0;
  margin: 0;
}

.review-card {
  background: #fff8f0;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review-card:hover,
.review-card:focus-within {
  transform: translateY(-6px);
  outline: none;
}

.review-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.review-card h3 {
  font-size: 1.8rem;
  color: #c76c10;
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.review-card h4 {
  font-size: 1.1rem;
  color: #7a4b00;
  margin-bottom: 1.2rem;
  font-weight: 500;
  font-style: italic;
}

.review-card h5 {
  font-size: 1.1rem;
  color: #5f4820;
  line-height: 1.5;
  font-weight: 400;
  max-width: 280px;
}

@media (max-width: 768px) {
  .reviews-list {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .review-card img {
    width: 90px;
    height: 90px;
  }

  .review-card h3 {
    font-size: 1.6rem;
  }

  .review-card h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .review-card h5 {
    max-width: 100%;
    font-size: 1rem;
  }
}


footer {
  background-color: #c76c10;
  color: #fff8f0;
  padding: 3rem 1.5rem 2rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 4rem;
  justify-content: space-between;
}

footer > div.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1 1 250px;
}

.footer-logo img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 12px;
  background-color: #fff8f0;
}

.footer_link {
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff8f0;
  user-select: none;
  letter-spacing: 1px;
}

@media (max-width: 600px) {
    .footer_link {
        font-size: 1.2rem;
    }
}

footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1 1 200px;
}

footer ul h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  border-bottom: 2px solid #fff8f0;
  padding-bottom: 0.3rem;
  user-select: none;
}

footer ul li {
  margin-bottom: 1rem;
}

footer ul li a {
  color: #fff8f0;
  text-decoration: none;
  font-size: 1.05rem;
  transition: color 0.3s ease;
}

footer ul li a:hover,
footer ul li a:focus {
  color: #f6c27a;
  outline: none;
}

footer ul.footer-contact p {
  font-size: 1.05rem;
  margin: 0.4rem 0;
  user-select: text;
  line-height: 1.4;
}

footer .footer_copyright {
  flex-basis: 100%;
  text-align: center;
  font-size: 0.9rem;
  margin-top: 2rem;
  color: #f6c27a;
  user-select: none;
}

@media (max-width: 768px) {
  footer {
    flex-direction: column;
    gap: 2rem 0;
    padding: 2rem 1rem 1rem;
  }

  footer > div.footer-logo {
    justify-content: center;
  }

  footer ul {
    flex: 1 1 100%;
    text-align: center;
  }

  footer ul h3 {
    margin-bottom: 0.8rem;
  }

  footer ul li {
    margin-bottom: 0.8rem;
  }

  footer ul.footer-contact p {
    line-height: 1.5;
  }

  footer .footer_copyright {
    margin-top: 1.5rem;
  }
}


.who-we-are {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 5rem auto;
  padding: 2rem 1rem;
  background-color: #fff8f0;
  border-radius: 15px;
  color: #5f4820;
}

.who-we-are .text-block {
  flex: 1 1 500px;
}



.who-we-are h2 {
  font-size: 2.3rem;
  color: #c76c10;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.who-we-are p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: #6a4a1c;
}

.who-we-are .image-block {
  flex: 1 1 400px;
  text-align: center;
}

.who-we-are .image-block img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .who-we-are {
    flex-direction: column;
    padding: 2rem 1rem;
  }

  .who-we-are h2 {
    text-align: center;
    font-size: 1.6rem;
  }

  .who-we-are .text-block {
    text-align: center;
  }

  .who-we-are .image-block img {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .who-we-are,
  .how h2,
  .why h2 {
    font-size: 1.8rem;
  }
  }

.our-story {
  max-width: 1200px;
  margin: 5rem auto;
  padding: 3rem 2rem;
  background-color: #fff8f0;
  border-radius: 15px;
  color: #5f4820;
  text-align: center;
}

.our-story h2 {
  font-size: 2.3rem;
  color: #c76c10;
  margin-bottom: 2rem;
  font-weight: 700;
}

.our-story p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #6a4a1c;
}

@media (max-width: 768px) {
  .our-story {
    padding: 2rem 1rem;
  }

  .our-story h2 {
    font-size: 1.6rem;
  }

  .our-story p {
    font-size: 1.05rem;
    text-align: justify;
  }
}


.cta-contact {
  background: linear-gradient(135deg, #c76c10, #f6c27a);
  padding: 4rem 2rem;
  margin: 4rem auto;
  border-radius: 20px;
  text-align: center;
  color: #fff8f0;
  max-width: 1600px;
}

.cta-contact h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-contact p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta {
  display: inline-block;
  background-color: #fff8f0;
  color: #c76c10;
  padding: 0.9rem 2rem;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-cta:hover,
.btn-cta:focus {
  background-color: #fbe4c1;
  transform: translateY(-2px);
  outline: none;
}

@media (max-width: 768px) {
  .cta-contact h2 {
    font-size: 1.6rem;
  }

  .cta-contact p {
    font-size: 1.05rem;
  }

  .btn-cta {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
}


.services {
  display: grid;
  gap: 2rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fffaf5;
  border-radius: 20px;
}

.service-item {
  background-color: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: 15px;
  border: 2px solid #f6e4cd;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-item h2 {
  font-size: 1.6rem;
  color: #c76c10;
  margin-bottom: 1rem;
  font-weight: 700;
}

.service-item p {
  font-size: 1.05rem;
  color: #5f4820;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: center;
}

.service-item a {
  align-self: flex-start;
  background-color: #c76c10;
  color: #fff;
  padding: 0.7rem 1.4rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin: 0 auto;
}

.service-item a:hover {
  background-color: #a65608;
  transform: translateY(-2px);
}

.service-item:hover {
  transform: translateY(-5px);
  border-color: #f6c27a;
}

@media (max-width: 768px) {
  .services {
    padding: 2rem 1rem;
  }

  .service-item h2 {
    font-size: 1.6rem;
  }

  .service-item p {
    font-size: 1rem;
  }

  .service-item a {
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
  }
}


#contactForm {
  max-width: 600px;
  margin: 4rem auto;
  padding: 3rem 2rem;
  background-color: #fff8f0;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

#contactForm label {
  font-weight: 600;
  font-size: 1rem;
  color: #5f4820;
}

#contactForm input,
#contactForm textarea {
  padding: 0.9rem 1rem;
  font-size: 1rem;
  border: 2px solid #f6e4cd;
  border-radius: 10px;
  background-color: #fff;
  color: #5f4820;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  resize: vertical;
}

#contactForm input:focus,
#contactForm textarea:focus {
  border-color: #c76c10;
  outline: none;
}

#contactForm button {
  background-color: #c76c10;
  color: #fff;
  padding: 0.9rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  align-self: flex-start;
}

#contactForm button:hover {
  background-color: #a65608;
  transform: translateY(-2px);
}

@media (max-width: 600px) {
  #contactForm {
    padding: 2rem 1.2rem;
  }

  #contactForm button {
    width: 100%;
    text-align: center;
  }
}


.popup-message {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #c76c10;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1.1rem;
  z-index: 1000;
  animation: fade-in-out 3s ease forwards;
}

@keyframes fade-in-out {
  0% { opacity: 0; transform: translateX(-50%) translateY(20px); }
  10% { opacity: 1; transform: translateX(-50%) translateY(0); }
  90% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(-20px); }
}


.contact {
  padding: 4rem 2rem;
  background-color: #fff3e6;
  text-align: center;
  border-radius: 20px;
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 70px;
  margin-top: 70px;
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #c76c10;
  font-weight: 700;
}

.contact p {
  font-size: 1.1rem;
  color: #5f4820;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}


.contact form {
  margin-top: 2rem;
}


.privacy {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem;
  background-color: #fafafa;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  font-family: "Segoe UI", sans-serif;
  line-height: 1.7;
  color: #333;
}

.privacy h2 {
  font-size: 2.5rem;
  color: #c76c10;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 700;
}

.privacy h3 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
  color: #804000;
  font-weight: 600;
}

.privacy p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.privacy ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.privacy ul li {
  list-style: disc;
  margin-bottom: 0.5rem;
}

.privacy a {
  color: #c76c10;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .privacy {
    padding: 2rem 1rem;
  }

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

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

  .privacy p,
  .privacy ul li {
    font-size: 1rem;
  }
}
