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

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #f6f1dc;
  color: #1d1d1d;
  font-size: 1.6rem;
  line-height: 1.7;
}

img {
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-padding {
  padding: 9rem 0;
}

h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

h1 {
  font-size: 7rem;
  line-height: 1;
}

h2 {
  font-size: 5rem;
  line-height: 1.1;
}

h3 {
  font-size: 2.8rem;
}

p {
  color: #555;
}

.mini-title {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: #967c13;
  font-weight: 600;
  font-size: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 3rem;
  border-radius: 100px;
  background: #d4af1d;
  color: #111;
  font-weight: 700;
  transition: 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.small-btn {
  padding: 1.2rem 2.4rem;
}

/* TOP BAR */

.top-bar {
  background: #2e7d32;
  color: white;
  padding: 1rem 0;
  font-size: 1.3rem;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.top-right {
  display: flex;
  gap: 2rem;
}

/* NAV */

.header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: #f6f1dc;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo i {
  color: #2e7d32;
  font-size: 2.4rem;
}

.logo h2 {
  font-size: 3rem;
}

.nav-links {
  display: flex;
  gap: 3rem;
}

.nav-links a {
  color: #222;
  font-weight: 500;
}

.call-box span {
  font-size: 1.2rem;
  color: #222;
}

.call-box h4 {
  font-size: 2rem;
}

/* HERO */

.hero {
  padding: 6rem 0 8rem;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.hero-left p {
  margin: 3rem 0;
  max-width: 55rem;
}

.hero-right img {
  border-radius: 3rem;
  height: 600px;
  object-fit: cover;
}

.socials {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
}

.socials a {
  color: #222;
  font-size: 1.4rem;
}

/* ABOUT */

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
  margin-bottom: 5rem;
}

.about-right-text {
  max-width: 45rem;
}

.about-right-text p {
  margin-bottom: 3rem;
}

.about-image img {
  border-radius: 2rem;
  height: 450px;
  object-fit: cover;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 5rem;
  gap: 2rem;
}

.stat-box {
  text-align: center;
}

.stat-box h3 {
  font-size: 5rem;
  color: #2e7d32;
}

/* SERVICES */

.center-title {
  text-align: center;
  margin-bottom: 6rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(2, 1fr);
  gap: 2rem;
}

.services-image img {
  border-radius: 2rem;
  height: 100%;
  object-fit: cover;
}

.service-card {
  background: #fffaf0;
  padding: 3rem;
  border-radius: 2rem;
}

.service-card i {
  font-size: 3rem;
  color: #2e7d32;
  margin-bottom: 2rem;
}

.service-card p {
  margin: 2rem 0;
}

.service-card a {
  color: #2e7d32;
  font-weight: 700;
}

/* WHY US */

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.why-left p {
  margin: 3rem 0;
}

.features {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
}

.feature {
  background: #fffaf0;
  padding: 2rem;
  border-radius: 2rem;
}

.why-right img {
  border-radius: 2rem;
  height: 600px;
  object-fit: cover;
}

/* PROCESS */

.process {
  background: #1f6b3b;
  color: white;
}

.light-text p {
  color: rgba(255, 255, 255, 0.7);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.process-box {
  text-align: center;
}

.process-box p {
  color: rgba(255, 255, 255, 0.7);
}

.circle {
  width: 8rem;
  height: 8rem;
  background: #d4af1d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: black;
  font-weight: 700;
}

/* GALLERY */

.gallery-header {
  align-items: center;
}

.gallery-header img {
  width: 350px;
  border-radius: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.gallery-grid img {
  border-radius: 2rem;
  height: 250px;
  object-fit: cover;
}

/* TESTIMONIALS */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.testimonial-card {
  background: #fffaf0;
  padding: 4rem;
  border-radius: 2rem;
}

.testimonial-card span {
  display: block;
  margin: 1rem 0 2rem;
  color: #888;
}

/* BLOG */

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

.blog-card {
  background: #fffaf0;
  border-radius: 2rem;
  overflow: hidden;
}

.blog-card img {
  height: 280px;
  object-fit: cover;
}

.blog-card span,
.blog-card h3,
.blog-card a {
  padding-left: 2rem;
  padding-right: 2rem;
}

.blog-card span {
  display: block;
  margin-top: 2rem;
  color: #888;
}

.blog-card h3 {
  margin: 2rem 0;
}

.blog-card a {
  display: inline-block;
  margin-bottom: 3rem;
  color: #2e7d32;
  font-weight: 700;
}

/* FOOTER */

.footer {
  background: #1f6b3b;
  color: white;
  padding-top: 7rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 35rem;
  margin-top: 2rem;
}

.footer-cta {
  text-align: right;
}

.footer-cta h2 {
  margin-bottom: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
  padding: 5rem 0;
}

.footer-grid h4 {
  margin-bottom: 2rem;
}

.footer-grid a,
.footer-grid p {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem;
  text-align: center;
}

.copyright p {
  color: rgba(255, 255, 255, 0.6);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  cursor: pointer;
  z-index: 1002;
}

.menu-toggle span {
  width: 3rem;
  height: 3px;
  background: #1f6b3b;
  border-radius: 10px;
  transition: 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(11px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-11px);
}

/* ========================================= */
/* MOBILE RESPONSIVE */
/* ========================================= */

@media (max-width: 992px) {

  .hero-content,
  .why-us-grid,
  .section-header,
  .footer-top {
    grid-template-columns: 1fr;
    flex-direction: column;
    gap: 4rem;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .process-grid,
  .stats,
  .blog-grid,
  .testimonial-grid,
  .footer-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-left,
  .why-left,
  .about-right-text,
  .footer-cta {
    text-align: center;
    max-width: 100%;
  }

  .hero-left p,
  .why-left p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons,
  .socials {
    justify-content: center;
  }

  .nav {
    flex-direction: column;
    gap: 2rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }

  .call-box {
    display: none;
  }

  h1 {
    font-size: 5rem;
  }

  h2 {
    font-size: 4rem;
  }
}


/* ========================================= */
/* TABLET + MOBILE */
/* ========================================= */

@media (max-width: 768px) {

  body {
    overflow-x: hidden;
  }

  .section-padding {
    padding: 6rem 0;
  }

  .container {
    width: 92%;
  }

  h1 {
    font-size: 4.2rem;
    line-height: 1.1;
  }

  h2 {
    font-size: 3.4rem;
    line-height: 1.1;
  }

  h3 {
    font-size: 2.4rem;
  }

  p {
    font-size: 1.5rem;
  }

  /* NAV */

  .top-bar {
    display: none;
  }

  .header {
    padding: 1.5rem 0;
    
  }

  .nav-links {
    gap: 1rem;
  }

  .nav-links a {
    font-size: 1.4rem;
  }

  /* HERO */

  .hero {
    padding-top: 3rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .hero-left {
    text-align: center;
  }

  .hero-right img {
    height: 350px;
    object-fit: cover;
  }

  /* ABOUT */

  .section-header {
    text-align: center;
  }

  .about-image img {
    height: 300px;
  }

  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .stat-box h3 {
    font-size: 3.8rem;
  }

  /* SERVICES */

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-image {
    display: none;
  }

  .service-card {
    padding: 2.5rem;
  }

  /* WHY CHOOSE */

  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .why-right {
    display: none;
  }

  .features {
    flex-direction: column;
  }

  /* PROCESS */

  .process-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  /* GALLERY */

  .gallery-header img {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  
  }

  .gallery-grid img:nth-child(5),
  .gallery-grid img:nth-child(6) {
    display: none;
  }

  /* TESTIMONIALS */

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  /* BLOG */

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card img {
    height: 240px;
  }

  /* FOOTER */

  .footer {
    text-align: center;
  }

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

  .footer .logo h2 {
    text-align: center;
  }

  .footer-top {
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-logo p {
    margin-left: auto;
    margin-right: auto;
  }

  
}


/* ========================================= */
/* SMALL MOBILE */
/* ========================================= */

@media (max-width: 480px) {

  html {
    font-size: 56.25%;
  }

  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2.8rem;
  }

  .btn {
    width: 100%;
    padding: 1.4rem 2rem;
  }

  .hero-right img {
    height: 260px;
  }

  .about-image img {
    height: 220px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img:nth-child(4) {
    display: none;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .socials {
    flex-direction: column;
    gap: 1rem;
  }

  .service-card,
  .testimonial-card,
  .feature {
    padding: 2rem;
  }

  /* =========================================
/* MOBILE MENU */
/* ========================================= */

/* .menu-toggle {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  cursor: pointer;
  z-index: 1002;
}

.menu-toggle span {
  width: 3rem;
  height: 3px;
  background: #1f6b3b;
  border-radius: 10px;
  transition: 0.3s ease;
}

/* ANIMATION */

/* .menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(11px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-11px);
}   */
}

/* ========================================= */
/* MOBILE STYLES */
/* ========================================= */

@media (max-width: 768px), (max-height: 500px) and (orientation: landscape) {

  .menu-toggle {
    display: flex;
  }

  .nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);

    background: #f6f1dc;

    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    padding-top: 3rem;
    gap: 2rem;

    display: none;
    overflow-y: auto;
    z-index: 999;
  }

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

}

@media (max-height: 500px) and (orientation: landscape) {
  .menu-toggle {
    display: flex;
  }
}