:root {
  --ink: #15342e;
  --green: #2f6f5e;
  --sage: #eaf2ed;
  --cream: #fbf8f0;
  --gold: #d8a84e;
  --white: #fff;
  --muted: #65736f;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.7;
}
a {
  text-decoration: none;
  color: inherit;
}
header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e7ece9;
}
.nav {
  max-width: 1180px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
}
.brand {
  font-weight: 800;
  font-size: 20px;
  line-height: 1.05;
}
.brand small {
  display: block;
  font-weight: 500;
  letter-spacing: 3px;
  font-size: 9px;
  color: var(--green);
  margin-top: 5px;
}
.nav ul {
  display: flex;
  list-style: none;
  gap: 24px;
  margin: 0;
  padding: 0;
}
.nav a:hover {
  color: var(--green);
}
.hero {
  min-height: 72vh;
  display: grid;
  align-items: center;
  padding: 80px max(7vw, 24px);
  background:
    linear-gradient(90deg, rgba(21, 52, 46, 0.96), rgba(21, 52, 46, 0.68)),
    url("https://images.unsplash.com/photo-1498837167922-ddd27525d352?auto=format&fit=crop&w=1800&q=80")
      center/cover;
  color: white;
}
.hero > div {
  max-width: 760px;
}
.hero h1,
.page-hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.05;
  margin: 16px 0;
}
.hero p {
  max-width: 650px;
  font-size: 18px;
  color: #e4efeb;
}
.eyebrow,
.page-hero span,
.section-head span,
.band span {
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 700;
  color: var(--gold);
}
.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.btn {
  display: inline-block;
  border: 0;
  background: var(--green);
  color: white;
  padding: 14px 24px;
  border-radius: 3px;
  font-weight: 700;
  cursor: pointer;
}
.hero .btn {
  background: var(--gold);
  color: var(--ink);
}
.btn-outline {
  background: transparent !important;
  color: white !important;
  border: 1px solid white;
}
.light {
  background: white;
  color: var(--ink);
}
.section {
  max-width: 1180px;
  margin: auto;
  padding: 90px 24px;
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 45px;
}
.section h2,
.band h2 {
  font-family: Georgia, serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  margin: 10px 0;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cards article,
.panel,
form {
  padding: 32px;
  background: var(--cream);
  border: 1px solid #eee9dc;
}
.cards h3 {
  font-family: Georgia, serif;
  font-size: 24px;
  margin: 8px 0;
}
.band {
  background: var(--green);
  color: white;
  padding: 55px max(7vw, 24px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.band h2 {
  margin-bottom: 0;
}
.page-hero {
  padding: 90px 24px;
  text-align: center;
  background: var(--sage);
}
.page-hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  max-width: 900px;
  margin: 15px auto;
}
.two-col,
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 55px;
  align-items: start;
}
.panel h3 {
  margin-bottom: 0;
}
.services {
  grid-template-columns: repeat(3, 1fr);
}
.num {
  font-size: 13px;
  color: var(--gold);
  font-weight: 800;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  min-height: 240px;
  background: linear-gradient(135deg, var(--sage), var(--cream));
  display: flex;
  align-items: end;
  padding: 24px;
  font-family: Georgia, serif;
  font-size: 23px;
  border: 1px solid #e1e9e4;
}
.note {
  text-align: center;
  color: var(--muted);
  margin-top: 24px;
}
.stars {
  color: var(--gold);
  letter-spacing: 3px;
}
.testimonials article p {
  font-family: Georgia, serif;
  font-size: 20px;
}
.contact-info {
  margin-top: 30px;
}
form {
  display: grid;
  gap: 18px;
}
label {
  font-size: 13px;
  font-weight: 700;
}
input,
textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px;
  border: 1px solid #ccd7d2;
  background: white;
  font: inherit;
}
footer {
  background: var(--ink);
  color: #dce8e4;
  padding: 45px 24px;
  text-align: center;
}
footer .brand {
  color: white;
  margin-bottom: 15px;
}
@media (max-width: 850px) {
  .nav {
    align-items: flex-start;
  }
  .nav ul {
    display: none;
  }
  .cards,
  .services,
  .gallery-grid,
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .band {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero {
    min-height: 65vh;
  }
  .section {
    padding: 65px 20px;
  }
} 

/* ==============================
   PROFESSIONAL FOOTER
================================ */

.mhn-footer {
  width: 100%;
  background: #102f29;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  text-align: left;
}


/* TOP AREA */

.mhn-footer-top {
  padding: 75px 20px 65px;
}

.mhn-footer-grid {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1.15fr 1.25fr;
  gap: 55px;
}


/* LOGO */

.mhn-footer-logo {
  display: inline-block;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 22px;
}

.mhn-footer-logo span {
  display: block;
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.15;
}

.mhn-footer-logo small {
  display: block;
  margin-top: 7px;

  color: #e2ad45;
  font-size: 10px;
  font-weight: 700;

  letter-spacing: 5px;
}


.mhn-about-text {
  max-width: 320px;
  margin: 0;

  color: #b7cbc5;
  font-size: 15px;
  line-height: 1.9;
}


/* SOCIAL ICONS */

.mhn-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}

.mhn-socials a {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  font-size: 14px;
  font-weight: 700;

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;

  text-decoration: none;
  transition: 0.3s ease;
}

.mhn-socials a:hover {
  background: #d9a845;
  border-color: #d9a845;
  color: #102f29;

  transform: translateY(-4px);
}


/* TITLES */

.mhn-footer-title {
  position: relative;
  margin: 0 0 30px;

  color: #ffffff;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 700;
}

.mhn-footer-title::after {
  content: "";

  display: block;

  width: 42px;
  height: 2px;

  margin-top: 13px;

  background: #d9a845;
}


/* LINKS */

.mhn-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mhn-footer-links li {
  margin-bottom: 13px;
}

.mhn-footer-links a {
  position: relative;

  display: inline-block;

  color: #b7cbc5;
  font-size: 15px;

  text-decoration: none;

  transition: 0.3s ease;
}

.mhn-footer-links a::before {
  content: "›";

  display: inline-block;

  margin-right: 9px;

  color: #d9a845;
  font-size: 18px;

  transition: 0.3s ease;
}

.mhn-footer-links a:hover {
  color: #ffffff;
  transform: translateX(5px);
}


/* CONTACT */

.mhn-contact-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.mhn-contact-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.mhn-contact-icon {
  min-width: 42px;
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(217, 168, 69, 0.12);
  border: 1px solid rgba(217, 168, 69, 0.3);
  border-radius: 8px;

  color: #d9a845;
  font-size: 18px;
}

.mhn-contact-box span {
  display: block;

  margin-bottom: 3px;

  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

.mhn-contact-box a,
.mhn-contact-box p {
  display: block;

  margin: 0;

  color: #b7cbc5;
  font-size: 14px;
  line-height: 1.6;

  text-decoration: none;
}

.mhn-contact-box a:hover {
  color: #d9a845;
}


/* CTA STRIP */

.mhn-newsletter {
  padding: 0 20px;
}

.mhn-newsletter-inner {
  max-width: 1250px;
  margin: 0 auto;

  padding: 30px 35px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  background: #1d5145;
  border-radius: 12px 12px 0 0;
}

.mhn-small-title {
  display: block;

  margin-bottom: 6px;

  color: #e2ad45;
  font-size: 10px;
  font-weight: 700;

  letter-spacing: 2px;
}

.mhn-newsletter h2 {
  margin: 0;

  color: #ffffff;
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 700;
}


.mhn-footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 15px;

  padding: 14px 22px;

  background: #d9a845;
  color: #102f29;

  border-radius: 5px;

  font-size: 14px;
  font-weight: 700;

  text-decoration: none;

  transition: 0.3s ease;
}

.mhn-footer-btn span {
  font-size: 20px;
}

.mhn-footer-btn:hover {
  background: #ffffff;
  transform: translateY(-3px);
}


/* BOTTOM FOOTER */

.mhn-footer-bottom {
  background: #0b2621;
  padding: 22px 20px;
}

.mhn-footer-bottom-inner {
  width: 100%;
  max-width: 1250px;

  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 25px;
}

.mhn-footer-bottom p {
  margin: 0;

  color: #9fb7b0;
  font-size: 13px;
}

.mhn-developer strong {
  color: #ffffff;
}

.mhn-heart {
  display: inline-block;

  margin: 0 3px;

  color: #e2ad45;

  animation: mhnHeart 1.2s infinite;
}

@keyframes mhnHeart {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }
}


/* TABLET */

@media (max-width: 1000px) {

  .mhn-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }

}


/* MOBILE */

@media (max-width: 650px) {

  .mhn-footer-top {
    padding: 55px 20px 45px;
  }

  .mhn-footer-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .mhn-newsletter-inner {
    flex-direction: column;
    align-items: flex-start;

    padding: 28px 25px;
  }

  .mhn-newsletter h2 {
    font-size: 24px;
  }

  .mhn-footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

}


/* =========================
   HEADER
========================= */

.main-header {
  position: sticky;
  top: 0;
  z-index: 9999;

  width: 100%;

  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #e7ece9;
}

.nav {
  position: relative;

  width: 100%;
  max-width: 1180px;

  margin: 0 auto;
  padding: 16px 24px;

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


/* LOGO */

.brand {
  display: inline-block;

  color: #15342e;

  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;

  text-decoration: none;
}

.brand small {
  display: block;

  margin-top: 5px;

  color: #2f6f5e;

  font-size: 9px;
  font-weight: 600;

  letter-spacing: 3px;
}


/* DESKTOP NAVIGATION */

.nav-menu {
  display: flex;
  align-items: center;

  gap: 26px;

  padding: 0;
  margin: 0;

  list-style: none;
}

.nav-menu li {
  margin: 0;
}

.nav-menu li a {
  position: relative;

  display: block;

  padding: 8px 0;

  color: #15342e;

  font-size: 15px;
  font-weight: 500;

  text-decoration: none;

  transition: 0.3s ease;
}

.nav-menu li a:hover {
  color: #2f6f5e;
}


/* UNDERLINE HOVER */

.nav-menu li a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 0;
  height: 2px;

  background: #d8a84e;

  transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
  width: 100%;
}


/* HAMBURGER */

.menu-toggle {
  display: none;

  width: 45px;
  height: 45px;

  padding: 0;

  background: #15342e;
  border: none;
  border-radius: 5px;

  cursor: pointer;
}

.menu-toggle span {
  display: block;

  width: 22px;
  height: 2px;

  margin: 5px auto;

  background: #ffffff;

  transition: 0.3s ease;
}


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

@media (max-width: 768px) {

  .nav {
    padding: 13px 18px;
  }


  /* SHOW HAMBURGER */

  .menu-toggle {
    display: block;
  }


  /* MOBILE MENU */

  .nav-menu {
    position: absolute;

    top: 100%;
    left: 0;

    width: 100%;

    display: block;

    padding: 10px 18px 20px;
    margin: 0;

    background: #ffffff;

    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #e1e8e5;

    box-shadow: 0 15px 30px rgba(21, 52, 46, 0.12);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-10px);

    transition: all 0.3s ease;
  }


  /* MENU OPEN */

  .nav-menu.active {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
  }


  .nav-menu li {
    width: 100%;

    border-bottom: 1px solid #edf1ef;
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-menu li a {
    display: block;

    width: 100%;

    padding: 14px 5px;

    font-size: 15px;
  }


  /* REMOVE DESKTOP UNDERLINE */

  .nav-menu li a::after {
    display: none;
  }


  /* HAMBURGER → CROSS */

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

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

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

}

/* MOBILE MENU FIX */

@media (max-width: 850px) {

  .nav {
    position: relative;
  }

  .menu-toggle {
    display: block;
  }

  .nav .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;

    width: 100%;

    display: none;

    margin: 0;
    padding: 10px 20px;

    background: #ffffff;

    flex-direction: column;
    align-items: flex-start;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);

    z-index: 99999;
  }

  /* CLICK KE BAAD MENU SHOW */

  .nav .nav-menu.active {
    display: flex !important;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu li a {
    display: block;
    width: 100%;
    padding: 13px 5px;
  }
} 

/* ==================================
   HERO SLIDER
================================== */

.hero-slider {
  position: relative;

  width: 100%;
  min-height: 75vh;

  display: flex;
  align-items: center;

  overflow: hidden;

  color: #ffffff;
}


/* SLIDES CONTAINER */

.hero-slides {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  z-index: 1;
}


/* SINGLE SLIDE */

.hero-slide {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  background-size: cover;
  background-position: center;

  opacity: 0;

  transform: scale(1.08);

  transition:
    opacity 1.2s ease,
    transform 7s ease;
}


/* ACTIVE IMAGE */

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}


/* DARK GREEN OVERLAY */

.hero-overlay {
  position: absolute;

  inset: 0;

  z-index: 2;

  background:
    linear-gradient(
      90deg,
      rgba(15, 48, 41, 0.96) 0%,
      rgba(15, 48, 41, 0.82) 40%,
      rgba(15, 48, 41, 0.30) 75%,
      rgba(15, 48, 41, 0.15) 100%
    );
}


/* HERO CONTENT */

.hero-content {
  position: relative;

  z-index: 3;

  width: 100%;
  max-width: 1180px;

  margin: 0 auto;
  padding: 90px 24px;
}


.hero-content > * {
  max-width: 760px;
}


.hero-content .eyebrow {
  display: block;

  margin-bottom: 15px;

  color: #d8a84e;

  font-size: 12px;
  font-weight: 700;

  letter-spacing: 3px;
  text-transform: uppercase;
}


.hero-content h1 {
  margin: 0 0 22px;

  max-width: 780px;

  color: #ffffff;

  font-family: Georgia, serif;

  font-size: clamp(42px, 6vw, 76px);

  font-weight: 700;

  line-height: 1.07;
}


.hero-content p {
  max-width: 650px;

  margin: 0;

  color: #dce9e5;

  font-size: 18px;

  line-height: 1.8;
}


/* BUTTON AREA */

.hero-content .actions {
  display: flex;

  gap: 14px;

  margin-top: 30px;

  flex-wrap: wrap;
}


.hero-content .btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 14px 24px;

  background: #d8a84e;

  color: #15342e;

  border: 1px solid #d8a84e;

  border-radius: 4px;

  font-size: 14px;
  font-weight: 700;

  text-decoration: none;

  transition: all 0.3s ease;
}


.hero-content .btn:hover {
  background: #ffffff;
  border-color: #ffffff;

  transform: translateY(-3px);
}


.hero-content .btn-outline {
  background: transparent;

  color: #ffffff;

  border-color: rgba(255, 255, 255, 0.7);
}


.hero-content .btn-outline:hover {
  background: #ffffff;

  color: #15342e;
}


/* ==================================
   TEXT ANIMATION
================================== */

.hero-animate {
  opacity: 0;

  transform: translateY(35px);

  animation: heroTextAnimation 0.9s ease forwards;
}


.hero-delay-1 {
  animation-delay: 0.2s;
}


.hero-delay-2 {
  animation-delay: 0.4s;
}


.hero-delay-3 {
  animation-delay: 0.6s;
}


.hero-delay-4 {
  animation-delay: 0.8s;
}


@keyframes heroTextAnimation {

  from {
    opacity: 0;

    transform: translateY(35px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }

}


/* ==================================
   SLIDER DOTS
================================== */

.hero-dots {
  position: absolute;

  z-index: 5;

  left: 50%;
  bottom: 25px;

  transform: translateX(-50%);

  display: flex;

  align-items: center;

  gap: 9px;
}


.hero-dot {
  width: 9px;
  height: 9px;

  padding: 0;

  border: 1px solid #ffffff;

  border-radius: 50%;

  background: transparent;

  cursor: pointer;

  transition: all 0.3s ease;
}


.hero-dot.active {
  width: 28px;

  border-radius: 10px;

  background: #d8a84e;

  border-color: #d8a84e;
}


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

@media (max-width: 768px) {

  .hero-slider {
    min-height: 680px;
  }


  .hero-content {
    padding: 80px 20px;
  }


  .hero-content h1 {
    font-size: 42px;
  }


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

    line-height: 1.7;
  }


  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(15, 48, 41, 0.94),
        rgba(15, 48, 41, 0.72)
      );
  }

}


@media (max-width: 480px) {

  .hero-slider {
    min-height: 620px;
  }


  .hero-content h1 {
    font-size: 35px;
  }


  .hero-content .actions {
    flex-direction: column;

    align-items: flex-start;
  }


  .hero-content .btn {
    width: 100%;
  }

} 

/* ========================================
   TRUST & STATS SECTION
========================================= */

.trust-stats-section {
  position: relative;
  overflow: hidden;

  padding: 100px 20px;

  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(216, 168, 78, 0.08),
      transparent 25%
    ),
    linear-gradient(
      135deg,
      #0f3029 0%,
      #153f36 100%
    );
}


/* Decorative background circle */

.trust-stats-section::before {
  content: "";

  position: absolute;

  width: 400px;
  height: 400px;

  top: -220px;
  right: -150px;

  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}


.trust-stats-section::after {
  content: "";

  position: absolute;

  width: 250px;
  height: 250px;

  bottom: -150px;
  left: -100px;

  border: 1px solid rgba(216, 168, 78, 0.1);
  border-radius: 50%;
}


.trust-stats-container {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1250px;

  margin: 0 auto;
}


/* ========================================
   SECTION HEADING
========================================= */

.trust-heading {
  max-width: 750px;

  margin: 0 auto 55px;

  text-align: center;
}


.trust-subtitle {
  display: inline-block;

  margin-bottom: 14px;

  color: #d8a84e;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 4px;
}


.trust-heading h2 {
  margin: 0 0 20px;

  color: #ffffff;

  font-family: Georgia, serif;

  font-size: clamp(35px, 4vw, 54px);

  font-weight: 700;
  line-height: 1.15;
}


.trust-heading h2 span {
  color: #d8a84e;
}


.trust-heading p {
  max-width: 650px;

  margin: 0 auto;

  color: #b8cdc7;

  font-size: 16px;
  line-height: 1.8;
}


/* ========================================
   STATS GRID
========================================= */

.trust-stats-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 20px;
}


/* ========================================
   CARD
========================================= */

.trust-card {
  position: relative;

  min-height: 350px;

  padding: 35px 28px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.025)
    );

  border: 1px solid rgba(255, 255, 255, 0.1);

  border-radius: 14px;

  overflow: hidden;

  transition:
    transform 0.4s ease,
    border-color 0.4s ease,
    background 0.4s ease;
}


.trust-card:hover {
  transform: translateY(-10px);

  border-color: rgba(216, 168, 78, 0.5);

  background:
    linear-gradient(
      145deg,
      rgba(216, 168, 78, 0.13),
      rgba(255, 255, 255, 0.04)
    );
}


/* ICON */

.trust-icon {
  width: 58px;
  height: 58px;

  margin-bottom: 25px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(216, 168, 78, 0.12);

  border: 1px solid rgba(216, 168, 78, 0.35);

  border-radius: 50%;

  color: #d8a84e;

  font-size: 25px;

  transition: 0.4s ease;
}


.trust-card:hover .trust-icon {
  background: #d8a84e;

  color: #15342e;

  transform: rotateY(360deg);
}


/* NUMBER */

.trust-number-wrap {
  display: flex;
  align-items: center;

  margin-bottom: 6px;

  color: #ffffff;
}


.trust-counter,
.trust-text-stat {
  color: #ffffff;

  font-family: Georgia, serif;

  font-size: 48px;
  font-weight: 700;

  line-height: 1;
}


.trust-plus {
  margin-left: 3px;

  color: #d8a84e;

  font-size: 32px;
  font-weight: 700;
}


.trust-text-stat {
  margin-bottom: 8px;
}


.trust-card h3 {
  margin: 15px 0 12px;

  color: #ffffff;

  font-family: Georgia, serif;

  font-size: 21px;
  font-weight: 700;
}


.trust-card p {
  margin: 0;

  color: #aec4bd;

  font-size: 14px;
  line-height: 1.8;
}


/* Bottom animated line */

.trust-card-line {
  position: absolute;

  left: 0;
  bottom: 0;

  width: 0;
  height: 3px;

  background:
    linear-gradient(
      90deg,
      #d8a84e,
      #f3d58f
    );

  transition: width 0.5s ease;
}


.trust-card:hover .trust-card-line {
  width: 100%;
}


/* ========================================
   SCROLL REVEAL ANIMATION
========================================= */

.reveal-up {
  opacity: 0;

  transform: translateY(45px);

  transition:
    opacity 0.8s ease var(--delay, 0s),
    transform 0.8s ease var(--delay, 0s);
}


.reveal-up.reveal-active {
  opacity: 1;

  transform: translateY(0);
}


/* ========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

  .trust-stats-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 22px;
  }


  .trust-card {
    min-height: 320px;
  }

}


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

@media (max-width: 600px) {

  .trust-stats-section {
    padding: 70px 16px;
  }


  .trust-heading {
    margin-bottom: 40px;
  }


  .trust-heading h2 {
    font-size: 34px;
  }


  .trust-heading p {
    font-size: 15px;
  }


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

    gap: 16px;
  }


  .trust-card {
    min-height: auto;

    padding: 28px 24px;
  }


  .trust-counter,
  .trust-text-stat {
    font-size: 42px;
  }

} 

/* ========================================
   OUR PROGRAMS SECTION
========================================= */

.programs-section {
  position: relative;
  overflow: hidden;

  padding: 110px 20px;

  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(47, 111, 94, 0.09),
      transparent 25%
    ),
    #fbf9f3;
}


.programs-container {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1250px;

  margin: 0 auto;
}


/* ========================================
   HEADING
========================================= */

.programs-heading {
  max-width: 760px;

  margin: 0 auto 60px;

  text-align: center;
}


.programs-subtitle {
  display: inline-block;

  margin-bottom: 15px;

  color: #2f6f5e;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 4px;
}


.programs-heading h2 {
  margin: 0 0 20px;

  color: #15342e;

  font-family: Georgia, serif;

  font-size: clamp(36px, 4.5vw, 58px);

  line-height: 1.12;
}


.programs-heading h2 span {
  color: #2f6f5e;
}


.programs-heading p {
  max-width: 650px;

  margin: 0 auto;

  color: #65736f;

  font-size: 16px;
  line-height: 1.8;
}


/* ========================================
   GRID
========================================= */

.programs-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 24px;
}


/* ========================================
   CARD
========================================= */

.program-card {
  position: relative;

  min-height: 390px;

  padding: 38px 32px;

  display: flex;
  flex-direction: column;

  background: #ffffff;

  border: 1px solid #e4ebe7;
  border-radius: 14px;

  overflow: hidden;

  box-shadow:
    0 12px 40px rgba(21, 52, 46, 0.05);

  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}


/* Green animated background */

.program-card::before {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      145deg,
      #153f36,
      #1f5a4d
    );

  transform: translateY(101%);

  transition: transform 0.5s cubic-bezier(
    0.22,
    1,
    0.36,
    1
  );

  z-index: 0;
}


.program-card:hover::before {
  transform: translateY(0);
}


.program-card:hover {
  transform: translateY(-10px);

  border-color: transparent;

  box-shadow:
    0 25px 60px rgba(21, 52, 46, 0.18);
}


/* Keep content above animation */

.program-card > * {
  position: relative;
  z-index: 2;
}


/* NUMBER */

.program-number {
  position: absolute;

  top: 25px;
  right: 28px;

  color: #d8a84e;

  font-family: Georgia, serif;

  font-size: 16px;
  font-weight: 700;

  transition: 0.4s ease;
}


/* ICON */

.program-icon {
  width: 68px;
  height: 68px;

  margin-bottom: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #edf5f1;

  border: 1px solid #dceae4;

  border-radius: 18px;

  color: #2f6f5e;

  font-size: 31px;

  transition:
    transform 0.5s ease,
    background 0.4s ease,
    color 0.4s ease,
    border-color 0.4s ease;
}


.program-card:hover .program-icon {
  background: #d8a84e;

  border-color: #d8a84e;

  color: #15342e;

  transform:
    translateY(-5px)
    rotate(-6deg)
    scale(1.05);
}


/* CARD TEXT */

.program-card h3 {
  margin: 0 0 15px;

  color: #15342e;

  font-family: Georgia, serif;

  font-size: 26px;
  line-height: 1.25;

  transition: color 0.35s ease;
}


.program-card p {
  margin: 0 0 25px;

  color: #697873;

  font-size: 14px;
  line-height: 1.8;

  transition: color 0.35s ease;
}


.program-card:hover h3 {
  color: #ffffff;
}


.program-card:hover p {
  color: #c9ddd7;
}


/* LINK */

.program-link {
  margin-top: auto;

  display: inline-flex;
  align-items: center;

  gap: 10px;

  color: #2f6f5e;

  font-size: 13px;
  font-weight: 800;

  text-decoration: none;

  transition: color 0.35s ease;
}


.program-link span {
  width: 32px;
  height: 32px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #edf5f1;

  border-radius: 50%;

  transition:
    transform 0.35s ease,
    background 0.35s ease;
}


.program-card:hover .program-link {
  color: #ffffff;
}


.program-card:hover .program-link span {
  background: #d8a84e;

  color: #15342e;

  transform: translateX(7px);
}


/* ========================================
   BOTTOM CTA
========================================= */

.programs-bottom {
  margin-top: 50px;

  padding: 26px 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 30px;

  background: #edf5f1;

  border-radius: 10px;
}


.programs-bottom p {
  margin: 0;

  color: #15342e;

  font-family: Georgia, serif;

  font-size: 20px;
}


.programs-cta {
  display: inline-flex;
  align-items: center;

  gap: 12px;

  padding: 13px 20px;

  background: #2f6f5e;

  color: #ffffff;

  border-radius: 4px;

  font-size: 13px;
  font-weight: 700;

  text-decoration: none;

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}


.programs-cta:hover {
  background: #15342e;

  transform: translateY(-3px);
}


/* ========================================
   SCROLL ANIMATION
========================================= */

.program-reveal {
  opacity: 0;

  transform:
    translateY(50px)
    scale(0.97);

  transition:
    opacity 0.8s ease var(--delay, 0s),
    transform 0.8s
      cubic-bezier(0.22, 1, 0.36, 1)
      var(--delay, 0s);
}


.program-reveal.program-visible {
  opacity: 1;

  transform:
    translateY(0)
    scale(1);
}


/* ========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


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

@media (max-width: 650px) {

  .programs-section {
    padding: 75px 16px;
  }


  .programs-heading {
    margin-bottom: 42px;
  }


  .programs-heading h2 {
    font-size: 35px;
  }


  .programs-grid {
    grid-template-columns: 1fr;

    gap: 18px;
  }


  .program-card {
    min-height: 360px;

    padding: 30px 25px;
  }


  .programs-bottom {
    flex-direction: column;

    gap: 18px;

    text-align: center;
  }

}
/* =====================================
   HOW IT WORKS SECTION
===================================== */

.process-section {
  position: relative;
  overflow: hidden;

  padding: 110px 20px;

  background: #ffffff;
}


.process-section::before {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  top: -300px;
  left: -250px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(47, 111, 94, 0.07),
      transparent 68%
    );
}


.process-container {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1250px;

  margin: 0 auto;
}


/* =====================================
   HEADING
===================================== */

.process-heading {
  max-width: 780px;

  margin: 0 auto 75px;

  text-align: center;
}


.process-subtitle {
  display: inline-block;

  margin-bottom: 14px;

  color: #2f6f5e;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 4px;
}


.process-heading h2 {
  margin: 0 0 20px;

  color: #15342e;

  font-family: Georgia, serif;

  font-size: clamp(36px, 4.5vw, 58px);

  line-height: 1.12;
}


.process-heading h2 span {
  color: #2f6f5e;
}


.process-heading p {
  max-width: 670px;

  margin: 0 auto;

  color: #697873;

  font-size: 16px;
  line-height: 1.8;
}


/* =====================================
   TIMELINE
===================================== */

.process-timeline {
  position: relative;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 22px;
}


/* Main horizontal line */

.process-line {
  position: absolute;

  top: 34px;
  left: 12.5%;
  right: 12.5%;

  height: 2px;

  background: #dce8e3;

  z-index: 0;
}


.process-line-progress {
  width: 0;
  height: 100%;

  background:
    linear-gradient(
      90deg,
      #2f6f5e,
      #d8a84e
    );

  transition: width 2.5s
    cubic-bezier(0.22, 1, 0.36, 1);
}


.process-timeline.line-active
.process-line-progress {
  width: 100%;
}


/* =====================================
   PROCESS STEP
===================================== */

.process-step {
  position: relative;

  z-index: 2;

  text-align: center;
}


/* NUMBER CIRCLE */

.process-marker {
  position: relative;

  width: 68px;
  height: 68px;

  margin: 0 auto 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;

  border: 2px solid #2f6f5e;

  border-radius: 50%;

  box-shadow:
    0 0 0 8px #ffffff,
    0 8px 25px rgba(21, 52, 46, 0.12);

  transition: all 0.4s ease;
}


.process-marker span {
  color: #2f6f5e;

  font-family: Georgia, serif;

  font-size: 18px;
  font-weight: 700;
}


.process-step:hover .process-marker {
  background: #d8a84e;

  border-color: #d8a84e;

  transform:
    scale(1.1)
    rotate(8deg);
}


.process-step:hover
.process-marker span {
  color: #15342e;
}


/* =====================================
   CARD
===================================== */

.process-card {
  position: relative;

  min-height: 390px;

  padding: 32px 25px;

  text-align: left;

  background: #fbf9f3;

  border: 1px solid #e8ece9;
  border-radius: 14px;

  overflow: hidden;

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}


.process-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background:
    linear-gradient(
      90deg,
      #2f6f5e,
      #d8a84e
    );

  transform: scaleX(0);

  transform-origin: left;

  transition: transform 0.5s ease;
}


.process-step:hover
.process-card {
  transform: translateY(-10px);

  border-color:
    rgba(47, 111, 94, 0.3);

  box-shadow:
    0 25px 55px
    rgba(21, 52, 46, 0.12);
}


.process-step:hover
.process-card::before {
  transform: scaleX(1);
}


/* ICON */

.process-card-icon {
  width: 58px;
  height: 58px;

  margin-bottom: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #e8f2ed;

  border-radius: 15px;

  color: #2f6f5e;

  font-size: 27px;

  transition:
    transform 0.4s ease,
    background 0.4s ease;
}


.process-step:hover
.process-card-icon {
  background: #2f6f5e;

  color: #ffffff;

  transform:
    rotate(-8deg)
    scale(1.08);
}


/* LABEL */

.process-label {
  display: block;

  margin-bottom: 7px;

  color: #d09d3c;

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 2px;
}


/* CARD TITLE */

.process-card h3 {
  margin: 0 0 14px;

  color: #15342e;

  font-family: Georgia, serif;

  font-size: 25px;

  line-height: 1.25;
}


/* CARD PARAGRAPH */

.process-card > p {
  margin: 0 0 22px;

  color: #697873;

  font-size: 14px;

  line-height: 1.75;
}


/* CHECK ITEMS */

.process-check {
  display: flex;

  align-items: center;

  gap: 9px;

  margin-top: 10px;

  color: #425a53;

  font-size: 13px;
  font-weight: 600;
}


.process-check span {
  width: 21px;
  height: 21px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: #e2eee8;

  border-radius: 50%;

  color: #2f6f5e;

  font-size: 11px;
}


/* =====================================
   BOTTOM CTA
===================================== */

.process-bottom {
  margin-top: 65px;

  padding: 32px 38px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;

  background:
    linear-gradient(
      135deg,
      #15342e,
      #245c4f
    );

  border-radius: 14px;
}


.process-bottom-text > span {
  display: block;

  margin-bottom: 5px;

  color: #d8a84e;

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 3px;
}


.process-bottom-text h3 {
  margin: 0;

  color: #ffffff;

  font-family: Georgia, serif;

  font-size: 28px;
}


.process-button {
  flex-shrink: 0;

  display: inline-flex;

  align-items: center;

  gap: 14px;

  padding: 14px 22px;

  background: #d8a84e;

  border-radius: 5px;

  color: #15342e;

  font-size: 14px;
  font-weight: 700;

  text-decoration: none;

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}


.process-button:hover {
  background: #ffffff;

  transform: translateY(-4px);
}


/* =====================================
   REVEAL ANIMATION
===================================== */

.process-reveal {
  opacity: 0;

  transform: translateY(50px);

  transition:
    opacity 0.8s ease
      var(--delay, 0s),

    transform 0.8s
      cubic-bezier(0.22, 1, 0.36, 1)
      var(--delay, 0s);
}


.process-reveal.process-visible {
  opacity: 1;

  transform: translateY(0);
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 1000px) {

  .process-timeline {
    grid-template-columns:
      repeat(2, 1fr);

    gap: 35px 22px;
  }


  .process-line {
    display: none;
  }

}


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

@media (max-width: 650px) {

  .process-section {
    padding: 75px 16px;
  }


  .process-heading {
    margin-bottom: 50px;
  }


  .process-heading h2 {
    font-size: 35px;
  }


  .process-timeline {
    display: block;
  }


  .process-step {
    position: relative;

    display: grid;

    grid-template-columns: 58px 1fr;

    gap: 16px;

    margin-bottom: 25px;

    text-align: left;
  }


  /* Vertical connector */

  .process-step:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 58px;
    left: 28px;

    width: 2px;
    height: calc(100% - 25px);

    background:
      linear-gradient(
        #2f6f5e,
        #d8a84e
      );

    z-index: -1;
  }


  .process-marker {
    width: 56px;
    height: 56px;

    margin: 0;

    box-shadow:
      0 0 0 6px #ffffff;
  }


  .process-card {
    min-height: auto;

    padding: 26px 22px;
  }


  .process-bottom {
    margin-top: 45px;

    padding: 28px 24px;

    flex-direction: column;

    align-items: flex-start;
  }


  .process-bottom-text h3 {
    font-size: 24px;
  }

} 
/* ==========================================
   WHY CHOOSE US SECTION
========================================== */

.why-section {
  position: relative;
  overflow: hidden;

  padding: 110px 20px;

  background:
    linear-gradient(
      135deg,
      #f8faf7 0%,
      #eef5f1 100%
    );
}


/* Background Decoration */

.why-section::before {
  content: "";

  position: absolute;

  width: 450px;
  height: 450px;

  top: -250px;
  right: -180px;

  border-radius: 50%;

  border: 1px solid
    rgba(47, 111, 94, 0.1);
}


.why-section::after {
  content: "";

  position: absolute;

  width: 220px;
  height: 220px;

  bottom: -120px;
  left: -100px;

  border-radius: 50%;

  background:
    rgba(216, 168, 78, 0.06);
}


/* CONTAINER */

.why-container {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1250px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    minmax(0, 0.85fr)
    minmax(0, 1.15fr);

  gap: 80px;

  align-items: center;
}


/* ==========================================
   LEFT CONTENT
========================================== */

.why-content {
  position: sticky;

  top: 130px;
}


.why-subtitle {
  display: inline-block;

  margin-bottom: 15px;

  color: #2f6f5e;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 4px;
}


.why-content h2 {
  margin: 0 0 22px;

  color: #15342e;

  font-family: Georgia, serif;

  font-size: clamp(
    38px,
    4.5vw,
    60px
  );

  line-height: 1.1;
}


.why-content h2 span {
  display: block;

  color: #2f6f5e;
}


.why-description {
  max-width: 520px;

  margin: 0;

  color: #65736f;

  font-size: 16px;

  line-height: 1.85;
}


/* EXPERIENCE BOX */

.why-highlight {
  max-width: 480px;

  margin-top: 35px;
  padding: 24px;

  display: flex;
  align-items: center;

  gap: 22px;

  background: #ffffff;

  border-left: 4px solid #d8a84e;

  border-radius: 0 10px 10px 0;

  box-shadow:
    0 15px 45px
    rgba(21, 52, 46, 0.08);
}


.why-highlight-number {
  flex-shrink: 0;

  color: #15342e;

  font-family: Georgia, serif;

  font-size: 48px;
  font-weight: 700;

  line-height: 1;
}


.why-highlight-number sup {
  color: #d8a84e;

  font-size: 24px;
}


.why-highlight-text strong {
  display: block;

  margin-bottom: 5px;

  color: #15342e;

  font-family: Georgia, serif;

  font-size: 18px;
}


.why-highlight-text span {
  display: block;

  color: #73817d;

  font-size: 13px;

  line-height: 1.6;
}


/* MAIN BUTTON */

.why-main-btn {
  display: inline-flex;

  align-items: center;

  gap: 14px;

  margin-top: 30px;

  padding: 14px 22px;

  background: #2f6f5e;

  color: #ffffff;

  border-radius: 5px;

  font-size: 14px;
  font-weight: 700;

  text-decoration: none;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}


.why-main-btn span {
  font-size: 20px;

  transition:
    transform 0.3s ease;
}


.why-main-btn:hover {
  background: #15342e;

  transform: translateY(-4px);

  box-shadow:
    0 12px 30px
    rgba(21, 52, 46, 0.2);
}


.why-main-btn:hover span {
  transform: translateX(5px);
}


/* ==========================================
   RIGHT FEATURES
========================================== */

.why-features {
  display: flex;

  flex-direction: column;

  gap: 16px;
}


/* FEATURE ITEM */

.why-item {
  position: relative;

  display: grid;

  grid-template-columns:
    72px 1fr;

  gap: 22px;

  align-items: center;

  padding: 25px 28px;

  background:
    rgba(255, 255, 255, 0.82);

  border:
    1px solid
    rgba(47, 111, 94, 0.12);

  border-radius: 12px;

  overflow: hidden;

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    background 0.4s ease;
}


/* Animated side line */

.why-item::before {
  content: "";

  position: absolute;

  left: 0;
  top: 50%;

  width: 4px;
  height: 0;

  background: #d8a84e;

  transform:
    translateY(-50%);

  transition:
    height 0.4s ease;
}


.why-item:hover::before {
  height: 70%;
}


.why-item:hover {
  background: #ffffff;

  transform:
    translateX(10px);

  box-shadow:
    0 18px 45px
    rgba(21, 52, 46, 0.1);
}


/* ICON */

.why-icon {
  width: 68px;
  height: 68px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #e6f0eb;

  border-radius: 50%;

  color: #2f6f5e;

  font-size: 28px;

  transition:
    transform 0.5s ease,
    background 0.4s ease,
    color 0.4s ease;
}


.why-item:hover .why-icon {
  background: #2f6f5e;

  color: #ffffff;

  transform:
    rotateY(360deg);
}


/* TOP ROW */

.why-item-top {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 15px;
}


.why-item h3 {
  margin: 0 0 8px;

  color: #15342e;

  font-family: Georgia, serif;

  font-size: 23px;

  line-height: 1.3;
}


.why-number {
  color:
    rgba(47, 111, 94, 0.18);

  font-family: Georgia, serif;

  font-size: 30px;
  font-weight: 700;

  transition:
    color 0.3s ease;
}


.why-item:hover
.why-number {
  color: #d8a84e;
}


.why-item p {
  max-width: 560px;

  margin: 0;

  color: #697873;

  font-size: 14px;

  line-height: 1.75;
}


/* ==========================================
   SCROLL REVEAL
========================================== */

.why-reveal {
  opacity: 0;

  transform:
    translateY(45px);

  transition:
    opacity 0.8s ease
      var(--delay, 0s),

    transform 0.8s
      cubic-bezier(
        0.22,
        1,
        0.36,
        1
      )
      var(--delay, 0s);
}


.why-reveal.why-visible {
  opacity: 1;

  transform:
    translateY(0);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1000px) {

  .why-container {
    grid-template-columns: 1fr;

    gap: 55px;
  }


  .why-content {
    position: relative;

    top: auto;

    max-width: 700px;
  }

}


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

@media (max-width: 650px) {

  .why-section {
    padding:
      75px 16px;
  }


  .why-content h2 {
    font-size: 36px;
  }


  .why-description {
    font-size: 15px;
  }


  .why-highlight {
    padding: 20px 18px;

    gap: 15px;
  }


  .why-highlight-number {
    font-size: 40px;
  }


  .why-item {
    grid-template-columns:
      55px 1fr;

    gap: 15px;

    padding: 22px 18px;
  }


  .why-icon {
    width: 52px;
    height: 52px;

    font-size: 22px;
  }


  .why-item h3 {
    font-size: 19px;
  }


  .why-number {
    font-size: 22px;
  }


  .why-item:hover {
    transform:
      translateY(-5px);
  }

}


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

@media (max-width: 400px) {

  .why-highlight {
    align-items: flex-start;
  }


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


  .why-item-top {
    align-items: flex-start;
  }

} 
/* =========================================
   FEATURED PRODUCTS
========================================= */

.fp-section {
  position: relative;
  overflow: hidden;

  padding: 110px 20px;

  background:
    radial-gradient(
      circle at 10% 10%,
      rgba(47, 111, 94, 0.07),
      transparent 25%
    ),
    #fbf9f3;
}


.fp-container {
  width: 100%;
  max-width: 1250px;

  margin: 0 auto;
}


/* HEADING */

.fp-heading {
  max-width: 760px;

  margin: 0 auto 40px;

  text-align: center;
}


.fp-eyebrow {
  display: inline-block;

  margin-bottom: 14px;

  color: #2f6f5e;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 4px;
}


.fp-heading h2 {
  margin: 0 0 18px;

  color: #15342e;

  font-family: Georgia, serif;

  font-size: clamp(36px, 4.5vw, 58px);

  line-height: 1.12;
}


.fp-heading h2 span {
  color: #2f6f5e;
}


.fp-heading p {
  max-width: 650px;

  margin: 0 auto;

  color: #697873;

  font-size: 16px;
  line-height: 1.8;
}


/* =========================================
   FILTER TABS
========================================= */

.fp-tabs {
  margin-bottom: 45px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  flex-wrap: wrap;
}


.fp-tab {
  padding: 12px 20px;

  background: #ffffff;

  border: 1px solid #dce6e1;

  border-radius: 50px;

  color: #52645e;

  font-size: 13px;
  font-weight: 700;

  cursor: pointer;

  transition: all 0.3s ease;
}


.fp-tab:hover,
.fp-tab.active {
  background: #2f6f5e;

  border-color: #2f6f5e;

  color: #ffffff;

  box-shadow:
    0 8px 25px
    rgba(47, 111, 94, 0.18);
}


/* =========================================
   GRID
========================================= */

.fp-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 22px;
}


/* PRODUCT CARD */

.fp-card {
  background: #ffffff;

  border: 1px solid #e5ebe7;

  border-radius: 14px;

  overflow: hidden;

  box-shadow:
    0 12px 35px
    rgba(21, 52, 46, 0.05);

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}


.fp-card:hover {
  transform: translateY(-10px);

  box-shadow:
    0 25px 55px
    rgba(21, 52, 46, 0.14);
}


/* PRODUCT IMAGE */

.fp-image {
  position: relative;

  height: 290px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background:
    linear-gradient(
      145deg,
      #edf4f0,
      #f8faf7
    );
}


.fp-image img {
  width: 78%;
  height: 78%;

  object-fit: contain;

  transition:
    transform 0.6s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    );
}


.fp-card:hover
.fp-image img {
  transform:
    scale(1.08)
    rotate(-2deg);
}


/* BADGE */

.fp-badge {
  position: absolute;

  top: 15px;
  left: 15px;

  z-index: 2;

  padding: 7px 10px;

  background: #d8a84e;

  border-radius: 3px;

  color: #15342e;

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 1px;
}


.fp-badge.fp-green {
  background: #2f6f5e;

  color: #ffffff;
}


/* HOVER ACTIONS */

.fp-actions {
  position: absolute;

  right: 15px;
  top: 15px;

  display: flex;
  flex-direction: column;

  gap: 8px;

  transform: translateX(70px);

  opacity: 0;

  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
}


.fp-card:hover
.fp-actions {
  transform: translateX(0);

  opacity: 1;
}


.fp-actions button,
.fp-actions a {
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;

  background: #ffffff;

  border: none;

  border-radius: 50%;

  color: #15342e;

  font-size: 13px;
  font-weight: 700;

  text-decoration: none;

  cursor: pointer;

  box-shadow:
    0 6px 20px
    rgba(21, 52, 46, 0.15);

  transition: 0.3s ease;
}


.fp-actions button:hover,
.fp-actions a:hover {
  background: #2f6f5e;

  color: #ffffff;

  transform: scale(1.08);
}


/* PRODUCT INFORMATION */

.fp-info {
  padding: 24px;
}


.fp-category {
  display: block;

  margin-bottom: 7px;

  color: #2f6f5e;

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 2px;
}


.fp-info h3 {
  margin: 0 0 10px;

  color: #15342e;

  font-family: Georgia, serif;

  font-size: 21px;

  line-height: 1.3;
}


.fp-rating {
  margin-bottom: 13px;

  color: #d8a84e;

  font-size: 12px;

  letter-spacing: 1px;
}


.fp-rating span {
  margin-left: 5px;

  color: #8a9793;

  font-size: 11px;

  letter-spacing: 0;
}


/* PRICE */

.fp-price {
  display: flex;
  align-items: center;

  gap: 10px;

  margin-bottom: 18px;
}


.fp-price strong {
  color: #15342e;

  font-size: 19px;
}


.fp-price del {
  color: #9aa6a2;

  font-size: 13px;
}


/* ADD TO CART */

.fp-cart-btn {
  width: 100%;

  padding: 12px 16px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  background: #edf4f0;

  border-radius: 5px;

  color: #15342e;

  font-size: 13px;
  font-weight: 700;

  text-decoration: none;

  transition: 0.3s ease;
}


.fp-cart-btn span {
  font-size: 18px;

  transition:
    transform 0.3s ease;
}


.fp-cart-btn:hover {
  background: #2f6f5e;

  color: #ffffff;
}


.fp-cart-btn:hover span {
  transform: translateX(5px);
}


/* =========================================
   BOTTOM CTA
========================================= */

.fp-bottom {
  margin-top: 50px;

  padding: 26px 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 25px;

  background: #ffffff;

  border: 1px solid #e4ebe7;

  border-radius: 10px;
}


.fp-bottom p {
  margin: 0;

  color: #15342e;

  font-family: Georgia, serif;

  font-size: 19px;
}


.fp-shop-btn {
  display: inline-flex;
  align-items: center;

  gap: 12px;

  padding: 13px 20px;

  background: #15342e;

  border-radius: 4px;

  color: #ffffff;

  font-size: 13px;
  font-weight: 700;

  text-decoration: none;

  transition: 0.3s ease;
}


.fp-shop-btn:hover {
  background: #d8a84e;

  color: #15342e;

  transform: translateY(-3px);
}


/* =========================================
   REVEAL ANIMATION
========================================= */

.fp-reveal {
  opacity: 0;

  transform: translateY(45px);

  transition:
    opacity 0.8s ease,
    transform 0.8s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    );
}


.fp-reveal.fp-visible {
  opacity: 1;

  transform: translateY(0);
}


/* Product Filter Animation */

.fp-product {
  animation:
    fpProductShow
    0.5s ease forwards;
}


@keyframes fpProductShow {

  from {
    opacity: 0;

    transform:
      translateY(20px)
      scale(0.96);
  }

  to {
    opacity: 1;

    transform:
      translateY(0)
      scale(1);
  }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

  .fp-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

}


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

@media (max-width: 600px) {

  .fp-section {
    padding: 75px 16px;
  }


  .fp-heading h2 {
    font-size: 35px;
  }


  .fp-tabs {
    justify-content: flex-start;

    flex-wrap: nowrap;

    overflow-x: auto;

    padding-bottom: 8px;

    scrollbar-width: none;
  }


  .fp-tabs::-webkit-scrollbar {
    display: none;
  }


  .fp-tab {
    flex-shrink: 0;
  }


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


  .fp-image {
    height: 320px;
  }


  .fp-bottom {
    flex-direction: column;

    text-align: center;
  }

} 
/* =====================================
   FAQ SECTION
===================================== */

.faq-section {
  position: relative;
  overflow: hidden;
  padding: 110px 20px;
  background: #f8faf7;
}

.faq-section::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  top: -280px;
  right: -200px;
  border-radius: 50%;
  border: 1px solid rgba(47, 111, 94, 0.1);
}

.faq-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
}


/* HEADING */

.faq-heading {
  max-width: 760px;
  margin: 0 auto 60px;
  text-align: center;
}

.faq-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #2f6f5e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 4px;
}

.faq-heading h2 {
  margin: 0 0 20px;
  color: #15342e;
  font-family: Georgia, serif;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.12;
}

.faq-heading h2 span {
  color: #2f6f5e;
}

.faq-heading p {
  max-width: 650px;
  margin: 0 auto;
  color: #697873;
  font-size: 16px;
  line-height: 1.8;
}


/* LAYOUT */

.faq-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 45px;
  align-items: start;
}


/* LEFT HELP CARD */

.faq-help-card {
  position: relative;
  overflow: hidden;
  padding: 42px 35px;
  min-height: 380px;
  background: linear-gradient(145deg, #15342e, #245c4f);
  border-radius: 16px;
  color: #ffffff;
}

.faq-help-small {
  display: block;
  margin-bottom: 15px;
  color: #d8a84e;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
}

.faq-help-card h3 {
  margin: 0 0 18px;
  max-width: 280px;
  font-family: Georgia, serif;
  font-size: 36px;
  line-height: 1.15;
}

.faq-help-card p {
  position: relative;
  z-index: 2;
  margin: 0 0 28px;
  color: #c0d3cd;
  font-size: 14px;
  line-height: 1.8;
}

.faq-contact-btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 13px 20px;
  background: #d8a84e;
  border-radius: 5px;
  color: #15342e;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.3s ease;
}

.faq-contact-btn:hover {
  background: #ffffff;
  transform: translateY(-4px);
}

.faq-help-decoration {
  position: absolute;
  right: -15px;
  bottom: -80px;
  color: rgba(255, 255, 255, 0.04);
  font-family: Georgia, serif;
  font-size: 300px;
  font-weight: 700;
  line-height: 1;
}


/* FAQ LIST */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e1e9e5;
  border-radius: 10px;
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.faq-item:hover {
  transform: translateX(5px);
  border-color: rgba(47, 111, 94, 0.35);
}

.faq-item.active {
  border-color: rgba(47, 111, 94, 0.4);
  box-shadow: 0 15px 40px rgba(21, 52, 46, 0.08);
}


/* QUESTION */

.faq-question {
  width: 100%;
  padding: 23px 25px;
  display: grid;
  grid-template-columns: 45px 1fr 38px;
  align-items: center;
  gap: 15px;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq-number {
  color: #d8a84e;
  font-family: Georgia, serif;
  font-size: 14px;
  font-weight: 700;
}

.faq-question-text {
  color: #15342e;
  font-family: Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
}


/* PLUS / MINUS ICON */

.faq-toggle {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #edf4f0;
  transition: 0.3s ease;
}

.faq-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: #2f6f5e;
  transform: translate(-50%, -50%);
  transition: 0.3s ease;
}

.faq-toggle span:nth-child(2) {
  transform:
    translate(-50%, -50%)
    rotate(90deg);
}

.faq-item.active .faq-toggle {
  background: #2f6f5e;
  transform: rotate(180deg);
}

.faq-item.active .faq-toggle span {
  background: #ffffff;
}

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


/* ANSWER */

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.faq-answer-inner {
  padding: 0 80px 25px 85px;
}

.faq-answer-inner p {
  margin: 0;
  color: #697873;
  font-size: 14px;
  line-height: 1.85;
}


/* REVEAL */

.faq-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease var(--delay, 0s),
    transform 0.8s ease var(--delay, 0s);
}

.faq-reveal.faq-visible {
  opacity: 1;
  transform: translateY(0);
}


/* TABLET */

@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-help-card {
    min-height: auto;
  }
}


/* MOBILE */

@media (max-width: 600px) {
  .faq-section {
    padding: 75px 16px;
  }

  .faq-heading h2 {
    font-size: 35px;
  }

  .faq-heading {
    margin-bottom: 42px;
  }

  .faq-help-card {
    padding: 32px 25px;
  }

  .faq-help-card h3 {
    font-size: 30px;
  }

  .faq-question {
    grid-template-columns: 30px 1fr 34px;
    gap: 10px;
    padding: 20px 16px;
  }

  .faq-question-text {
    font-size: 17px;
  }

  .faq-answer-inner {
    padding: 0 20px 22px 56px;
  }

  .faq-item:hover {
    transform: none;
  }
} 
/* =====================================
   SUCCESS STORIES SECTION
===================================== */

.story-section {
  position: relative;
  overflow: hidden;

  padding: 110px 20px;

  background:
    radial-gradient(
      circle at 10% 90%,
      rgba(216, 168, 78, 0.08),
      transparent 25%
    ),
    linear-gradient(
      135deg,
      #102f29 0%,
      #17453b 100%
    );
}


.story-section::before {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  top: -300px;
  right: -200px;

  border: 1px solid
    rgba(255, 255, 255, 0.05);

  border-radius: 50%;
}


.story-container {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1250px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    minmax(0, 0.75fr)
    minmax(0, 1.25fr);

  gap: 80px;

  align-items: center;
}


/* =====================================
   LEFT SIDE
===================================== */

.story-eyebrow {
  display: inline-block;

  margin-bottom: 16px;

  color: #d8a84e;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 4px;
}


.story-intro h2 {
  margin: 0 0 24px;

  color: #ffffff;

  font-family: Georgia, serif;

  font-size: clamp(
    40px,
    5vw,
    64px
  );

  line-height: 1.08;
}


.story-intro h2 span {
  display: block;

  color: #d8a84e;
}


.story-intro-text {
  max-width: 500px;

  margin: 0;

  color: #b8ccc6;

  font-size: 16px;

  line-height: 1.85;
}


/* MINI STATS */

.story-mini-stats {
  display: flex;

  gap: 40px;

  margin-top: 38px;
}


.story-stat {
  padding-left: 18px;

  border-left: 2px solid #d8a84e;
}


.story-stat strong {
  display: block;

  margin-bottom: 4px;

  color: #ffffff;

  font-family: Georgia, serif;

  font-size: 30px;
}


.story-stat span {
  color: #9eb7b0;

  font-size: 12px;
}


/* ARROWS */

.story-controls {
  display: flex;

  gap: 10px;

  margin-top: 38px;
}


.story-arrow {
  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: transparent;

  border: 1px solid
    rgba(255, 255, 255, 0.22);

  border-radius: 50%;

  color: #ffffff;

  font-size: 20px;

  cursor: pointer;

  transition: 0.3s ease;
}


.story-arrow:hover {
  background: #d8a84e;

  border-color: #d8a84e;

  color: #15342e;

  transform: translateY(-4px);
}


/* =====================================
   SLIDER
===================================== */

.story-slider-wrap {
  position: relative;

  overflow: hidden;

  background: #ffffff;

  border-radius: 18px;

  box-shadow:
    0 30px 80px
    rgba(0, 0, 0, 0.2);
}


.story-slider {
  position: relative;

  min-height: 580px;
}


.story-slide {
  position: absolute;

  inset: 0;

  padding: 50px 50px 40px;

  opacity: 0;

  visibility: hidden;

  transform: translateX(50px);

  transition:
    opacity 0.6s ease,
    transform 0.6s
      cubic-bezier(
        0.22,
        1,
        0.36,
        1
      ),
    visibility 0.6s;
}


.story-slide.active {
  opacity: 1;

  visibility: visible;

  transform: translateX(0);
}


/* QUOTE */

.story-quote-mark {
  position: absolute;

  top: 10px;
  right: 35px;

  color:
    rgba(47, 111, 94, 0.08);

  font-family: Georgia, serif;

  font-size: 150px;

  line-height: 1;
}


.story-rating {
  position: relative;

  z-index: 2;

  margin-bottom: 24px;

  color: #d8a84e;

  font-size: 15px;

  letter-spacing: 4px;
}


.story-slide blockquote {
  position: relative;

  z-index: 2;

  margin: 0;

  color: #15342e;

  font-family: Georgia, serif;

  font-size: 27px;

  line-height: 1.55;
}


/* RESULTS */

.story-result {
  margin-top: 35px;

  padding: 22px;

  background: #f2f7f4;

  border-radius: 10px;
}


.story-result-label {
  display: block;

  margin-bottom: 15px;

  color: #2f6f5e;

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 2px;
}


.story-result-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 15px;
}


.story-result-grid div {
  border-right:
    1px solid #d7e4de;
}


.story-result-grid div:last-child {
  border-right: none;
}


.story-result-grid strong {
  display: block;

  margin-bottom: 4px;

  color: #15342e;

  font-family: Georgia, serif;

  font-size: 18px;
}


.story-result-grid span {
  color: #71807b;

  font-size: 11px;
}


/* CLIENT */

.story-client {
  display: flex;

  align-items: center;

  gap: 15px;

  margin-top: 28px;
}


.story-avatar {
  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  background:
    linear-gradient(
      135deg,
      #2f6f5e,
      #15342e
    );

  border-radius: 50%;

  color: #ffffff;

  font-family: Georgia, serif;

  font-size: 15px;
  font-weight: 700;
}


.story-client h3 {
  margin: 0 0 4px;

  color: #15342e;

  font-family: Georgia, serif;

  font-size: 18px;
}


.story-client span {
  color: #7c8a85;

  font-size: 12px;
}


/* =====================================
   BOTTOM NAVIGATION
===================================== */

.story-bottom-nav {
  padding: 0 50px 25px;

  display: flex;

  align-items: center;
  justify-content: space-between;
}


.story-dots {
  display: flex;

  align-items: center;

  gap: 8px;
}


.story-dot {
  width: 8px;
  height: 8px;

  padding: 0;

  background: #ccd9d4;

  border: none;

  border-radius: 10px;

  cursor: pointer;

  transition: 0.3s ease;
}


.story-dot.active {
  width: 28px;

  background: #2f6f5e;
}


.story-count {
  display: flex;

  gap: 5px;

  color: #9aa7a2;

  font-size: 12px;
}


.story-count span:first-child {
  color: #15342e;

  font-weight: 700;
}


/* PROGRESS BAR */

.story-progress {
  width: 100%;
  height: 3px;

  background: #e7eeeb;
}


.story-progress-bar {
  width: 0;
  height: 100%;

  background:
    linear-gradient(
      90deg,
      #2f6f5e,
      #d8a84e
    );
}


.story-progress-bar.running {
  animation:
    storyProgress 6s linear forwards;
}


@keyframes storyProgress {

  from {
    width: 0;
  }

  to {
    width: 100%;
  }

}


/* =====================================
   REVEAL
===================================== */

.story-reveal {
  opacity: 0;

  transform: translateY(45px);

  transition:
    opacity 0.9s ease,
    transform 0.9s
      cubic-bezier(
        0.22,
        1,
        0.36,
        1
      );
}


.story-reveal.story-visible {
  opacity: 1;

  transform: translateY(0);
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 1000px) {

  .story-container {
    grid-template-columns: 1fr;

    gap: 55px;
  }


  .story-intro {
    max-width: 750px;
  }

}


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

@media (max-width: 650px) {

  .story-section {
    padding: 75px 16px;
  }


  .story-intro h2 {
    font-size: 38px;
  }


  .story-mini-stats {
    gap: 25px;

    flex-wrap: wrap;
  }


  .story-slider {
    min-height: 680px;
  }


  .story-slide {
    padding: 35px 24px 25px;
  }


  .story-slide blockquote {
    font-size: 21px;

    line-height: 1.55;
  }


  .story-quote-mark {
    font-size: 110px;

    right: 15px;
  }


  .story-result-grid {
    grid-template-columns: 1fr;

    gap: 12px;
  }


  .story-result-grid div {
    padding-bottom: 10px;

    border-right: none;

    border-bottom:
      1px solid #d7e4de;
  }


  .story-result-grid div:last-child {
    padding-bottom: 0;

    border-bottom: none;
  }


  .story-bottom-nav {
    padding: 0 24px 22px;
  }

} 
/* ==========================================
   ABOUT PAGE HERO
========================================== */

.about-page-hero {
  position: relative;
  overflow: hidden;

  padding: 110px 20px;

  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(216, 168, 78, 0.12),
      transparent 25%
    ),
    linear-gradient(
      135deg,
      #102f29,
      #1c5145
    );

  text-align: center;
}


.about-page-hero::before {
  content: "";

  position: absolute;

  width: 450px;
  height: 450px;

  top: -280px;
  left: -180px;

  border: 1px solid
    rgba(255, 255, 255, 0.07);

  border-radius: 50%;
}


.about-page-hero-inner {
  position: relative;
  z-index: 2;

  max-width: 900px;

  margin: 0 auto;

  animation:
    aboutHeroShow
    1s
    cubic-bezier(0.22, 1, 0.36, 1)
    forwards;
}


.about-page-label {
  display: inline-block;

  margin-bottom: 18px;

  color: #d8a84e;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 4px;
}


.about-page-hero h1 {
  margin: 0 0 22px;

  color: #ffffff;

  font-family: Georgia, serif;

  font-size: clamp(
    42px,
    6vw,
    72px
  );

  line-height: 1.08;
}


.about-page-hero h1 span {
  display: block;

  color: #d8a84e;
}


.about-page-hero p {
  max-width: 700px;

  margin: 0 auto;

  color: #c1d4ce;

  font-size: 17px;

  line-height: 1.8;
}


@keyframes aboutHeroShow {

  from {
    opacity: 0;

    transform:
      translateY(40px);
  }

  to {
    opacity: 1;

    transform:
      translateY(0);
  }

}


/* ==========================================
   ABOUT INTRODUCTION
========================================== */

.about-intro-section {
  position: relative;

  overflow: hidden;

  padding: 120px 20px;

  background: #ffffff;
}


.about-intro-container {
  width: 100%;
  max-width: 1250px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(0, 1.1fr);

  gap: 90px;

  align-items: center;
}


/* ==========================================
   IMAGE AREA
========================================== */

.about-visual {
  position: relative;

  padding:
    0 30px 50px 0;
}


.about-main-image {
  position: relative;

  height: 620px;

  overflow: hidden;

  border-radius:
    180px 20px 20px 20px;

  background: #edf4f0;
}


.about-main-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform 1s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    );
}


.about-visual:hover
.about-main-image img {
  transform: scale(1.06);
}


.about-image-overlay {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      transparent 55%,
      rgba(15, 48, 41, 0.35)
    );
}


/* EXPERIENCE CARD */

.about-experience-card {
  position: absolute;

  right: -10px;
  bottom: 5px;

  width: 180px;
  height: 180px;

  padding: 25px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  background: #d8a84e;

  border:
    8px solid #ffffff;

  border-radius: 50%;

  box-shadow:
    0 20px 50px
    rgba(21, 52, 46, 0.18);

  text-align: center;

  animation:
    aboutFloat
    4s ease-in-out infinite;
}


.about-experience-card strong {
  display: block;

  color: #15342e;

  font-family: Georgia, serif;

  font-size: 48px;

  line-height: 1;
}


.about-experience-card p {
  margin: 8px 0 0;

  color: #15342e;

  font-size: 12px;
  font-weight: 700;

  line-height: 1.4;
}


@keyframes aboutFloat {

  0%,
  100% {
    transform:
      translateY(0);
  }

  50% {
    transform:
      translateY(-10px);
  }

}


/* TRUST BADGE */

.about-trust-badge {
  position: absolute;

  left: -30px;
  bottom: 90px;

  padding: 16px 20px;

  display: flex;

  align-items: center;

  gap: 12px;

  background: #ffffff;

  border-radius: 8px;

  box-shadow:
    0 18px 50px
    rgba(21, 52, 46, 0.15);
}


.about-badge-icon {
  width: 40px;
  height: 40px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: #e8f2ed;

  border-radius: 50%;

  color: #2f6f5e;

  font-weight: 800;
}


.about-trust-badge strong {
  display: block;

  margin-bottom: 3px;

  color: #15342e;

  font-family: Georgia, serif;

  font-size: 15px;
}


.about-trust-badge small {
  display: block;

  color: #75847f;

  font-size: 10px;
}


/* ==========================================
   RIGHT CONTENT
========================================== */

.about-eyebrow {
  display: inline-block;

  margin-bottom: 14px;

  color: #2f6f5e;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 4px;
}


.about-content h2 {
  margin: 0 0 24px;

  color: #15342e;

  font-family: Georgia, serif;

  font-size: clamp(
    38px,
    4.5vw,
    58px
  );

  line-height: 1.12;
}


.about-content h2 span {
  display: block;

  color: #2f6f5e;
}


.about-lead {
  color: #3d5750 !important;

  font-size: 18px !important;

  line-height: 1.8 !important;
}


.about-content > p {
  margin:
    0 0 18px;

  color: #697873;

  font-size: 15px;

  line-height: 1.85;
}


/* ==========================================
   APPROACH POINTS
========================================== */

.about-points {
  margin-top: 30px;

  display: flex;

  flex-direction: column;

  gap: 12px;
}


.about-point {
  position: relative;

  display: grid;

  grid-template-columns:
    48px 1fr;

  gap: 16px;

  padding: 17px 18px;

  background: #f7faf8;

  border:
    1px solid #e4ece8;

  border-radius: 8px;

  transition:
    transform 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
}


.about-point:hover {
  background: #ffffff;

  transform:
    translateX(8px);

  box-shadow:
    0 12px 35px
    rgba(21, 52, 46, 0.08);
}


.about-point-number {
  width: 42px;
  height: 42px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: #e5f0eb;

  border-radius: 50%;

  color: #2f6f5e;

  font-family: Georgia, serif;

  font-size: 13px;
  font-weight: 700;
}


.about-point h3 {
  margin:
    0 0 4px;

  color: #15342e;

  font-family: Georgia, serif;

  font-size: 17px;
}


.about-point p {
  margin: 0;

  color: #75837f;

  font-size: 12px;

  line-height: 1.6;
}


/* BUTTON */

.about-btn {
  display: inline-flex;

  align-items: center;

  gap: 14px;

  margin-top: 30px;

  padding:
    14px 22px;

  background: #2f6f5e;

  border-radius: 5px;

  color: #ffffff;

  font-size: 14px;
  font-weight: 700;

  text-decoration: none;

  transition:
    background 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}


.about-btn:hover {
  background: #15342e;

  transform:
    translateY(-4px);

  box-shadow:
    0 15px 35px
    rgba(21, 52, 46, 0.2);
}


/* ==========================================
   MISSION VISION VALUES
========================================== */

.about-mvv-section {
  padding:
    0 20px 110px;

  background: #ffffff;
}


.about-mvv-container {
  max-width: 1250px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 22px;
}


.about-mvv-card {
  position: relative;

  overflow: hidden;

  min-height: 350px;

  padding: 35px 30px;

  background:
    linear-gradient(
      145deg,
      #f4f8f5,
      #fbfcfa
    );

  border:
    1px solid #e1eae5;

  border-radius: 14px;

  transition:
    transform 0.4s ease,
    background 0.4s ease,
    box-shadow 0.4s ease;
}


.about-mvv-card::before {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      145deg,
      #15342e,
      #245c4f
    );

  transform:
    translateY(101%);

  transition:
    transform 0.5s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    );
}


.about-mvv-card:hover::before {
  transform:
    translateY(0);
}


.about-mvv-card:hover {
  transform:
    translateY(-10px);

  box-shadow:
    0 25px 60px
    rgba(21, 52, 46, 0.16);
}


.about-mvv-card > * {
  position: relative;

  z-index: 2;
}


.about-mvv-number {
  position: absolute;

  top: 25px;
  right: 28px;

  color:
    rgba(47, 111, 94, 0.2);

  font-family: Georgia, serif;

  font-size: 35px;

  transition:
    color 0.3s ease;
}


.about-mvv-icon {
  width: 65px;
  height: 65px;

  margin-bottom: 30px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: #e4efe9;

  border-radius: 16px;

  color: #2f6f5e;

  font-size: 28px;

  transition:
    transform 0.5s ease,
    background 0.4s ease,
    color 0.4s ease;
}


.about-mvv-label {
  display: block;

  margin-bottom: 10px;

  color: #d09d3c;

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 2px;
}


.about-mvv-card h3 {
  margin:
    0 0 15px;

  color: #15342e;

  font-family: Georgia, serif;

  font-size: 25px;

  transition:
    color 0.4s ease;
}


.about-mvv-card p {
  margin: 0;

  color: #697873;

  font-size: 14px;

  line-height: 1.8;

  transition:
    color 0.4s ease;
}


.about-mvv-card:hover
.about-mvv-icon {
  background: #d8a84e;

  color: #15342e;

  transform:
    rotate(-8deg)
    scale(1.08);
}


.about-mvv-card:hover
.about-mvv-number {
  color:
    rgba(255, 255, 255, 0.15);
}


.about-mvv-card:hover h3 {
  color: #ffffff;
}


.about-mvv-card:hover p {
  color: #c2d5cf;
}


/* ==========================================
   SCROLL ANIMATION
========================================== */

.about-reveal-left {
  opacity: 0;

  transform:
    translateX(-60px);

  transition:
    opacity 0.9s ease,
    transform 0.9s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    );
}


.about-reveal-right {
  opacity: 0;

  transform:
    translateX(60px);

  transition:
    opacity 0.9s ease,
    transform 0.9s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    );
}


.about-scroll-reveal {
  opacity: 0;

  transform:
    translateY(45px);

  transition:
    opacity 0.8s ease
      var(--delay, 0s),

    transform 0.8s ease
      var(--delay, 0s);
}


.about-show {
  opacity: 1;

  transform:
    translate(0, 0);
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 1000px) {

  .about-intro-container {
    grid-template-columns: 1fr;

    gap: 70px;
  }


  .about-visual {
    max-width: 650px;

    margin: 0 auto;

    width: 100%;
  }


  .about-mvv-container {
    grid-template-columns:
      repeat(2, 1fr);
  }


  .about-mvv-card:last-child {
    grid-column:
      span 2;
  }

}


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

@media (max-width: 650px) {

  .about-page-hero {
    padding:
      80px 16px;
  }


  .about-page-hero h1 {
    font-size: 39px;
  }


  .about-page-hero p {
    font-size: 15px;
  }


  .about-intro-section {
    padding:
      75px 16px;
  }


  .about-intro-container {
    gap: 60px;
  }


  .about-visual {
    padding:
      0 0 60px;
  }


  .about-main-image {
    height: 450px;

    border-radius:
      100px 15px 15px 15px;
  }


  .about-experience-card {
    width: 135px;
    height: 135px;

    right: 5px;
    bottom: 5px;

    border-width: 5px;
  }


  .about-experience-card strong {
    font-size: 36px;
  }


  .about-trust-badge {
    left: 10px;
    bottom: 20px;

    padding:
      12px 14px;
  }


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


  .about-lead {
    font-size:
      16px !important;
  }


  .about-point {
    grid-template-columns:
      42px 1fr;

    padding:
      15px 13px;
  }


  .about-mvv-section {
    padding:
      0 16px 75px;
  }


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


  .about-mvv-card:last-child {
    grid-column: auto;
  }

} 
/* =========================================
   CONTACT HERO
========================================= */

.contact-page-hero {
  position: relative;
  overflow: hidden;

  padding: 110px 20px;

  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(216, 168, 78, 0.15),
      transparent 25%
    ),
    linear-gradient(
      135deg,
      #102f29,
      #1d5145
    );

  text-align: center;
}


.contact-page-hero::before {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  left: -250px;
  bottom: -350px;

  border-radius: 50%;

  border:
    1px solid
    rgba(255, 255, 255, 0.08);
}


.contact-hero-content {
  position: relative;

  z-index: 2;

  max-width: 900px;

  margin: 0 auto;

  animation:
    contactHeroShow
    1s
    cubic-bezier(0.22, 1, 0.36, 1)
    forwards;
}


.contact-hero-content > span {
  display: inline-block;

  margin-bottom: 18px;

  color: #d8a84e;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 4px;
}


.contact-hero-content h1 {
  margin: 0 0 22px;

  color: #ffffff;

  font-family: Georgia, serif;

  font-size:
    clamp(42px, 6vw, 72px);

  line-height: 1.08;
}


.contact-hero-content h1 strong {
  display: block;

  color: #d8a84e;

  font-weight: inherit;
}


.contact-hero-content p {
  max-width: 700px;

  margin: 0 auto;

  color: #c1d4ce;

  font-size: 17px;

  line-height: 1.8;
}


@keyframes contactHeroShow {

  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}


/* =========================================
   CONTACT MAIN SECTION
========================================= */

.contact-main-section {
  position: relative;

  overflow: hidden;

  padding: 110px 20px;

  background: #f7faf8;
}


.contact-main-container {
  width: 100%;
  max-width: 1250px;

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    minmax(0, 0.8fr)
    minmax(0, 1.2fr);

  gap: 75px;

  align-items: start;
}


/* =========================================
   LEFT CONTENT
========================================= */

.contact-eyebrow {
  display: inline-block;

  margin-bottom: 14px;

  color: #2f6f5e;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 4px;
}


.contact-left h2 {
  margin: 0 0 20px;

  color: #15342e;

  font-family: Georgia, serif;

  font-size:
    clamp(38px, 4.5vw, 58px);

  line-height: 1.12;
}


.contact-left h2 span {
  display: block;

  color: #2f6f5e;
}


.contact-intro {
  margin: 0;

  color: #697873;

  font-size: 15px;

  line-height: 1.85;
}


/* =========================================
   CONTACT DETAILS
========================================= */

.contact-details {
  display: flex;

  flex-direction: column;

  gap: 12px;

  margin-top: 35px;
}


.contact-detail-card {
  display: grid;

  grid-template-columns:
    55px 1fr;

  gap: 16px;

  align-items: center;

  padding: 17px;

  background: #ffffff;

  border:
    1px solid #e1eae5;

  border-radius: 9px;

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}


.contact-detail-card:hover {
  transform: translateX(8px);

  border-color:
    rgba(47, 111, 94, 0.35);

  box-shadow:
    0 12px 35px
    rgba(21, 52, 46, 0.08);
}


.contact-detail-icon {
  width: 52px;
  height: 52px;

  display: flex;

  align-items: center;
  justify-content: center;

  background: #e8f2ed;

  border-radius: 50%;

  color: #2f6f5e;

  font-size: 20px;

  transition: 0.4s ease;
}


.contact-detail-card:hover
.contact-detail-icon {
  background: #2f6f5e;

  color: #ffffff;

  transform: rotate(-8deg);
}


.contact-detail-card div:last-child > span {
  display: block;

  margin-bottom: 3px;

  color: #d09d3c;

  font-size: 8px;
  font-weight: 800;

  letter-spacing: 1.5px;
}


.contact-detail-card a,
.contact-detail-card strong {
  display: block;

  margin-bottom: 3px;

  color: #15342e;

  font-family: Georgia, serif;

  font-size: 17px;

  text-decoration: none;
}


.contact-detail-card small {
  color: #7d8b86;

  font-size: 11px;
}


/* ONLINE CONSULTATION */

.contact-online-box {
  margin-top: 22px;

  padding: 22px;

  display: flex;

  align-items: flex-start;

  gap: 15px;

  background:
    linear-gradient(
      135deg,
      #15342e,
      #245c4f
    );

  border-radius: 10px;
}


.contact-online-icon {
  width: 45px;
  height: 45px;

  flex-shrink: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  background:
    rgba(255, 255, 255, 0.1);

  border-radius: 50%;

  color: #d8a84e;

  font-size: 18px;
}


.contact-online-box span {
  display: block;

  margin-bottom: 6px;

  color: #d8a84e;

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 1.5px;
}


.contact-online-box p {
  margin: 0;

  color: #c4d6d0;

  font-size: 12px;

  line-height: 1.6;
}


/* =========================================
   FORM WRAPPER
========================================= */

.contact-form-wrapper {
  padding: 42px;

  background: #ffffff;

  border:
    1px solid #e2eae6;

  border-radius: 16px;

  box-shadow:
    0 25px 70px
    rgba(21, 52, 46, 0.1);
}


.contact-form-header {
  margin-bottom: 30px;
}


.contact-form-header > span {
  display: block;

  margin-bottom: 8px;

  color: #d09d3c;

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 2px;
}


.contact-form-header h3 {
  margin: 0 0 10px;

  color: #15342e;

  font-family: Georgia, serif;

  font-size: 32px;
}


.contact-form-header p {
  margin: 0;

  color: #71807b;

  font-size: 13px;

  line-height: 1.7;
}


/* =========================================
   FORM
========================================= */

.contact-premium-form {
  display: flex;

  flex-direction: column;

  gap: 20px;
}


.contact-form-row {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 16px;
}


.contact-field {
  display: flex;

  flex-direction: column;

  gap: 8px;
}


.contact-field > label {
  color: #314b44;

  font-size: 12px;
  font-weight: 700;
}


.contact-field > label span {
  color: #d09d3c;
}


.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;

  padding: 14px 15px;

  background: #f8faf9;

  border:
    1px solid #dde7e2;

  border-radius: 6px;

  outline: none;

  color: #15342e;

  font-family: inherit;

  font-size: 13px;

  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}


.contact-field textarea {
  resize: vertical;

  min-height: 130px;
}


.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  background: #ffffff;

  border-color: #2f6f5e;

  box-shadow:
    0 0 0 3px
    rgba(47, 111, 94, 0.1);
}


/* CONSULTATION OPTIONS */

.consultation-options {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 12px;
}


.consultation-option {
  position: relative;

  cursor: pointer;
}


.consultation-option input {
  position: absolute;

  opacity: 0;
}


.consultation-option > span {
  padding: 14px 15px;

  display: block;

  background: #f8faf9;

  border:
    1px solid #dde7e2;

  border-radius: 7px;

  transition: 0.3s ease;
}


.consultation-option strong {
  display: block;

  margin-bottom: 3px;

  color: #15342e;

  font-size: 13px;
}


.consultation-option small {
  color: #7b8985;

  font-size: 10px;
}


.consultation-option
input:checked + span {
  background: #edf5f1;

  border-color: #2f6f5e;

  box-shadow:
    inset 4px 0 0 #2f6f5e;
}


/* CONSENT */

.contact-consent {
  display: flex;

  align-items: flex-start;

  gap: 9px;

  cursor: pointer;
}


.contact-consent input {
  margin-top: 3px;

  accent-color: #2f6f5e;
}


.contact-consent span {
  color: #74827e;

  font-size: 11px;

  line-height: 1.5;
}


/* SUBMIT BUTTON */

.contact-submit-btn {
  width: 100%;

  padding: 15px 20px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  background: #2f6f5e;

  border: none;

  border-radius: 6px;

  color: #ffffff;

  font-size: 14px;
  font-weight: 700;

  cursor: pointer;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}


.contact-submit-btn strong {
  font-size: 20px;

  transition: transform 0.3s ease;
}


.contact-submit-btn:hover {
  background: #15342e;

  transform: translateY(-3px);

  box-shadow:
    0 15px 35px
    rgba(21, 52, 46, 0.2);
}


.contact-submit-btn:hover strong {
  transform: translateX(6px);
}


.contact-form-note {
  margin: -8px 0 0;

  color: #8b9894;

  font-size: 10px;

  text-align: center;
}


/* =========================================
   SCROLL ANIMATION
========================================= */

.contact-reveal-left {
  opacity: 0;

  transform: translateX(-50px);

  transition:
    opacity 0.9s ease,
    transform 0.9s
    cubic-bezier(0.22, 1, 0.36, 1);
}


.contact-reveal-right {
  opacity: 0;

  transform: translateX(50px);

  transition:
    opacity 0.9s ease,
    transform 0.9s
    cubic-bezier(0.22, 1, 0.36, 1);
}


.contact-visible {
  opacity: 1;

  transform: translateX(0);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

  .contact-main-container {
    grid-template-columns: 1fr;

    gap: 55px;
  }


  .contact-left {
    max-width: 750px;
  }

}


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

@media (max-width: 650px) {

  .contact-page-hero {
    padding: 80px 16px;
  }


  .contact-hero-content h1 {
    font-size: 39px;
  }


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


  .contact-main-section {
    padding: 75px 16px;
  }


  .contact-left h2 {
    font-size: 36px;
  }


  .contact-form-wrapper {
    padding: 28px 20px;
  }


  .contact-form-header h3 {
    font-size: 27px;
  }


  .contact-form-row {
    grid-template-columns: 1fr;
  }


  .consultation-options {
    grid-template-columns: 1fr;
  }


  .contact-detail-card {
    grid-template-columns:
      48px 1fr;

    padding: 14px;
  }


  .contact-detail-icon {
    width: 46px;
    height: 46px;
  }

} 
/* =====================================
   GALLERY HERO
===================================== */

.gallery-page-hero {
  position: relative;
  overflow: hidden;

  padding: 110px 20px;

  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(216, 168, 78, 0.15),
      transparent 25%
    ),
    linear-gradient(
      135deg,
      #102f29,
      #1d5145
    );

  text-align: center;
}


.gallery-page-hero::before {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  left: -250px;
  bottom: -350px;

  border: 1px solid
    rgba(255, 255, 255, 0.07);

  border-radius: 50%;
}


.gallery-hero-content {
  position: relative;
  z-index: 2;

  max-width: 900px;

  margin: 0 auto;

  animation:
    galleryHeroAnimation
    1s
    cubic-bezier(0.22, 1, 0.36, 1)
    forwards;
}


.gallery-hero-content > span {
  display: inline-block;

  margin-bottom: 18px;

  color: #d8a84e;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 4px;
}


.gallery-hero-content h1 {
  margin: 0 0 22px;

  color: #ffffff;

  font-family: Georgia, serif;

  font-size:
    clamp(42px, 6vw, 72px);

  line-height: 1.08;
}


.gallery-hero-content h1 strong {
  display: block;

  color: #d8a84e;

  font-weight: inherit;
}


.gallery-hero-content p {
  max-width: 700px;

  margin: 0 auto;

  color: #c1d4ce;

  font-size: 17px;

  line-height: 1.8;
}


@keyframes galleryHeroAnimation {

  from {
    opacity: 0;

    transform:
      translateY(40px);
  }

  to {
    opacity: 1;

    transform:
      translateY(0);
  }

}


/* =====================================
   GALLERY SECTION
===================================== */

.premium-gallery-section {
  position: relative;

  padding: 110px 20px;

  background: #f8faf7;
}


.premium-gallery-container {
  width: 100%;

  max-width: 1250px;

  margin: 0 auto;
}


/* =====================================
   HEADING
===================================== */

.gallery-heading {
  max-width: 760px;

  margin:
    0 auto 40px;

  text-align: center;
}


.gallery-eyebrow {
  display: inline-block;

  margin-bottom: 14px;

  color: #2f6f5e;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 4px;
}


.gallery-heading h2 {
  margin:
    0 0 18px;

  color: #15342e;

  font-family: Georgia, serif;

  font-size:
    clamp(36px, 4.5vw, 58px);

  line-height: 1.12;
}


.gallery-heading h2 span {
  color: #2f6f5e;
}


.gallery-heading p {
  max-width: 650px;

  margin: 0 auto;

  color: #697873;

  font-size: 16px;

  line-height: 1.8;
}


/* =====================================
   FILTER BUTTONS
===================================== */

.gallery-filters {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 8px;

  flex-wrap: wrap;

  margin-bottom: 45px;
}


.gallery-filter {
  padding:
    11px 19px;

  background: #ffffff;

  border:
    1px solid #dce6e1;

  border-radius: 50px;

  color: #52645e;

  font-size: 12px;
  font-weight: 700;

  cursor: pointer;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}


.gallery-filter:hover,
.gallery-filter.active {
  background: #2f6f5e;

  border-color: #2f6f5e;

  color: #ffffff;

  transform:
    translateY(-2px);
}


/* =====================================
   GALLERY GRID
===================================== */

.premium-gallery-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  grid-auto-rows: 280px;

  gap: 18px;
}


.premium-gallery-item {
  position: relative;

  overflow: hidden;

  border-radius: 14px;

  background: #e6eee9;

  cursor: pointer;

  opacity: 1;

  transform:
    scale(1);

  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    box-shadow 0.4s ease;
}


.premium-gallery-item.gallery-large {
  grid-row:
    span 2;
}


.premium-gallery-item.gallery-wide {
  grid-column:
    span 2;
}


.premium-gallery-item img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition:
    transform 0.8s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    );
}


.premium-gallery-item:hover img {
  transform:
    scale(1.1);
}


.premium-gallery-item:hover {
  box-shadow:
    0 25px 60px
    rgba(21, 52, 46, 0.18);
}


/* =====================================
   OVERLAY
===================================== */

.gallery-overlay {
  position: absolute;

  inset: 0;

  padding: 28px;

  display: flex;

  align-items: flex-end;
  justify-content: space-between;

  gap: 20px;

  background:
    linear-gradient(
      180deg,
      rgba(15, 48, 41, 0.02) 20%,
      rgba(15, 48, 41, 0.88) 100%
    );

  transition:
    background 0.4s ease;
}


.premium-gallery-item:hover
.gallery-overlay {
  background:
    linear-gradient(
      180deg,
      rgba(15, 48, 41, 0.12),
      rgba(15, 48, 41, 0.94)
    );
}


.gallery-overlay-content {
  transform:
    translateY(8px);

  transition:
    transform 0.4s ease;
}


.premium-gallery-item:hover
.gallery-overlay-content {
  transform:
    translateY(0);
}


.gallery-overlay-content > span {
  display: block;

  margin-bottom: 7px;

  color: #d8a84e;

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 2px;
}


.gallery-overlay-content h3 {
  margin: 0;

  color: #ffffff;

  font-family: Georgia, serif;

  font-size: 23px;

  line-height: 1.25;
}


.gallery-overlay-content p {
  max-width: 400px;

  margin:
    8px 0 0;

  color: #c7d9d3;

  font-size: 12px;

  line-height: 1.6;
}


/* VIEW BUTTON */

.gallery-view-btn {
  width: 48px;
  height: 48px;

  flex-shrink: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 0;

  background: #d8a84e;

  border: none;

  border-radius: 50%;

  color: #15342e;

  font-size: 27px;
  font-weight: 300;

  cursor: pointer;

  opacity: 0;

  transform:
    translateY(20px)
    rotate(-90deg);

  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    background 0.3s ease;
}


.premium-gallery-item:hover
.gallery-view-btn {
  opacity: 1;

  transform:
    translateY(0)
    rotate(0);
}


.gallery-view-btn:hover {
  background: #ffffff;
}


/* =====================================
   FILTER ANIMATION
===================================== */

.premium-gallery-item.gallery-hidden {
  display: none;
}


.premium-gallery-item.gallery-filter-animation {
  animation:
    galleryItemShow
    0.6s
    cubic-bezier(0.22, 1, 0.36, 1)
    forwards;
}


@keyframes galleryItemShow {

  from {
    opacity: 0;

    transform:
      translateY(25px)
      scale(0.96);
  }

  to {
    opacity: 1;

    transform:
      translateY(0)
      scale(1);
  }

}


/* =====================================
   SCROLL REVEAL
===================================== */

.gallery-reveal {
  opacity: 0;

  transform:
    translateY(40px);

  transition:
    opacity 0.8s ease,
    transform 0.8s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    );
}


.gallery-reveal.gallery-visible {
  opacity: 1;

  transform:
    translateY(0);
}


/* =====================================
   LIGHTBOX
===================================== */

.gallery-lightbox {
  position: fixed;

  inset: 0;

  z-index: 99999;

  padding: 30px;

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 25px;

  background:
    rgba(7, 28, 24, 0.96);

  opacity: 0;

  visibility: hidden;

  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}


.gallery-lightbox.active {
  opacity: 1;

  visibility: visible;
}


.gallery-lightbox-content {
  width: min(
    900px,
    calc(100vw - 180px)
  );

  max-height:
    calc(100vh - 70px);

  overflow: hidden;

  background: #ffffff;

  border-radius: 12px;

  transform:
    scale(0.92);

  transition:
    transform 0.4s
    cubic-bezier(
      0.22,
      1,
      0.36,
      1
    );
}


.gallery-lightbox.active
.gallery-lightbox-content {
  transform:
    scale(1);
}


.gallery-lightbox-content img {
  width: 100%;
  height:
    min(68vh, 650px);

  display: block;

  object-fit: cover;
}


.gallery-lightbox-caption {
  padding:
    20px 25px;
}


.gallery-lightbox-caption span {
  display: block;

  margin-bottom: 5px;

  color: #d09d3c;

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 2px;
}


.gallery-lightbox-caption h3 {
  margin: 0;

  color: #15342e;

  font-family: Georgia, serif;

  font-size: 24px;
}


/* LIGHTBOX CLOSE */

.gallery-lightbox-close {
  position: absolute;

  top: 20px;
  right: 25px;

  width: 48px;
  height: 48px;

  padding: 0;

  background:
    rgba(255, 255, 255, 0.1);

  border:
    1px solid
    rgba(255, 255, 255, 0.2);

  border-radius: 50%;

  color: #ffffff;

  font-size: 30px;

  cursor: pointer;

  transition: 0.3s ease;
}


.gallery-lightbox-close:hover {
  background: #d8a84e;

  color: #15342e;

  transform: rotate(90deg);
}


/* LIGHTBOX ARROWS */

.gallery-lightbox-arrow {
  width: 55px;
  height: 55px;

  flex-shrink: 0;

  padding: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  background:
    rgba(255, 255, 255, 0.08);

  border:
    1px solid
    rgba(255, 255, 255, 0.18);

  border-radius: 50%;

  color: #ffffff;

  font-size: 20px;

  cursor: pointer;

  transition: 0.3s ease;
}


.gallery-lightbox-arrow:hover {
  background: #d8a84e;

  border-color: #d8a84e;

  color: #15342e;
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 900px) {

  .premium-gallery-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }


  .gallery-large {
    grid-row:
      span 1 !important;
  }

}


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

@media (max-width: 600px) {

  .gallery-page-hero {
    padding:
      80px 16px;
  }


  .gallery-hero-content h1 {
    font-size: 39px;
  }


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


  .premium-gallery-section {
    padding:
      75px 16px;
  }


  .gallery-heading h2 {
    font-size: 35px;
  }


  .gallery-filters {
    justify-content:
      flex-start;

    flex-wrap: nowrap;

    overflow-x: auto;

    padding-bottom: 8px;

    scrollbar-width: none;
  }


  .gallery-filters::-webkit-scrollbar {
    display: none;
  }


  .gallery-filter {
    flex-shrink: 0;
  }


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

    grid-auto-rows: 330px;
  }


  .premium-gallery-item.gallery-wide {
    grid-column: span 1;
  }


  .gallery-overlay {
    padding: 22px;
  }


  .gallery-view-btn {
    width: 42px;
    height: 42px;

    opacity: 1;

    transform: none;
  }


  .gallery-lightbox {
    padding: 15px;
  }


  .gallery-lightbox-content {
    width: 100%;
  }


  .gallery-lightbox-content img {
    height: 60vh;
  }


  .gallery-lightbox-arrow {
    position: absolute;

    z-index: 5;

    width: 44px;
    height: 44px;
  }


  .gallery-lightbox-prev {
    left: 22px;
  }


  .gallery-lightbox-next {
    right: 22px;
  }


  .gallery-lightbox-close {
    top: 12px;
    right: 12px;

    z-index: 6;
  }

} 

/* =====================================
   SERVICES HERO
===================================== */

.services-page-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 20px;

  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(216, 168, 78, 0.15),
      transparent 25%
    ),
    linear-gradient(
      135deg,
      #102f29,
      #1d5145
    );

  text-align: center;
}


.services-page-hero::before {
  content: "";

  position: absolute;
  width: 500px;
  height: 500px;

  left: -250px;
  bottom: -350px;

  border:
    1px solid
    rgba(255, 255, 255, 0.07);

  border-radius: 50%;
}


.services-hero-content {
  position: relative;
  z-index: 2;

  max-width: 900px;
  margin: 0 auto;

  animation:
    servicesHeroShow
    1s
    cubic-bezier(0.22, 1, 0.36, 1)
    forwards;
}


.services-hero-content > span {
  display: inline-block;
  margin-bottom: 18px;

  color: #d8a84e;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: 4px;
}


.services-hero-content h1 {
  margin: 0 0 22px;

  color: #ffffff;

  font-family: Georgia, serif;

  font-size:
    clamp(42px, 6vw, 72px);

  line-height: 1.08;
}


.services-hero-content h1 strong {
  display: block;

  color: #d8a84e;

  font-weight: inherit;
}


.services-hero-content p {
  max-width: 700px;

  margin: 0 auto;

  color: #c1d4ce;

  font-size: 17px;
  line-height: 1.8;
}


@keyframes servicesHeroShow {

  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}


/* =====================================
   SERVICES SECTION
===================================== */

.services-premium-section {
  position: relative;

  padding: 110px 20px;

  background: #f8faf7;
}


.services-premium-container {
  width: 100%;
  max-width: 1250px;

  margin: 0 auto;
}


/* HEADING */

.services-heading {
  max-width: 780px;

  margin:
    0 auto 55px;

  text-align: center;
}


.services-eyebrow {
  display: inline-block;

  margin-bottom: 14px;

  color: #2f6f5e;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 4px;
}


.services-heading h2 {
  margin:
    0 0 18px;

  color: #15342e;

  font-family: Georgia, serif;

  font-size:
    clamp(36px, 4.5vw, 58px);

  line-height: 1.12;
}


.services-heading h2 span {
  display: block;

  color: #2f6f5e;
}


.services-heading p {
  max-width: 650px;

  margin: 0 auto;

  color: #697873;

  font-size: 16px;
  line-height: 1.8;
}


/* =====================================
   SERVICE GRID
===================================== */

.services-premium-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 22px;
}


/* SERVICE CARD */

.service-premium-card {
  position: relative;

  overflow: hidden;

  padding: 30px;

  display: flex;
  flex-direction: column;

  min-height: 510px;

  background: #ffffff;

  border:
    1px solid #e1e9e5;

  border-radius: 14px;

  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease;
}


.service-premium-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background:
    linear-gradient(
      90deg,
      #2f6f5e,
      #d8a84e
    );

  transform: scaleX(0);

  transform-origin: left;

  transition:
    transform 0.5s ease;
}


.service-premium-card:hover::before {
  transform: scaleX(1);
}


.service-premium-card:hover {
  transform:
    translateY(-12px);

  border-color:
    rgba(47, 111, 94, 0.3);

  box-shadow:
    0 25px 60px
    rgba(21, 52, 46, 0.13);
}


/* CARD TOP */

.service-card-top {
  display: flex;

  align-items: center;
  justify-content: space-between;

  margin-bottom: 28px;
}


.service-number {
  color:
    rgba(47, 111, 94, 0.2);

  font-family: Georgia, serif;

  font-size: 35px;

  font-weight: 700;
}


.service-icon {
  width: 60px;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #e8f2ed;

  border-radius: 16px;

  color: #2f6f5e;

  font-size: 26px;

  transition:
    background 0.4s ease,
    color 0.4s ease,
    transform 0.5s ease;
}


.service-premium-card:hover
.service-icon {
  background: #2f6f5e;

  color: #ffffff;

  transform:
    rotate(-8deg)
    scale(1.08);
}


/* CONTENT */

.service-small-title {
  display: block;

  margin-bottom: 10px;

  color: #d09d3c;

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 2px;
}


.service-premium-card h3 {
  margin:
    0 0 15px;

  color: #15342e;

  font-family: Georgia, serif;

  font-size: 25px;

  line-height: 1.3;
}


.service-premium-card > p {
  margin:
    0 0 20px;

  color: #697873;

  font-size: 14px;

  line-height: 1.8;
}


/* FEATURES */

.service-features {
  margin:
    0 0 25px;

  padding: 0;

  list-style: none;
}


.service-features li {
  position: relative;

  margin-bottom: 10px;

  padding-left: 23px;

  color: #53665f;

  font-size: 12px;

  line-height: 1.5;
}


.service-features li::before {
  content: "✓";

  position: absolute;

  left: 0;
  top: 0;

  color: #2f6f5e;

  font-weight: 800;
}


/* WHATSAPP BUTTON */

.service-whatsapp-btn {
  width: 100%;

  margin-top: auto;

  padding: 14px 17px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  background: #edf4f0;

  border-radius: 6px;

  color: #15342e;

  font-size: 13px;
  font-weight: 800;

  text-decoration: none;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}


.service-whatsapp-btn strong {
  font-size: 19px;

  transition:
    transform 0.3s ease;
}


.service-whatsapp-btn:hover {
  background: #2f6f5e;

  color: #ffffff;

  transform:
    translateY(-2px);
}


.service-whatsapp-btn:hover strong {
  transform:
    translateX(6px);
}


/* =====================================
   CTA SECTION
===================================== */

.services-cta-section {
  padding:
    0 20px 110px;

  background: #f8faf7;
}


.services-cta-inner {
  position: relative;

  overflow: hidden;

  max-width: 1250px;

  margin: 0 auto;

  padding: 50px 55px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 40px;

  background:
    linear-gradient(
      135deg,
      #15342e,
      #245c4f
    );

  border-radius: 16px;
}


.services-cta-inner::after {
  content: "";

  position: absolute;

  width: 280px;
  height: 280px;

  right: -120px;
  bottom: -180px;

  border:
    1px solid
    rgba(255, 255, 255, 0.08);

  border-radius: 50%;
}


.services-cta-inner > div {
  position: relative;
  z-index: 2;

  max-width: 700px;
}


.services-cta-inner > div > span {
  display: block;

  margin-bottom: 10px;

  color: #d8a84e;

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 2px;
}


.services-cta-inner h2 {
  margin:
    0 0 12px;

  color: #ffffff;

  font-family: Georgia, serif;

  font-size:
    clamp(28px, 3.5vw, 42px);

  line-height: 1.2;
}


.services-cta-inner p {
  margin: 0;

  color: #bed2cc;

  font-size: 14px;
  line-height: 1.7;
}


.services-main-whatsapp {
  position: relative;
  z-index: 2;

  flex-shrink: 0;

  padding:
    15px 22px;

  display: inline-flex;

  align-items: center;

  gap: 18px;

  background: #d8a84e;

  border-radius: 6px;

  color: #15342e;

  font-size: 13px;
  font-weight: 800;

  text-decoration: none;

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}


.services-main-whatsapp:hover {
  background: #ffffff;

  transform:
    translateY(-4px);
}


/* =====================================
   SCROLL ANIMATION
===================================== */

.services-reveal {
  opacity: 0;

  transform:
    translateY(45px);

  transition:
    opacity 0.8s ease
      var(--delay, 0s),

    transform 0.8s
      cubic-bezier(
        0.22,
        1,
        0.36,
        1
      )
      var(--delay, 0s);
}


.services-reveal.services-visible {
  opacity: 1;

  transform:
    translateY(0);
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 1000px) {

  .services-premium-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }


  .services-cta-inner {
    flex-direction: column;

    align-items: flex-start;
  }

}


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

@media (max-width: 650px) {

  .services-page-hero {
    padding:
      80px 16px;
  }


  .services-hero-content h1 {
    font-size: 39px;
  }


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


  .services-premium-section {
    padding:
      75px 16px;
  }


  .services-heading h2 {
    font-size: 35px;
  }


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


  .service-premium-card {
    min-height: auto;

    padding: 25px 22px;
  }


  .services-cta-section {
    padding:
      0 16px 75px;
  }


  .services-cta-inner {
    padding:
      35px 25px;
  }


  .services-main-whatsapp {
    width: 100%;

    justify-content:
      space-between;
  }

}


.mhn-developer a {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.mhn-developer a:hover {
    color: #0d6efd; /* ya apna brand color */
}