:root {
  --green: #0a3328;
  --yellow: #fde021;
  --lime: #b6f23b;
  --cream: #fdfaf3;
  --green-dark: #0c3f34;
  --green-darker: #08362c;
  --text-dark: #1d1d1d;
  --text-muted: #6b6b6b;
  --bg-cream: #fbf8ef;
  --accent-green: rgba(233, 208, 200, 0.904);
  --card-border: #1d1d1d;
  --serif-font: 'DM Serif Display', serif;
  --sans-font: 'Inter', sans-serif;
}

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

body {
  background: var(--cream);
  font-family: var(--sans-font);
  color: var(--green);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
  font-family: var(--serif-font);
  font-weight: 400;
  line-height: 1.1;
}

p {
  font-family: var(--sans-font);
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn-yellow {
  background: var(--lime);
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-yellow:hover {
  background: var(--yellow);
}

.btn-outline {
  border: 1px solid #fff;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: #ffffff;
  color: var(--green-dark);
}

.btn-outline-s {
  border: 1px solid #ffffff44;
  background: transparent;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  z-index: 1000;
  background-color: var(--green);
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.logo {
  font-size: 26px;
  font-weight: 700;
  font-family: var(--sans-font);
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.menu-toggle {
  display: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 0 auto;
  padding: 0;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--lime);
}

/* Hero Section */
.hero-bg {
  background: var(--green);
  color: #fff;
  text-align: center;
  padding-top: 72px;
  padding-bottom: 120px;
  position: relative;
}

.hero-content {
  max-width: 850px;
  margin: 80px auto;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 72px;
  margin-bottom: 30px;
}

.wavy {
  text-decoration: underline;
  text-decoration-style: wavy;
  text-decoration-color: var(--yellow);
}

.hero-content p {
  color: #ffffffcc;
  font-size: 18px;
  margin-bottom: 40px;
}

.btn-group {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Video Container */
.video-container {
  position: relative;
  max-width: 900px;
  margin: 60px auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.video-container img,
.video-container video {
  width: 100%;
  height: auto;
  display: block;
}

.video-container video {
  display: none;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
}

.play-btn i {
  color: #fff;
  font-size: 30px;
  margin-left: 4px;
}

.play-btn:hover {
  background: #f5c400;
}

/* Features Section */
.features {
  padding: 120px 8% 80px;
  text-align: left;
}

.features h2 {
  font-size: 50px;
  max-width: 600px;
  margin-bottom: 60px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.f-card i {
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--green);
}

.f-card h3 {
  font-size: 26px;
  margin-bottom: 15px;
}

/* About Section */
.about-section {
  padding: 20px 8%;
  margin-bottom: 40px;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 40px;
}

.about-img {
  flex: 1;
  position: relative;
}

.about-img img {
  width: 100%;
  border-radius: 20px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 55px;
  margin-bottom: 25px;
}

.about-text p {
  margin-bottom: 20px;
}

/* Stats Bar */
.stats-bar {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ddd;
  padding-top: 50px;
}

.stat h1 {
  font-size: 50px;
  color: var(--green);
}

.stat p {
  font-size: 14px;
  font-weight: 600;
}

/* Services Section */
.services-section {
  background-color: var(--green-dark);
  padding: 80px 8%;
  color: #ffffff;
  font-family: "Georgia", serif;
}

.services-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 50px;
  max-width: 900px;
}

.service-row {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px 35px;
  border-radius: 20px;
  margin-bottom: 25px;
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.3s ease;
}

.service-row:hover {
  background: rgba(255, 255, 255, 0.08);
}

.service-icon {
  font-size: 42px;
  min-width: 60px;
  text-align: center;
}

.service-content {
  flex: 1;
}

.service-content h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.service-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  opacity: 0.9;
}

.service-btn {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-btn a {
  color: white;
  text-decoration: none;
}

.service-btn:hover {
  background-color: #ffffff;
  color: var(--green-dark);
}

.service-btn a:hover {
  color: var(--green);
}

/* Projects Section */
.projects {
  padding: 100px 8%;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.section-header h2 {
  max-width: 500px;
  font-size: 52px;
}

.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.project-card h3 {
  font-size: 32px;
  margin: 25px 0 10px;
}

.project-card p {
  font-weight: 500;
  font-size: 16px;
  color: #111;
}

.project-card span {
  color: #666;
  font-weight: 400;
}

.project-img {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.view-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #fff;
  color: #000;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.project-img:hover .view-badge {
  opacity: 1;
  visibility: visible;
}

/* Wavy Divider */
.wavy-divider {
  width: 100%;
  height: 70px;
  background-color: #fbf6ee;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='14' viewBox='0 0 48 14'%3E%3Cpath d='M0 7 Q6 1 12 7 T24 7 T36 7 T48 7' fill='none' stroke='%23d9d1c7' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center;
}

/* FAQ Section */
.faq {
  padding: 60px 8% 20px;
}

.center-h2 {
  text-align: center;
  font-size: 52px;
  margin-bottom: 60px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  padding: 30px;
  border-bottom: 1px solid #ddd;
}

.faq-item.active {
  background-color: #f2e8df;
  border-radius: 20px;
  border-bottom: none;
  margin-bottom: 15px;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-header h3 {
  font-size: 28px;
}

.faq-icon {
  width: 40px;
  height: 40px;
  border: 1px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-body {
  margin-top: 20px;
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--bg-cream);
  padding: 80px 8%;
  color: var(--text-dark);
  font-family: var(--sans-font);
}

.testimonials-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 50px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  border: 2px solid var(--card-border);
  border-radius: 28px;
  padding: 35px 30px;
  background: transparent;
  transition: background 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover {
  background: var(--accent-green);
  transform: translateY(-6px);
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.testimonial-author {
  font-size: 15px;
  color: var(--text-muted);
}

/* CTA Section */
.cta-section {
  padding: 80px 8%;
}

.cta-card {
  background-color: var(--green-dark);
  border-radius: 20px;
  padding: 80px 40px;
  text-align: center;
  color: #ffffff;
}

.cta-card h2 {
  font-family: "Georgia", serif;
  font-size: 56px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
}

.cta-card p {
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: 18px;
  line-height: 1.7;
  color: #e4f1ec;
}

.cta-btn-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Footer */
.main-footer {
  background-color: var(--cream);
  padding: 80px 8% 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo h2 {
  font-size: 28px;
  font-weight: 800;
  margin: 0;
}

.brand-info p {
  line-height: 1.6;
  color: #4A4A4A;
  margin-bottom: 25px;
  font-size: 16px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: #E9E4D3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1A1A1A;
  text-decoration: none;
  transition: 0.3s;
}

.social-links a:hover {
  background-color: var(--yellow);
}

.footer-col h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
}

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

.footer-col ul li {
  margin-bottom: 18px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #1A1A1A;
  font-size: 16px;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--green-dark);
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-list i {
  color: var(--green-dark);
  font-size: 18px;
}

.footer-bottom {
  border-top: 1px solid #E2E0D1;
  margin-top: 60px;
  padding: 30px 0;
  text-align: center;
  color: #717171;
  font-size: 14px;
}

.footer-bottom p {
  color: #717171;
  font-size: 14px;
  line-height: 1.6;
}

/* =========================
   MOBILE RESPONSIVENESS
========================= */

@media (max-width: 768px) {
  /* Navbar Mobile */
  .navbar {
    display: flex;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    background: var(--green);
  }

  .nav-links.active {
    display: flex;
  }

  /* Hero Section */
  .hero-content h1 {
    font-size: 38px;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 16px;
  }

  .btn-group {
    flex-direction: column;
    align-items: center;
  }

  .btn-group a {
    width: 100%;
    max-width: 280px;
  }

  /* Video */
  .video-container {
    margin: 30px 16px;
  }

  .play-btn {
    width: 60px;
    height: 60px;
  }

  /* Features */
  .feature-grid {
    grid-template-columns: 1fr;
  }

  /* About */
  .about-container {
    flex-direction: column;
    gap: 30px;
  }

  .about-text h2 {
    font-size: 36px;
  }

  /* Stats */
  .stats-bar {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  /* Services */
  .service-row {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 20px;
  }

  .service-btn {
    margin-top: 15px;
  }

  /* Projects */
  .project-grid {
    grid-template-columns: 1fr;
  }

  /* FAQ */
  .faq-header h3 {
    font-size: 20px;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .services-title,
  .testimonials-title {
    font-size: 34px;
  }

  /* CTA */
  .cta-card {
    padding: 60px 24px;
  }

  .cta-card h2 {
    font-size: 32px !important;
  }

  /* Footer Mobile */
  .footer-container {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 40px;
  }

  .footer-logo {
    justify-content: flex-start;
  }

  .social-links {
    justify-content: flex-start;
  }

  .footer-col h3 {
    text-align: left;
    margin-bottom: 20px;
  }

  .footer-col ul {
    text-align: left;
  }

  .footer-col ul li {
    margin-bottom: 15px;
  }

  .contact-list li {
    justify-content: flex-start;
  }

  .footer-bottom {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 34px;
  }

  .logo {
    font-size: 20px;
  }
}

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }
}