@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  --primary-color: #5F6F52;
  --secondary-color: #A9B388;
  --accent-color: #B99470;
  --light-color: #FEFAE0;
  --dark-color: #5F6F52;
  --gradient-primary: linear-gradient(135deg, #A9B388 0%, #5F6F52 100%);
  --hover-color: #B99470;
  --background-color: #FEFAE0;
  --text-color: #3E4A3C;
  --border-color: rgba(185, 148, 112, 0.3);
  --divider-color: rgba(95, 111, 82, 0.15);
  --shadow-color: rgba(95, 111, 82, 0.2);
  --highlight-color: #EE7738;
  --main-font: 'Playfair Display', serif;
  --alt-font: 'Lato', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--alt-font);
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--main-font);
  font-weight: 700;
  line-height: 1.3;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  background: var(--dark-color);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 20px var(--shadow-color);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo img {
  height: 55px;
  width: auto;
  transition: transform 0.3s ease;
}

header .logo img:hover {
  transform: scale(1.08);
}

header nav ul {
  display: flex;
  list-style: none;
  gap: 35px;
}

header nav a {
  color: var(--light-color);
  font-weight: 500;
  font-size: 1rem;
  padding: 10px 18px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

header nav a:hover {
  background: var(--hover-color);
  color: var(--light-color);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--light-color);
  margin: 6px 0;
  transition: 0.3s;
  border-radius: 2px;
}

#menu-checkbox {
  display: none;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  header nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--dark-color);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  #menu-checkbox:checked ~ nav {
    max-height: 450px;
  }

  header nav ul {
    flex-direction: column;
    padding: 25px;
    gap: 12px;
  }

  header .container {
    flex-wrap: wrap;
  }

  header .logo {
    order: 1;
    flex: 1;
    text-align: center;
  }

  .menu-toggle {
    order: 0;
  }
}

/* Hero Section */
.hero-section {
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: var(--light-color);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 50px;
  background: rgba(95, 111, 82, 0.85);
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.hero-section h1 {
  font-size: 3.2rem;
  margin-bottom: 25px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.hero-section p {
  font-size: 1.4rem;
  margin-bottom: 35px;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--gradient-primary);
  color: var(--light-color);
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.15rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px var(--shadow-color);
}

.cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 35px var(--shadow-color);
  background: var(--hover-color);
}

/* Content Sections */
.content-section {
  padding-top: 10dvh;
  padding-bottom: 10dvh;
}

.content-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 50px;
  align-items: center;
}

.content-grid.reverse {
  grid-template-columns: 50% 50%;
}

.content-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 45px var(--shadow-color);
}

.content-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.content-image:hover img {
  transform: scale(1.08);
}

.content-text h2 {
  font-size: 2.8rem;
  margin-bottom: 25px;
  color: var(--primary-color);
}

.content-text p {
  font-size: 1.15rem;
  margin-bottom: 18px;
  line-height: 1.9;
}

@media (max-width: 768px) {
  .content-grid,
  .content-grid.reverse {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .hero-section h1 {
    font-size: 2.2rem;
  }

  .hero-section p {
    font-size: 1.15rem;
  }
}

/* Section Divider */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
  position: relative;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--border-color);
}

.section-divider span {
  padding: 0 40px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--main-font);
}

/* CTA Sections */
.cta-section {
  padding-top: 10dvh;
  padding-bottom: 10dvh;
  text-align: center;
  position: relative;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(95, 111, 82, 0.75);
}

.cta-content {
  position: relative;
  z-index: 2;
  color: var(--light-color);
  max-width: 900px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 3rem;
  margin-bottom: 30px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.cta-content p {
  font-size: 1.35rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* Features Section */
.features-section {
  padding-top: 10dvh;
  padding-bottom: 10dvh;
  background: linear-gradient(135deg, #F5F2E7 0%, #FEFAE0 100%);
}

.features-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.features-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
}

.feature-item:nth-child(odd) {
  flex-direction: row;
  padding-right: 50%;
}

.feature-item:nth-child(even) {
  flex-direction: row-reverse;
  padding-left: 50%;
}

.feature-content {
  background: rgba(255, 255, 255, 0.9);
  padding: 35px;
  border-radius: 18px;
  border: 3px solid var(--border-color);
  box-shadow: 0 10px 35px var(--shadow-color);
  transition: all 0.3s ease;
  position: relative;
}

.feature-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px var(--shadow-color);
  border-color: var(--accent-color);
}

.feature-icon {
  font-size: 2.8rem;
  color: var(--highlight-color);
  margin-bottom: 18px;
}

.feature-content h3 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: var(--primary-color);
}

.feature-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-color);
}

.feature-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  background: var(--highlight-color);
  border-radius: 50%;
  border: 5px solid var(--primary-color);
  z-index: 10;
}

@media (max-width: 768px) {
  .features-timeline::before {
    left: 25px;
  }

  .feature-item:nth-child(odd),
  .feature-item:nth-child(even) {
    flex-direction: row;
    padding-left: 70px;
    padding-right: 0;
  }

  .feature-marker {
    left: 25px;
  }
}

/* Testimonials Section */
.testimonials-section {
  padding-top: 10dvh;
  padding-bottom: 10dvh;
  background: #F5F2E7;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
}

.testimonial-card {
  background: #FFFFFF;
  padding: 35px;
  border-radius: 18px;
  border: 2px solid var(--border-color);
  box-shadow: 0 10px 35px var(--shadow-color);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px var(--shadow-color);
  border-color: var(--accent-color);
}

.testimonial-card .stars {
  color: var(--highlight-color);
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.testimonial-card p {
  font-size: 1.05rem;
  margin-bottom: 25px;
  line-height: 1.8;
  font-style: italic;
  color: var(--text-color);
}

.testimonial-author {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1.05rem;
}

/* Contact Section */
.contact-section {
  padding-top: 10dvh;
  padding-bottom: 10dvh;
  background: linear-gradient(135deg, #FEFAE0 0%, #F5F2E7 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-size: 2.8rem;
  margin-bottom: 35px;
  color: var(--primary-color);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.contact-item i {
  font-size: 1.6rem;
  color: var(--highlight-color);
  margin-top: 6px;
}

.contact-item p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-color);
}

.contact-form {
  background: #FFFFFF;
  padding: 45px;
  border-radius: 18px;
  border: 3px solid var(--border-color);
  box-shadow: 0 12px 45px var(--shadow-color);
}

.contact-form h3 {
  font-size: 2.2rem;
  margin-bottom: 35px;
  color: var(--primary-color);
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--text-color);
  font-size: 1.05rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px;
  background: #FEFAE0;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-color);
  font-size: 1.05rem;
  font-family: var(--alt-font);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(185, 148, 112, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.submit-button {
  width: 100%;
  padding: 18px;
  background: var(--gradient-primary);
  color: var(--light-color);
  border: none;
  border-radius: 10px;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px var(--shadow-color);
}

.submit-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 35px var(--shadow-color);
  background: var(--hover-color);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}

/* FAQ Section */
.faq-section {
  padding-top: 10dvh;
  padding-bottom: 10dvh;
  background: #F5F2E7;
}

.faq-section h2 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 55px;
  color: var(--primary-color);
}

.faq-container {
  max-width: 950px;
  margin: 0 auto;
}

.faq-item {
  background: #FFFFFF;
  margin-bottom: 25px;
  border-radius: 15px;
  border: 2px solid var(--border-color);
  box-shadow: 0 6px 25px var(--shadow-color);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 35px var(--shadow-color);
  border-color: var(--accent-color);
}

.faq-question {
  padding: 28px;
  cursor: pointer;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--main-font);
}

.faq-answer {
  padding: 0 28px 28px 28px;
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-color);
}

/* Footer */
footer {
  background: var(--dark-color);
  padding: 45px 0 25px;
  border-top: 4px solid var(--accent-color);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
}

footer .logo img {
  height: 55px;
  width: auto;
}

footer nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  flex-wrap: wrap;
}

footer nav a {
  color: var(--light-color);
  font-size: 1rem;
  transition: all 0.3s ease;
}

footer nav a:hover {
  color: var(--highlight-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid var(--divider-color);
  color: var(--light-color);
  font-size: 0.95rem;
}

.footer-bottom a {
  color: var(--accent-color);
}

.footer-bottom a:hover {
  color: var(--highlight-color);
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 35px;
    text-align: center;
  }

  footer nav ul {
    justify-content: center;
  }
}