:root {
  --primary: #0f4c3a;
  --primary-dark: #082e24;
  --secondary: #cda349;
  --secondary-light: #e5c982;

  --text: #1b2823;
  --muted: #69756f;
  --light: #f6f8f6;
  --white: #ffffff;

  --border: #e4e9e6;

  --shadow:
    0 18px 50px rgba(22, 48, 38, 0.10);

  --radius: 20px;
}


/* RESET */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.7;
}

img {
  width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font-family: inherit;
}

.container {
  width: min(1180px, 90%);
  margin-inline: auto;
}


/* HEADER */

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;

  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);

  border-bottom: 1px solid
    rgba(255, 255, 255, 0.3);
}

.navbar {
  min-height: 92px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.brand h2 {
  color: var(--primary);
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 1.2;
}

.brand span {
  display: block;
  margin-top: 3px;
  font-size: 10px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  position: relative;
  font-size: 13px;
  font-weight: 700;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;

  width: 0;
  height: 2px;

  background: var(--secondary);

  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-btn {
  padding: 12px 21px;

  border-radius: 50px;

  background: var(--primary);
  color: #fff;

  font-size: 13px;
  font-weight: 700;

  transition: 0.3s;
}

.nav-btn:hover {
  background: var(--secondary);
}


/* HERO */

.hero {
  min-height: 100vh;

  position: relative;

  display: flex;
  align-items: center;

  background:
    url("images/hero.jpg")
    center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(5, 34, 25, 0.92) 0%,
      rgba(7, 40, 30, 0.73) 45%,
      rgba(7, 40, 30, 0.20) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;

  padding-top: 100px;
}

.hero-text {
  max-width: 780px;
}

.hero-badge {
  display: inline-block;

  padding: 8px 16px;

  margin-bottom: 24px;

  border:
    1px solid
    rgba(255, 255, 255, 0.25);

  border-radius: 50px;

  background:
    rgba(255, 255, 255, 0.08);

  color: #fff;

  letter-spacing: 2px;
  text-transform: uppercase;

  font-size: 11px;
  font-weight: 700;
}

.hero h1 {
  font-family: "Playfair Display", serif;

  color: #fff;

  font-size:
    clamp(52px, 7vw, 92px);

  line-height: 1.02;

  letter-spacing: -2px;
}

.hero h1 span {
  display: block;
  color: var(--secondary-light);
}

.hero-text > p {
  max-width: 670px;

  margin-top: 28px;

  color:
    rgba(255, 255, 255, 0.83);

  font-size: 17px;
  line-height: 1.9;
}

.hero-buttons {
  margin-top: 36px;

  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 50px;

  padding: 0 28px;

  border: none;
  border-radius: 8px;

  cursor: pointer;

  font-size: 14px;
  font-weight: 700;

  transition: 0.3s;
}

.primary-btn {
  background: var(--secondary);
  color: #fff;
}

.primary-btn:hover {
  background: #b98b31;
  transform: translateY(-2px);
}

.secondary-btn {
  border:
    1px solid
    rgba(255, 255, 255, 0.4);

  color: #fff;

  background:
    rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(10px);
}

.secondary-btn:hover {
  background: #fff;
  color: var(--primary);
}

.hero-scroll {
  position: absolute;

  left: 50%;
  bottom: 28px;

  transform: translateX(-50%);

  z-index: 2;

  color:
    rgba(255,255,255,.65);

  font-size: 10px;

  letter-spacing: 2px;
  text-transform: uppercase;

  text-align: center;
}

.scroll-line {
  width: 1px;
  height: 38px;

  margin: 10px auto 0;

  background:
    linear-gradient(
      transparent,
      rgba(255,255,255,.8)
    );
}


/* STATS */

.stats-section {
  position: relative;

  margin-top: -38px;

  z-index: 5;
}

.stats-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  background: #fff;

  border-radius: var(--radius);

  box-shadow: var(--shadow);

  overflow: hidden;
}

.stat-box {
  padding: 33px 20px;

  text-align: center;

  position: relative;
}

.stat-box:not(:last-child)::after {
  content: "";

  position: absolute;

  right: 0;
  top: 28%;

  width: 1px;
  height: 44%;

  background: var(--border);
}

.stat-box h3 {
  color: var(--primary);

  font-family: "Playfair Display", serif;

  font-size: 36px;
}

.stat-box p {
  color: var(--muted);

  margin-top: 4px;

  font-size: 13px;
}


/* COMMON */

.section {
  padding: 110px 0;
}

.section-label {
  color: var(--secondary);

  letter-spacing: 3px;

  font-size: 11px;
  font-weight: 800;
}

.section h2,
.section-heading h2,
.why-content h2 {
  margin-top: 12px;

  font-family: "Playfair Display", serif;

  font-size:
    clamp(38px, 5vw, 55px);

  line-height: 1.15;

  color: var(--primary);
}

.section h2 span,
.section-heading h2 span,
.why-content h2 span {
  color: var(--secondary);
}

.section-heading {
  max-width: 720px;

  text-align: center;

  margin:
    0 auto 58px;
}

.section-heading > p {
  margin-top: 18px;

  color: var(--muted);

  font-size: 15px;
}


/* ABOUT */

.about-grid {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 85px;

  align-items: center;
}

.about-image-wrap {
  position: relative;

  padding: 20px 0 20px 20px;
}

.about-image-wrap > img {
  position: relative;
  z-index: 2;

  height: 570px;

  object-fit: cover;

  border-radius:
    10px 80px 10px 10px;

  box-shadow: var(--shadow);
}

.image-decoration {
  position: absolute;

  left: 0;
  bottom: 0;

  width: 65%;
  height: 50%;

  border-radius: 20px;

  background: #e8eee9;
}

.experience-card {
  position: absolute;

  z-index: 3;

  right: -28px;
  bottom: 55px;

  max-width: 175px;

  padding: 24px;

  color: #fff;

  background: var(--primary);

  border-radius: 15px;

  box-shadow: var(--shadow);
}

.experience-card strong {
  display: block;

  font-family: "Playfair Display", serif;

  color: var(--secondary-light);

  font-size: 43px;

  line-height: 1;
}

.experience-card span {
  display: block;

  margin-top: 8px;

  font-size: 11px;
}

.about-content > p {
  margin-top: 18px;

  color: var(--muted);

  font-size: 15px;
}

.about-features {
  margin: 30px 0;

  display: grid;

  gap: 18px;
}

.feature-item {
  display: flex;

  gap: 15px;

  align-items: flex-start;
}

.feature-icon {
  flex: 0 0 34px;

  width: 34px;
  height: 34px;

  border-radius: 50%;

  display: grid;
  place-items: center;

  background:
    rgba(205, 163, 73, .15);

  color: var(--secondary);

  font-weight: 800;
}

.feature-item h4 {
  font-size: 14px;
}

.feature-item p {
  margin-top: 2px;

  color: var(--muted);

  font-size: 12px;
}

.dark-btn {
  background: var(--primary);
  color: #fff;
}

.dark-btn:hover {
  background: var(--secondary);
}


/* SERVICES */

.services-section {
  background: var(--light);
}

.services-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 25px;
}

.service-card {
  position: relative;

  min-height: 330px;

  padding: 36px 30px;

  background: #fff;

  border: 1px solid var(--border);

  border-radius: 16px;

  overflow: hidden;

  transition: 0.35s;
}

.service-card:hover {
  transform: translateY(-8px);

  box-shadow: var(--shadow);

  border-color: transparent;
}

.featured-card {
  background: var(--primary);
}

.featured-card h3,
.featured-card p,
.featured-card a {
  color: #fff;
}

.service-number {
  position: absolute;

  right: 20px;
  top: 15px;

  font-family: "Playfair Display", serif;

  font-size: 60px;

  color:
    rgba(15, 76, 58, .06);

  font-weight: 800;
}

.featured-card .service-number {
  color:
    rgba(255,255,255,.08);
}

.service-icon {
  width: 58px;
  height: 58px;

  display: grid;
  place-items: center;

  margin-bottom: 25px;

  border-radius: 14px;

  background:
    rgba(205,163,73,.13);

  font-size: 27px;
}

.service-card h3 {
  color: var(--primary);

  font-size: 19px;
}

.service-card p {
  margin-top: 14px;

  color: var(--muted);

  font-size: 13px;
}

.service-card a {
  display: inline-block;

  margin-top: 24px;

  color: var(--secondary);

  font-size: 12px;
  font-weight: 800;
}


/* WHY SECTION */

.why-section {
  position: relative;

  padding: 120px 0;

  background:
    url("images/hero.jpg")
    center / cover no-repeat;

  color: #fff;
}

.why-overlay {
  position: absolute;
  inset: 0;

  background:
    rgba(7, 47, 35, .91);
}

.why-content {
  position: relative;

  max-width: 800px;

  margin: auto;

  text-align: center;
}

.light-label {
  color: var(--secondary-light);
}

.why-content h2 {
  color: #fff;
}

.why-content > p {
  max-width: 650px;

  margin:
    22px auto 0;

  color:
    rgba(255,255,255,.75);
}

.why-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 40px;

  margin-top: 55px;
}

.why-grid div {
  padding: 30px 20px;

  border-top:
    1px solid
    rgba(255,255,255,.2);
}

.why-grid strong {
  color: var(--secondary-light);

  font-family: "Playfair Display", serif;

  font-size: 30px;
}

.why-grid h3 {
  margin-top: 8px;
}

.why-grid p {
  margin-top: 8px;

  color:
    rgba(255,255,255,.65);

  font-size: 12px;
}


/* TEAM */

.team-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 28px;
}

.team-card {
  overflow: hidden;

  background: #fff;

  border:
    1px solid var(--border);

  border-radius: 18px;

  transition: 0.35s;
}

.team-card:hover {
  transform: translateY(-6px);

  box-shadow: var(--shadow);
}

.team-image {
  overflow: hidden;
}

.team-image img {
  height: 420px;

  object-fit: cover;

  transition: 0.5s;
}

.team-card:hover img {
  transform: scale(1.05);
}

.team-details {
  padding: 26px;
  text-align: center;
}

.team-details span {
  color: var(--secondary);

  font-size: 22px;

  letter-spacing: 1px;

  font-weight: 800;

  text-transform: uppercase;
  
  text-align: center;
}

.team-details h3 {
  margin-top: 5px;

  color: var(--primary);

  font-family: "Playfair Display", serif;

  font-size: 20px;
}

.team-details p {
  margin-top: 10px;

  color: var(--muted);

  font-size: 12px;
}


/* CTA */

.cta-section {
  padding:
    0 0 90px;
}

.cta-box {
  padding: 55px 60px;

  border-radius: 22px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 30px;

  background:
    linear-gradient(
      120deg,
      var(--primary-dark),
      var(--primary)
    );

  color: #fff;
}

.cta-box span {
  color: var(--secondary-light);

  font-size: 10px;

  letter-spacing: 3px;

  font-weight: 700;
}

.cta-box h2 {
  max-width: 650px;

  margin-top: 8px;

  font-family: "Playfair Display", serif;

  font-size:
    clamp(30px, 4vw, 44px);

  line-height: 1.15;
}

.white-btn {
  white-space: nowrap;

  background: #fff;

  color: var(--primary);
}

.white-btn:hover {
  background: var(--secondary);

  color: #fff;
}


/* CONTACT */

.contact-section {
  background: var(--light);
}

.contact-grid {
  display: grid;

  grid-template-columns:
    .85fr 1.15fr;

  gap: 80px;
}

.contact-content > p {
  margin: 18px 0 33px;

  color: var(--muted);
}

.contact-item {
  display: flex;

  align-items: center;

  gap: 15px;

  margin-top: 22px;
}

.contact-icon {
  width: 48px;
  height: 48px;

  flex: 0 0 48px;

  display: grid;
  place-items: center;

  border-radius: 12px;

  background: #fff;

  box-shadow:
    0 8px 20px
    rgba(0,0,0,.05);
}

.contact-item span {
  display: block;

  color: var(--muted);

  font-size: 11px;
}

.contact-item strong {
  display: block;

  margin-top: 2px;

  font-size: 13px;
}

.contact-form {
  padding: 40px;

  background: #fff;

  border-radius: 18px;

  box-shadow: var(--shadow);
}

.form-row {
  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 18px;
}

.contact-form > div {
  margin-bottom: 18px;
}

.contact-form label {
  display: block;

  margin-bottom: 7px;

  font-size: 11px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;

  border:
    1px solid var(--border);

  border-radius: 8px;

  background: #fafbfa;

  outline: none;

  padding: 13px 15px;

  font-size: 12px;

  transition: 0.3s;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--secondary);

  background: #fff;

  box-shadow:
    0 0 0 3px
    rgba(205,163,73,.09);
}


/* FOOTER */

.footer {
  padding-top: 80px;

  color:
    rgba(255,255,255,.72);

  background: #071e17;
}

.footer-grid {
  display: grid;

  grid-template-columns:
    2fr 1fr 1.3fr 1fr;

  gap: 55px;

  padding-bottom: 60px;
}

.footer-brand {
  display: flex;

  align-items: center;

  gap: 12px;
}

.footer-brand img {
  width: 56px;
  height: 56px;

  object-fit: contain;
}

.footer-brand h2 {
  color: #fff;

  font-size: 18px;
}

.footer-brand span {
  font-size: 9px;
}

.footer-about > p {
  max-width: 330px;

  margin-top: 20px;

  font-size: 12px;
}

.footer h3 {
  margin-bottom: 18px;

  color: #fff;

  font-size: 14px;
}

.footer a,
.footer > p {
  display: block;

  margin-top: 8px;

  font-size: 11px;
}

.footer a {
  transition: .3s;
}

.footer a:hover {
  color: var(--secondary-light);

  padding-left: 4px;
}

.footer-bottom {
  border-top:
    1px solid
    rgba(255,255,255,.1);
}

.footer-bottom-inner {
  min-height: 70px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 20px;

  font-size: 10px;
}


/* RESPONSIVE */

@media (max-width: 1000px) {

  .nav-links {
    display: none;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .about-image-wrap {
    max-width: 650px;
  }

  .experience-card {
    right: 15px;
  }

}


@media (max-width: 760px) {

  .section {
    padding: 80px 0;
  }

  .navbar {
    min-height: 78px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand h2 {
    font-size: 16px;
  }

  .brand span {
    display: none;
  }

  .nav-btn {
    padding: 10px 16px;

    font-size: 11px;
  }

  .hero {
    min-height: 850px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .stats-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .stat-box:nth-child(2)::after {
    display: none;
  }

  .services-grid,
  .team-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: 55px;
  }

  .about-image-wrap > img {
    height: 440px;
  }

  .cta-box {
    flex-direction: column;

    align-items: flex-start;

    padding: 40px 30px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;

    justify-content: center;

    text-align: center;

    padding: 18px 0;
  }

}


@media (max-width: 480px) {

  .hero h1 {
    font-size: 43px;
  }

  .hero-text > p {
    font-size: 14px;
  }

  .hero-buttons {
    flex-direction: column;

    align-items: flex-start;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-box::after {
    display: none;
  }

  .stat-box {
    border-bottom:
      1px solid var(--border);
  }

  .about-image-wrap {
    padding-left: 0;
  }

  .experience-card {
    position: relative;

    right: auto;
    bottom: auto;

    margin-top: -35px;
    margin-left: 20px;
  }

}
/* ===================================
   WINNING MOVEMENT
=================================== */

.winning-section {
  padding: 110px 0;
  background: #ffffff;
}

.winning-gallery {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  grid-auto-rows: 280px;

  gap: 20px;
}


/* IMAGE CARD */

.winning-card {
  position: relative;

  overflow: hidden;

  border-radius: 18px;

  cursor: pointer;

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.08);
}


/* BIG IMAGE */

.winning-large {
  grid-row: span 1;
}


/* WIDE IMAGE */

.winning-wide {
  grid-column: span 2;
}


/* IMAGE */

.winning-card img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 0.6s ease;
}


/* DARK OVERLAY */

.winning-card::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(5, 40, 30, 0.85),
      rgba(5, 40, 30, 0.05) 65%
    );

  transition: 0.4s;
}


/* TEXT */

.winning-overlay {
  position: absolute;

  left: 25px;
  right: 25px;
  bottom: 25px;

  z-index: 3;

  color: #ffffff;

  transform: translateY(8px);

  transition: 0.4s;
}

.winning-overlay span {
  display: block;

  margin-bottom: 5px;

  color: #e5c982;

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;
}

.winning-overlay h3 {
  font-family:
    "Playfair Display",
    serif;

  font-size: 22px;

  line-height: 1.2;
}


/* HOVER EFFECT */

.winning-card:hover img {
  transform: scale(1.1);
}

.winning-card:hover::after {
  background:
    linear-gradient(
      to top,
      rgba(5, 40, 30, 0.95),
      rgba(5, 40, 30, 0.15)
    );
}

.winning-card:hover
.winning-overlay {
  transform: translateY(0);
}


/* TABLET */

@media (max-width: 900px) {

  .winning-gallery {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .winning-wide {
    grid-column: span 1;
  }

}


/* MOBILE */

@media (max-width: 600px) {

  .winning-section {
    padding: 75px 0;
  }

  .winning-gallery {
    display: grid;

    grid-template-columns: 1fr;

    grid-auto-rows: 300px;
  }

  .winning-large,
  .winning-wide {
    grid-row: span 1;
    grid-column: span 1;
  }

}

/* ==========================================
   GALLERY SECTION
========================================== */

.gallery-section {
  padding: 110px 0;
  background: #f7f9f7;
}


/* GALLERY GRID */

.gallery-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  grid-auto-rows: 270px;

  gap: 18px;
}


/* GALLERY CARD */

.gallery-item {
  position: relative;

  overflow: hidden;

  border-radius: 16px;

  cursor: pointer;

  box-shadow:
    0 8px 25px
    rgba(0, 0, 0, 0.08);
}


/* LARGE IMAGE */

.gallery-large {
  grid-row: span 2;
}


/* WIDE IMAGE */

.gallery-wide {
  grid-column: span 2;
}


/* IMAGE */

.gallery-item img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 0.6s ease;
}


/* OVERLAY */

.gallery-overlay {
  position: absolute;
  inset: 0;

  z-index: 2;

  display: flex;

  align-items: flex-end;

  padding: 25px;

  background:
    linear-gradient(
      to top,
      rgba(4, 38, 28, 0.92),
      rgba(4, 38, 28, 0.05) 65%
    );

  opacity: 0;

  transition: 0.4s ease;
}


/* TEXT */

.gallery-overlay span {
  display: block;

  margin-bottom: 4px;

  color: #e5c982;

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 2px;
}

.gallery-overlay h3 {
  color: #ffffff;

  font-family:
    "Playfair Display",
    serif;

  font-size: 21px;

  line-height: 1.3;
}


/* HOVER */

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover
.gallery-overlay {
  opacity: 1;
}


/* SMALL PLUS ICON */

.gallery-item::after {
  content: "+";

  position: absolute;

  top: 20px;
  right: 20px;

  z-index: 3;

  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background:
    rgba(255, 255, 255, 0.92);

  color: #0f4c3a;

  font-size: 24px;
  font-weight: 300;

  opacity: 0;

  transform: translateY(-10px);

  transition: 0.35s;
}

.gallery-item:hover::after {
  opacity: 1;

  transform: translateY(0);
}


/* TABLET */

@media (max-width: 900px) {

  .gallery-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .gallery-wide {
    grid-column: span 1;
  }

}


/* MOBILE */

@media (max-width: 600px) {

  .gallery-section {
    padding: 75px 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;

    grid-auto-rows: 300px;
  }

  .gallery-large,
  .gallery-wide {
    grid-row: span 1;
    grid-column: span 1;
  }

  .gallery-overlay {
    opacity: 1;
  }

}

/* ==========================================
   TESTIMONIALS
========================================== */

.testimonials-section {
  padding: 110px 0;
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #f8faf8 0%,
      #eef4f0 100%
    );
}


/* BACKGROUND DECORATION */

.testimonials-section::before {
  content: "“";

  position: absolute;

  top: -100px;
  left: 3%;

  font-family: Georgia, serif;
  font-size: 400px;

  line-height: 1;

  color: rgba(15, 76, 58, 0.035);

  pointer-events: none;
}


/* GRID */

.testimonials-grid {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 25px;
}


/* CARD */

.testimonial-card {
  position: relative;

  display: flex;
  flex-direction: column;

  min-height: 365px;

  padding: 38px;

  overflow: hidden;

  background: #ffffff;

  border:
    1px solid
    rgba(15, 76, 58, 0.08);

  border-radius: 20px;

  box-shadow:
    0 12px 40px
    rgba(15, 76, 58, 0.06);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}


/* TOP GOLD LINE */

.testimonial-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background:
    linear-gradient(
      90deg,
      #cda349,
      #e5c982
    );

  transform: scaleX(0);
  transform-origin: left;

  transition: 0.4s;
}


.testimonial-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 20px 55px
    rgba(15, 76, 58, 0.12);
}


.testimonial-card:hover::before {
  transform: scaleX(1);
}


/* QUOTE */

.quote-icon {
  position: absolute;

  top: 15px;
  right: 28px;

  font-family: Georgia, serif;

  font-size: 95px;

  line-height: 1;

  color:
    rgba(205, 163, 73, 0.13);
}


/* RATING */

.testimonial-rating {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;

  align-items: flex-start;

  gap: 4px;

  margin-bottom: 22px;
}


.testimonial-rating span {
  color: #e4aa28;

  font-size: 18px;

  letter-spacing: 3px;
}


.testimonial-rating small {
  color: #89928e;

  font-size: 10px;
}


/* REVIEW TEXT */

.testimonial-text {
  position: relative;
  z-index: 2;

  flex: 1;

  color: #56625d;

  font-size: 14px;

  line-height: 1.9;
}


/* PERSON */

.testimonial-person {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;

  gap: 15px;

  margin-top: 28px;

  padding-top: 22px;

  border-top:
    1px solid #edf0ee;
}


/* PROFILE IMAGE */

.testimonial-person img {
  width: 62px;
  height: 62px;

  flex: 0 0 62px;

  object-fit: cover;

  border-radius: 50%;

  padding: 3px;

  border:
    2px solid #cda349;

  background: #ffffff;
}


/* NAME */

.testimonial-person h3 {
  color: #0f4c3a;

  font-family:
    "Playfair Display",
    serif;

  font-size: 17px;

  line-height: 1.2;
}


.testimonial-person span {
  display: block;

  margin-top: 5px;

  color: #9a7b38;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 1.5px;

  text-transform: uppercase;
}


/* TABLET */

@media (max-width: 850px) {

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

}


/* MOBILE */

@media (max-width: 600px) {

  .testimonials-section {
    padding: 75px 0;
  }

  .testimonial-card {
    min-height: auto;

    padding: 30px 24px;
  }

  .testimonial-text {
    font-size: 13px;
  }

}

//* =========================================
   HERO
========================================= */

.hero {
  position: relative;
  min-height: 100vh;

  display: flex;
  align-items: center;

  overflow: hidden;

  background: #061f17;
}


/* =========================================
   HERO BACKGROUND SLIDER
========================================= */

.hero-bg-slider {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  z-index: 0;
}


.hero-bg-slide {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 0;

  transform: scale(1.08);

  transition:
    opacity 1s ease-in-out,
    transform 4s ease-in-out;
}


.hero-bg-slide.active {
  opacity: 1;
  transform: scale(1);
}


/* =========================================
   DARK GREEN OVERLAY
========================================= */

.hero-overlay {
  position: absolute;
  inset: 0;

  z-index: 1;

  background:
    linear-gradient(
      90deg,
      rgba(2, 28, 20, 0.95) 0%,
      rgba(3, 42, 30, 0.86) 30%,
      rgba(3, 42, 30, 0.62) 55%,
      rgba(0, 0, 0, 0.25) 78%,
      rgba(0, 0, 0, 0.10) 100%
    );
}


/* =========================================
   HERO CONTENT
========================================= */

.hero-content {
  position: relative;

  z-index: 3;

  padding-top: 120px;
}


.hero-text {
  max-width: 900px;
}


/* BADGE */

.hero-badge {
  display: inline-block;

  padding: 11px 20px;

  margin-bottom: 35px;

  border: 1px solid rgba(255, 255, 255, 0.35);

  border-radius: 50px;

  background: rgba(255, 255, 255, 0.06);

  color: #ffffff;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;

  backdrop-filter: blur(5px);
}


/* =========================================
   TITLE
========================================= */

.hero h1 {
  margin: 0;

  max-width: 950px;

  font-family:
    "Playfair Display",
    Georgia,
    serif;

  font-size: clamp(55px, 6vw, 100px);

  line-height: 0.98;

  color: #ffffff;
}


.hero h1 span {
  display: block;

  color: #e0c071;
}


/* =========================================
   PARAGRAPH
========================================= */

.hero-text > p {
  max-width: 800px;

  margin-top: 32px;

  color: rgba(255, 255, 255, 0.90);

  font-size: 17px;

  line-height: 1.9;
}


/* =========================================
   BUTTONS
========================================= */

.hero-buttons {
  display: flex;

  gap: 15px;

  margin-top: 38px;
}


.hero-buttons .primary-btn {
  background: #cda349;

  color: #ffffff;

  border: 1px solid #cda349;
}


.hero-buttons .primary-btn:hover {
  background: #e1c476;

  border-color: #e1c476;

  color: #14392e;

  transform: translateY(-2px);
}


.hero-buttons .secondary-btn {
  background: rgba(255, 255, 255, 0.08);

  color: #ffffff;

  border: 1px solid rgba(255, 255, 255, 0.45);

  backdrop-filter: blur(6px);
}


.hero-buttons .secondary-btn:hover {
  background: #ffffff;

  color: #14392e;
}


/* =========================================
   SCROLL INDICATOR
========================================= */

.hero-scroll {
  position: absolute;

  left: 50%;
  bottom: 25px;

  transform: translateX(-50%);

  z-index: 5;

  display: flex;

  flex-direction: column;

  align-items: center;

  color: rgba(255, 255, 255, 0.72);
}


.hero-scroll span {
  font-size: 10px;

  font-weight: 700;

  letter-spacing: 2px;

  text-transform: uppercase;
}


.scroll-line {
  width: 1px;
  height: 42px;

  margin-top: 10px;

  background:
    linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.8),
      transparent
    );
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

  .hero {
    min-height: 850px;
  }

  .hero-content {
    padding-top: 120px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-text > p {
    font-size: 14px;
  }

  .hero-buttons {
    flex-wrap: wrap;
  }

  .hero-scroll {
    display: none;
  }

  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(2, 28, 20, 0.95),
        rgba(2, 28, 20, 0.75)
      );
  }
}