/* ================================
   YIDA PARK MARENTE
   DESIGN SYSTEM
================================ */

:root {
  --primary: #1f5c3a;
  --primary-dark: #143d27;
  --secondary: #6fa66f;

  --accent: #f4c542;

  --white: #ffffff;
  --cream: #f8f6ef;
  --light: #f3f5f2;

  --text: #1d2a22;
  --text-light: #68736c;

  --border: rgba(31, 92, 58, 0.12);

  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --container: 1200px;
}

/* ========================================
   YIDA PARK MARENTE
   GLOBAL RESET
======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #f8f7f2;
  color: #173d28;
}

a {
  text-decoration: none;
}

/* ========================================
   NAVBAR
======================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 80px;

  z-index: 1000;

  background: transparent;

  transition:
    background 0.3s ease,
    box-shadow 0.3s ease,
    backdrop-filter 0.3s ease;
}

/* ========================================
   NAVBAR CONTAINER
======================================== */

.navbar-container {
  width: min(100% - 60px, 1380px);

  margin: 0 auto;

  display: flex;
  align-items: center;

  gap: 35px;
}

/* ========================================
   LOGO
======================================== */

.navbar-logo {
  display: flex;
  align-items: center;

  width: 75px;

  flex-shrink: 0;

  transition: transform 0.3s ease;
}

.navbar-logo img {
  display: block;

  width: 100%;
  height: auto;
}

.navbar-logo:hover {
  transform: translateY(-1px);
}

/* ========================================
   DESKTOP MENU
======================================== */

.navbar-menu {
  display: flex;
  align-items: center;

  gap: 30px;

  margin-left: auto;
}

.navbar-menu a {
  position: relative;

  padding: 8px 0;

  color: #ffffff;

  font-size: 13px;
  font-weight: 500;

  letter-spacing: 0.2px;

  transition: color 0.3s ease;
}

/* Underline */

.navbar-menu a::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: 0;

  width: 0;
  height: 2px;

  transform: translateX(-50%);

  background: #f4c542;

  border-radius: 10px;

  transition: width 0.3s ease;
}

.navbar-menu a:hover,
.navbar-menu a.active {
  color: #f4c542;
}

.navbar-menu a:hover::after,
.navbar-menu a.active::after {
  width: 65%;
}

/* ========================================
   NAVBAR ACTIONS
======================================== */

.navbar-actions {
  display: flex;
  align-items: center;

  gap: 10px;

  flex-shrink: 0;
}

/* ========================================
   LANGUAGE
======================================== */

/* ========================================
   LANGUAGE SWITCHER
======================================== */

/* ========================================
   LANGUAGE SWITCHER
======================================== */

.language-switcher {
  position: relative;
}

/* ========================================
   LANGUAGE BUTTON
======================================== */

.language-btn {
  display: flex;

  align-items: center;

  gap: 7px;

  padding: 8px 10px;

  border: 0;

  background: transparent;

  color: #ffffff;

  font-family: inherit;

  font-size: 10px;

  font-weight: 500;

  cursor: pointer;

  transition: opacity 0.25s ease;
}

.language-btn:hover {
  opacity: 0.75;
}

.language-globe {
  font-size: 14px;

  line-height: 1;
}

.language-chevron {
  margin-left: 1px;

  font-size: 12px;

  line-height: 1;

  transition: transform 0.25s ease;
}

.language-switcher.active .language-chevron {
  transform: rotate(180deg);
}

/* ========================================
   LANGUAGE DROPDOWN
======================================== */

.language-dropdown {
  position: absolute;

  top: calc(100% + 10px);

  right: 0;

  min-width: 145px;

  padding: 6px;

  border: 1px solid rgba(23, 61, 40, 0.08);

  border-radius: 10px;

  background: #ffffff;

  box-shadow: 0 12px 30px rgba(20, 45, 30, 0.12);

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  transform: translateY(-5px);

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;

  z-index: 1000;
}

.language-switcher.active .language-dropdown {
  opacity: 1;

  visibility: visible;

  pointer-events: auto;

  transform: translateY(0);
}

/* ========================================
   LANGUAGE OPTIONS
======================================== */

.language-dropdown button {
  display: flex;

  align-items: center;

  gap: 9px;

  width: 100%;

  padding: 9px 10px;

  border: 0;

  border-radius: 7px;

  background: transparent;

  color: #173d28;

  font-family: inherit;

  font-size: 10px;

  text-align: left;

  cursor: pointer;

  transition: background 0.2s ease;
}

.language-dropdown button:hover {
  background: #f1f5f1;
}

.language-dropdown button.active {
  background: #e8f0e8;

  font-weight: 600;
}

/* ========================================
   VISIT US
======================================== */

.nav-cta {
  height: 40px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  padding: 0 18px;

  color: #173d28;

  background: #f4c542;

  border-radius: 50px;

  font-size: 12px;
  font-weight: 700;

  box-shadow: 0 6px 18px rgba(244, 197, 66, 0.18);

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.nav-cta:hover {
  background: #ffd75b;

  transform: translateY(-2px);

  box-shadow: 0 10px 25px rgba(244, 197, 66, 0.3);
}

.nav-cta span {
  font-size: 15px;

  transition: transform 0.3s ease;
}

.nav-cta:hover span {
  transform: translate(2px, -2px);
}

/* ========================================
   SCROLLED NAVBAR
======================================== */

.navbar.scrolled {
  padding: 12px 0;

  background: rgba(20, 61, 39, 0.95) !important;

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.14);
}
/* .navbar.scrolled {
    background: red !important;
} */
.navbar.scrolled .navbar-logo {
  width: 75px;
}

/* ========================================
   MOBILE BUTTON
======================================== */

.menu-toggle {
  display: none;

  width: 42px;
  height: 42px;

  margin-left: auto;

  padding: 10px;

  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 5px;

  background: rgba(255, 255, 255, 0.1);

  border: 1px solid rgba(255, 255, 255, 0.2);

  border-radius: 50%;

  cursor: pointer;
}

.menu-toggle span {
  display: block;

  width: 18px;
  height: 2px;

  background: #ffffff;

  border-radius: 10px;

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

/* Hamburger active */

.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
======================================== */

.mobile-menu {
  display: none;
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1050px) {
  .navbar-menu {
    gap: 20px;
  }

  .navbar-menu a {
    font-size: 12px;
  }
}

@media (max-width: 900px) {
  .navbar {
    padding: 16px 0;
  }

  .navbar.scrolled {
    padding: 11px 0;
  }

  .navbar-container {
    width: min(100% - 32px, 1380px);
  }
  .navbar-logo {
    width: 50px;
  }

  .navbar.scrolled .navbar-logo {
    width: 50px;
  }

  .navbar-menu,
  .navbar-actions {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  /* Mobile dropdown */

  .mobile-menu {
    position: absolute;

    top: calc(100% + 10px);

    left: 16px;
    right: 16px;

    display: flex;
    flex-direction: column;

    padding: 20px;

    background: rgba(20, 61, 39, 0.97);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 22px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-10px) scale(0.98);

    transition:
      opacity 0.3s ease,
      visibility 0.3s ease,
      transform 0.3s ease;
  }

  .mobile-menu.active {
    opacity: 1;
    visibility: visible;

    transform: translateY(0) scale(1);
  }

  /* Mobile links */

  .mobile-menu > a:not(.mobile-cta) {
    padding: 14px 4px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 500;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    transition:
      color 0.3s ease,
      padding-left 0.3s ease;
  }

  .mobile-menu > a:not(.mobile-cta):hover {
    color: #f4c542;

    padding-left: 8px;
  }

  /* ========================================
   MOBILE LANGUAGE
======================================== */

  .mobile-language {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 14px;

    margin-top: 8px;

    padding: 16px 4px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-language-label {
    color: rgba(255, 255, 255, 0.45);

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;
  }

  .mobile-language-options {
    display: flex;

    align-items: center;

    gap: 7px;
  }

  .mobile-language-options button {
    padding: 0;

    border: 0;

    background: transparent;

    color: rgba(255, 255, 255, 0.5);

    font-family: inherit;

    font-size: 10px;

    font-weight: 500;

    cursor: pointer;

    transition: color 0.2s ease;
  }

  .mobile-language-options button:hover {
    color: #ffffff;
  }

  .mobile-language-options button.active {
    color: #ffffff;

    font-weight: 700;
  }

  .mobile-language-options > span {
    color: rgba(255, 255, 255, 0.25);

    font-size: 9px;
  }

  /* Mobile CTA */

  .mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 44px;

    margin-top: 16px;

    color: #173d28;

    background: #f4c542;

    border-radius: 50px;

    font-size: 13px;
    font-weight: 700;
  }
}

@media (max-width: 480px) {

  .navbar-container {
    width: min(100% - 28px, 1380px);
  }

  .navbar-logo {
    width: 50px;
  }

  .navbar.scrolled .navbar-logo {
    width: 50px;
  }

  .mobile-menu {
    left: 14px;
    right: 14px;
  }

  .mobile-language {
    padding-top: 14px;
    padding-bottom: 14px;
  }

}

/* ========================================
   HERO
======================================== */

.hero {
  position: relative;

  min-height: 100vh;
  height: 100svh;

  overflow: hidden;

  display: flex;
  align-items: center;

  color: #ffffff;
}

/* ========================================
   BACKGROUND
======================================== */

.hero-background {
  position: absolute;

  inset: 0;

  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  display: block;

  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1);
  }
}

/* ========================================
   OVERLAY
======================================== */

.hero-overlay {
  position: absolute;

  inset: 0;

  z-index: 1;

  background: linear-gradient(
    90deg,
    rgba(7, 30, 19, 0.82) 0%,
    rgba(7, 30, 19, 0.55) 38%,
    rgba(7, 30, 19, 0.18) 72%,
    rgba(7, 30, 19, 0.25) 100%
  );
}

/* Bottom darkening */

.hero-overlay::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(0deg, rgba(5, 25, 15, 0.55) 0%, transparent 35%);
}

/* ========================================
   HERO CONTAINER
======================================== */

.hero-container {
  position: relative;

  z-index: 2;

  width: min(100% - 60px, 1380px);

  margin: 0 auto;

  padding-top: 80px;
}

/* ========================================
   HERO CONTENT
======================================== */

.hero-content {
  max-width: 720px;

  animation: heroContentIn 1s ease-out both;
}

@keyframes heroContentIn {
  from {
    opacity: 0;

    transform: translateY(30px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

/* ========================================
   EYEBROW
======================================== */

.hero-eyebrow {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  margin-bottom: 22px;

  color: #f4c542;

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 3px;

  text-transform: uppercase;
}

.hero-eyebrow::before {
  content: "";

  width: 28px;
  height: 1px;

  background: #f4c542;
}

/* ========================================
   TITLE
======================================== */

.hero-title {
  margin: 0;

  color: #ffffff;

  font-size: clamp(52px, 7vw, 96px);

  font-weight: 700;

  line-height: 0.95;

  letter-spacing: -3px;
}

.hero-title span {
  display: block;

  color: #f4c542;
}

/* ========================================
   DESCRIPTION
======================================== */

.hero-description {
  max-width: 520px;

  margin-top: 28px;

  color: rgba(255, 255, 255, 0.84);

  font-size: 16px;

  line-height: 1.7;
}

/* ========================================
   HERO ACTIONS
======================================== */

.hero-actions {
  display: flex;

  align-items: center;

  gap: 12px;

  margin-top: 34px;
}

/* ========================================
   HERO BUTTON
======================================== */

.hero-btn {
  min-height: 48px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 10px;

  padding: 0 21px;

  border-radius: 50px;

  font-size: 12px;
  font-weight: 700;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

/* Primary */

.hero-btn-primary {
  color: #173d28;

  background: #f4c542;
}

.hero-btn-primary:hover {
  background: #ffd75b;

  transform: translateY(-3px);
}

/* Outline */

.hero-btn-outline {
  color: #ffffff;

  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.45);

  backdrop-filter: blur(8px);
}

.hero-btn-outline:hover {
  background: rgba(255, 255, 255, 0.16);

  border-color: rgba(255, 255, 255, 0.7);

  transform: translateY(-3px);
}

/* ========================================
   HERO BOTTOM
======================================== */

.hero-bottom {
  position: absolute;

  z-index: 2;

  left: 0;
  right: 0;
  bottom: 28px;

  width: min(100% - 60px, 1380px);

  margin: 0 auto;

  display: flex;

  align-items: center;

  justify-content: space-between;
}

/* Location */

.hero-location {
  display: flex;

  align-items: center;

  gap: 9px;

  color: rgba(255, 255, 255, 0.75);

  font-size: 11px;

  letter-spacing: 0.5px;
}

.hero-location-icon {
  color: #f4c542;

  font-size: 9px;
}

/* Scroll */

.hero-scroll {
  display: flex;

  align-items: center;

  gap: 12px;

  color: rgba(255, 255, 255, 0.65);

  font-size: 10px;

  letter-spacing: 1.5px;

  text-transform: uppercase;
}

.hero-scroll-line {
  width: 45px;
  height: 1px;

  background: rgba(255, 255, 255, 0.5);

  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0%,
  100% {
    width: 25px;
  }

  50% {
    width: 55px;
  }
}

/* ========================================
   MOBILE HERO
======================================== */

@media (max-width: 900px) {
  .hero-container {
    width: min(100% - 32px, 1380px);

    padding-top: 60px;
  }

  .hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(7, 30, 19, 0.75),
      rgba(7, 30, 19, 0.35)
    );
  }

  .hero-title {
    font-size: clamp(48px, 13vw, 72px);

    letter-spacing: -2px;
  }

  .hero-description {
    max-width: 430px;

    font-size: 14px;
  }

  .hero-bottom {
    width: min(100% - 32px, 1380px);
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 720px;
    height: 100svh;
  }

  .hero-container {
    width: min(100% - 28px, 1380px);

    padding-top: 50px;
  }

  .hero-background img {
    object-position: 60% center;
  }

  .hero-overlay {
    background: linear-gradient(
      90deg,
      rgba(7, 30, 19, 0.78),
      rgba(7, 30, 19, 0.42)
    );
  }

  .hero-title {
    font-size: clamp(44px, 14vw, 64px);

    line-height: 0.98;
  }

  .hero-description {
    margin-top: 22px;

    font-size: 13px;

    line-height: 1.65;
  }

  .hero-actions {
    flex-direction: column;

    align-items: stretch;

    max-width: 250px;

    margin-top: 28px;
  }

  .hero-btn {
    width: 100%;
  }

  .hero-bottom {
    width: min(100% - 28px, 1380px);

    bottom: 20px;
  }

  .hero-scroll {
    display: none;
  }
}
/* ========================================
   ABOUT YIDA PARK
======================================== */

.about-section {
  position: relative;

  padding: 130px 0;

  background: #f8f7f2;

  overflow: hidden;
}

/* ========================================
   CONTAINER
======================================== */

.about-container {
  width: min(100% - 60px, 1180px);

  margin: 0 auto;

  display: grid;

  grid-template-columns:
    minmax(0, 0.95fr)
    minmax(0, 1fr);

  align-items: center;

  gap: 90px;
}

/* ========================================
   IMAGE
======================================== */

.about-image-wrapper {
  position: relative;

  padding-bottom: 35px;
}

.about-image {
  position: relative;

  width: 100%;

  aspect-ratio: 0.82;

  overflow: hidden;

  border-radius: 28px;

  box-shadow: 0 25px 60px rgba(20, 61, 39, 0.12);
}

.about-image::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(180deg, transparent 65%, rgba(10, 35, 22, 0.18));
}

.about-image video {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.7s ease;
}

/* .about-image:hover img {
  transform: scale(1.04);
} */

/* ========================================
   IMAGE LABEL
======================================== */

.about-image-label {
  position: absolute;

  right: -20px;
  bottom: 0;

  display: flex;

  align-items: center;

  gap: 14px;

  padding: 15px 20px;

  background: #173d28;

  color: #ffffff;

  border-radius: 14px;

  box-shadow: 0 15px 35px rgba(20, 61, 39, 0.18);

  font-size: 11px;

  z-index: 2;
}

.about-image-label span:first-child {
  color: #f4c542;

  font-size: 18px;

  font-weight: 700;
}

.about-image-label span:last-child {
  opacity: 0.8;

  letter-spacing: 0.5px;
}

/* ========================================
   CONTENT
======================================== */

.about-content {
  max-width: 540px;
}

/* ========================================
   EYEBROW
======================================== */

.section-eyebrow {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  color: #5e7d64;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 2.5px;
}

.section-eyebrow::before {
  content: "";

  width: 25px;
  height: 1px;

  background: #f4c542;
}

/* ========================================
   TITLE
======================================== */

.about-title {
  margin-top: 18px;

  color: #173d28;

  font-size: clamp(42px, 5vw, 66px);

  font-weight: 700;

  line-height: 0.98;

  letter-spacing: -2.5px;
}

.about-title span {
  display: block;

  color: #5e7d64;
}

/* ========================================
   DESCRIPTION
======================================== */

.about-description {
  max-width: 510px;

  margin-top: 28px;

  color: #526257;

  font-size: 15px;

  line-height: 1.8;
}

.about-description.secondary {
  margin-top: 14px;

  color: #78847b;
}

/* ========================================
   HIGHLIGHTS
======================================== */

.about-highlights {
  display: flex;

  align-items: center;

  gap: 0;

  margin-top: 35px;

  border-top: 1px solid rgba(23, 61, 40, 0.12);

  border-bottom: 1px solid rgba(23, 61, 40, 0.12);
}

.about-highlight {
  flex: 1;

  display: flex;

  flex-direction: column;

  gap: 7px;

  padding: 18px 18px 18px 0;
}

.about-highlight + .about-highlight {
  padding-left: 18px;

  border-left: 1px solid rgba(23, 61, 40, 0.12);
}

.highlight-number {
  color: #f4c542;

  font-size: 11px;

  font-weight: 700;
}

.highlight-text {
  color: #173d28;

  font-size: 13px;

  font-weight: 600;
}

/* ========================================
   LINK
======================================== */

.about-link {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  margin-top: 32px;

  color: #173d28;

  font-size: 12px;

  font-weight: 700;

  border-bottom: 1px solid rgba(23, 61, 40, 0.35);

  padding-bottom: 6px;

  transition:
    color 0.3s ease,
    gap 0.3s ease;
}

.about-link:hover {
  color: #8b7015;

  gap: 15px;
}

.about-link-arrow {
  font-size: 16px;
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 900px) {
  .about-section {
    padding: 90px 0;
  }

  .about-container {
    width: min(100% - 32px, 700px);

    grid-template-columns: 1fr;

    gap: 55px;
  }

  .about-content {
    max-width: none;
  }

  .about-image-wrapper {
    max-width: 550px;

    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .about-section {
    padding: 75px 0;
  }

  .about-container {
    width: min(100% - 28px, 700px);

    gap: 45px;
  }

  .about-image {
    border-radius: 22px;
  }

  .about-image-label {
    right: -5px;

    padding: 12px 15px;
  }

  .about-title {
    font-size: 45px;

    letter-spacing: -1.8px;
  }

  .about-description {
    font-size: 14px;

    line-height: 1.75;
  }

  .about-highlights {
    display: grid;

    grid-template-columns: repeat(3, 1fr);
  }

  .about-highlight {
    padding: 15px 8px;
  }

  .about-highlight + .about-highlight {
    padding-left: 8px;
  }

  .highlight-text {
    font-size: 11px;
  }
}
/* ========================================
   EXPLORE YIDA PARK
======================================== */

.explore-yida-section {
  padding: 120px 0;

  background: #ffffff;
}

.explore-yida-container {
  width: min(100% - 60px, 1180px);

  margin: 0 auto;
}

/* ========================================
   HEADER
======================================== */

.explore-yida-header {
  display: grid;

  grid-template-columns: 1fr 0.7fr;

  align-items: end;

  gap: 80px;

  margin-bottom: 55px;
}

.explore-yida-title {
  margin-top: 18px;

  color: #173d28;

  font-size: clamp(42px, 5vw, 64px);

  line-height: 0.98;

  letter-spacing: -2.5px;
}

.explore-yida-title span {
  display: block;

  color: #6b806e;
}

.explore-yida-intro {
  max-width: 400px;

  margin-bottom: 5px;

  color: #69766d;

  font-size: 14px;

  line-height: 1.8;
}

/* ========================================
   GRID
======================================== */

.explore-yida-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  grid-template-rows: repeat(2, 280px);

  gap: 18px;
}

/* ========================================
   CARD
======================================== */

.explore-card {
  position: relative;

  display: block;

  overflow: hidden;

  border-radius: 22px;

  text-decoration: none;

  background: #173d28;
}


.explore-featured {
  grid-column: auto;
  grid-row: auto;
}

.explore-card img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.7s ease;
}

.explore-card:hover img {
  transform: scale(1.06);
}

/* ========================================
   OVERLAY
======================================== */

.explore-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.02) 30%,
    rgba(7, 35, 20, 0.82) 100%
  );
}

/* ========================================
   CONTENT
======================================== */

.explore-card-content {
  position: absolute;

  left: 22px;
  right: 22px;
  bottom: 20px;

  display: grid;

  grid-template-columns: auto 1fr auto;

  align-items: end;

  gap: 14px;

  color: white;
}

.explore-number {
  align-self: start;

  color: #f4c542;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 1px;
}

.explore-card h3 {
  margin: 0;

  font-size: 20px;

  font-weight: 600;
}

.explore-card p {
  max-width: 260px;

  margin-top: 7px;

  color: rgba(255, 255, 255, 0.72);

  font-size: 11px;

  line-height: 1.5;
}

.explore-arrow {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

  border: 1px solid rgba(255, 255, 255, 0.35);

  border-radius: 50%;

  font-size: 17px;

  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.explore-card:hover .explore-arrow {
  background: #f4c542;

  color: #173d28;

  border-color: #f4c542;
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 900px) {
  .explore-yida-section {
    padding: 90px 0;
  }

  .explore-yida-header {
    grid-template-columns: 1fr;

    gap: 25px;
  }

  .explore-yida-intro {
    max-width: 600px;
  }

 /* 2 COLUMNS */

  .explore-yida-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    grid-template-rows:
      repeat(3, 260px);

    gap: 14px;
  }


  .explore-featured {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 600px) {
  .explore-yida-section {
    padding: 75px 0;
  }

  .explore-yida-container {
    width: min(100% - 28px, 600px);
  }

  .explore-yida-title {
    font-size: 44px;
  }

  /* 1 COLUMN */

  .explore-yida-grid {
    grid-template-columns: 1fr;

    grid-template-rows: none;

    gap: 14px;
  }


  .explore-card {
    height: 250px;

    border-radius: 18px;
  }


  .explore-featured {
    grid-column: auto;
    grid-row: auto;
  }
}
/* ========================================
   WHY YIDA PARK
======================================== */

.why-yida-section {
  padding: 120px 0;

  background: #173d28;

  color: #ffffff;

  overflow: hidden;
}

.why-yida-container {
  width: min(100% - 60px, 1180px);

  margin: 0 auto;
}

/* ========================================
   HEADER
======================================== */

.why-yida-header {
  max-width: 700px;

  margin-bottom: 70px;
}

.why-yida-header .section-eyebrow {
  color: #f4c542;
}

.why-yida-header .section-eyebrow::before {
  background: #f4c542;
}

.why-yida-title {
  margin-top: 18px;

  color: #ffffff;

  font-size: clamp(42px, 5vw, 64px);

  line-height: 0.98;

  letter-spacing: -2.5px;
}

.why-yida-title span {
  display: block;

  color: #aebdaf;
}

.why-yida-description {
  max-width: 520px;

  margin-top: 25px;

  color: rgba(255, 255, 255, 0.65);

  font-size: 14px;

  line-height: 1.8;
}

/* ========================================
   HIGHLIGHTS
======================================== */

.why-yida-highlights {
  display: grid;

  grid-template-columns: repeat(5, 1fr);

  border-top: 1px solid rgba(255, 255, 255, 0.16);

  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.why-highlight {
  position: relative;

  min-height: 280px;

  padding: 28px 24px 30px;

  border-right: 1px solid rgba(255, 255, 255, 0.16);

  transition: background 0.35s ease;
}

.why-highlight:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.why-highlight:hover {
  background: rgba(255, 255, 255, 0.055);
}

/* ========================================
   NUMBER
======================================== */

.why-number {
  display: block;

  color: #f4c542;

  font-size: 11px;

  font-weight: 700;

  letter-spacing: 1.5px;
}

/* ========================================
   ICON
======================================== */

.why-icon {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 52px;
  height: 52px;

  margin-top: 45px;

  border: 1px solid rgba(255, 255, 255, 0.2);

  border-radius: 50%;

  font-size: 22px;

  background: rgba(255, 255, 255, 0.04);
}

/* ========================================
   TEXT
======================================== */

.why-highlight h3 {
  margin-top: 25px;

  color: #ffffff;

  font-size: 17px;

  font-weight: 600;

  line-height: 1.3;
}

.why-highlight p {
  margin-top: 10px;

  color: rgba(255, 255, 255, 0.55);

  font-size: 11px;

  line-height: 1.7;
}

/* ========================================
   HOVER ACCENT
======================================== */

.why-highlight::after {
  content: "";

  position: absolute;

  left: 24px;
  right: 24px;
  bottom: 0;

  height: 2px;

  background: #f4c542;

  transform: scaleX(0);

  transform-origin: left;

  transition: transform 0.35s ease;
}

.why-highlight:hover::after {
  transform: scaleX(1);
}

/* ========================================
   TABLET
======================================== */

@media (max-width: 1000px) {
  .why-yida-highlights {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-highlight:nth-child(4) {
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }

  .why-highlight:nth-child(4),
  .why-highlight:nth-child(5) {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }
}

/* ========================================
   MOBILE
======================================== */

@media (max-width: 650px) {
  .why-yida-section {
    padding: 80px 0;
  }

  .why-yida-container {
    width: min(100% - 28px, 600px);
  }

  .why-yida-header {
    margin-bottom: 45px;
  }

  .why-yida-title {
    font-size: 44px;

    letter-spacing: -1.8px;
  }

  .why-yida-highlights {
    grid-template-columns: 1fr;
  }

  .why-highlight,
  .why-highlight:nth-child(4),
  .why-highlight:nth-child(5) {
    min-height: auto;

    padding: 25px 20px;

    border-left: 1px solid rgba(255, 255, 255, 0.16);

    border-right: 1px solid rgba(255, 255, 255, 0.16);

    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .why-highlight:first-child {
    border-top: none;
  }

  .why-icon {
    margin-top: 28px;
  }

  .why-highlight h3 {
    margin-top: 18px;
  }
}
/* ========================================
   EXPLORE MARENTE
======================================== */

.explore-marente-section {
  padding: 110px 0;

  background: #f7f7f2;
}

.explore-marente-container {
  width: min(100% - 60px, 1180px);

  margin: 0 auto;
}

/* ========================================
   HEADING
======================================== */

.explore-marente-heading {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 18px;

  margin-bottom: 35px;

  text-align: center;
}

.explore-marente-heading h2 {
  margin: 0;

  color: #173d28;

  font-size: clamp(30px, 4vw, 42px);

  line-height: 1.1;

  letter-spacing: -1.2px;
}

.explore-marente-heading p {
  margin-top: 8px;

  color: #68736b;

  font-size: 13px;

  line-height: 1.6;
}

.explore-marente-leaf {
  color: #75906f;

  font-size: 30px;

  line-height: 1;
}

.explore-marente-leaf.left {
  transform: scaleX(-1);
}

/* ========================================
   MAIN GRID
======================================== */

.marente-explore-grid {
  display: grid;

  grid-template-columns: 285px 1fr;

  gap: 20px;

  align-items: stretch;
}

/* ========================================
   FEATURED CARD
======================================== */

.marente-feature-card {
  position: relative;

  min-height: 445px;

  overflow: hidden;

  border-radius: 18px;

  text-decoration: none;

  background: #173d28;
}

.marente-feature-card img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.6s ease;
}

.marente-feature-card:hover img {
  transform: scale(1.05);
}

.marente-feature-card::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    to top,
    rgba(8, 31, 18, 0.92) 0%,
    rgba(8, 31, 18, 0.25) 60%,
    rgba(8, 31, 18, 0) 100%
  );
}

/* ========================================
   FEATURE CONTENT
======================================== */

.marente-feature-content {
  position: absolute;

  z-index: 2;

  left: 20px;
  right: 20px;
  bottom: 20px;
}

.marente-category {
  display: inline-flex;

  align-items: center;

  padding: 6px 10px;

  border-radius: 6px;

  background: #f4c542;

  color: #173d28;

  font-size: 9px;

  font-weight: 700;
}

.marente-feature-content h3 {
  margin-top: 13px;

  color: #ffffff;

  font-size: 24px;

  line-height: 1.1;
}

.marente-feature-content p {
  margin-top: 8px;

  color: rgba(255, 255, 255, 0.78);

  font-size: 11px;

  line-height: 1.6;
}

.marente-detail-button {
  display: inline-flex;

  align-items: center;

  gap: 8px;

  margin-top: 18px;

  padding: 8px 14px;

  border: 1px solid rgba(255, 255, 255, 0.7);

  border-radius: 30px;

  color: #ffffff;

  font-size: 10px;

  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.marente-detail-button span {
  font-size: 14px;
}

.marente-feature-card:hover .marente-detail-button {
  background: #ffffff;

  color: #173d28;
}

/* ========================================
   SMALL CARDS
======================================== */

.marente-small-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 18px;
}

.marente-small-card {
  overflow: hidden;

  border-radius: 15px;

  background: #ffffff;

  text-decoration: none;

  box-shadow: 0 8px 25px rgba(25, 55, 35, 0.07);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.marente-small-card:hover {
  transform: translateY(-5px);

  box-shadow: 0 14px 35px rgba(25, 55, 35, 0.12);
}

.marente-small-card img {
  width: 100%;

  height: 150px;

  display: block;

  object-fit: cover;
}

/* ========================================
   SMALL CARD CONTENT
======================================== */

.marente-small-content {
  padding: 15px 15px 17px;
}

.marente-small-content h3 {
  color: #17241c;

  font-size: 16px;

  line-height: 1.2;
}

.marente-small-content h3 span {
  display: block;
}

.marente-small-content p {
  min-height: 34px;

  margin-top: 7px;

  color: #777f79;

  font-size: 10px;

  line-height: 1.5;
}

.marente-small-button {
  display: inline-block;

  margin-top: 9px;

  padding: 6px 10px;

  border-radius: 20px;

  background: #e8f0e8;

  color: #23603b;

  font-size: 9px;

  font-weight: 700;

  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.marente-small-card:hover .marente-small-button {
  background: #173d28;

  color: #ffffff;
}

/* ========================================
   TABLET
======================================== */

@media (max-width: 1000px) {

  .explore-marente-container {
    width: min(100% - 40px, 900px);
  }

  /*
     Main layout berubah menjadi:
     AGAL
     ───────────────
     3 OTHER CARDS
  */

  .marente-explore-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }


  /* ==============================
     AIR TERJUN AGAL
  ============================== */

  .marente-explore-grid > .marente-feature-card {
    min-height: 420px;
  }


  /* ==============================
     OTHER DESTINATIONS
  ============================== */

  .marente-small-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
  }


  /*
     Karena sekarang semuanya
     feature-card, beri tinggi
     yang sama
  */

  .marente-small-grid .marente-other-card {
    min-height: 300px;
  }


  /* Content sedikit lebih compact */

  .marente-small-grid .marente-feature-content {
    left: 16px;
    right: 16px;
    bottom: 17px;
  }

  .marente-small-grid .marente-feature-content h3 {
    font-size: 19px;
  }

  .marente-small-grid .marente-feature-content p {
    font-size: 10px;
    line-height: 1.5;
  }

}


/* ========================================
   SMALL TABLET
======================================== */

@media (max-width: 800px) {

  .explore-marente-container {
    width: min(100% - 36px, 760px);
  }


  /*
     Agal tetap full width
  */

  .marente-explore-grid {
    grid-template-columns: 1fr;
  }


  /*
     3 destination menjadi 2 kolom
  */

  .marente-small-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
  }


  .marente-small-grid .marente-other-card {
    min-height: 300px;
  }


  /*
     Card ketiga tetap tampil.
     Jangan gunakan display:none.
  */

  .marente-small-grid .marente-other-card:last-child {
    display: block;
  }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 650px) {

  .explore-marente-section {
    padding: 75px 0;
  }

  .explore-marente-container {
    width: min(100% - 28px, 600px);
  }


  /* ==============================
     HEADING
  ============================== */

  .explore-marente-heading {
    gap: 8px;
  }

  .explore-marente-heading h2 {
    font-size: 29px;
  }

  .explore-marente-heading p {
    font-size: 11px;
  }

  .explore-marente-leaf {
    font-size: 21px;
  }


  /* ==============================
     MAIN GRID
  ============================== */

  .marente-explore-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }


  /* ==============================
     AGAL
  ============================== */

  .marente-explore-grid > .marente-feature-card {
    min-height: 390px;
  }


  /* ==============================
     OTHER DESTINATIONS
  ============================== */

  .marente-small-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }


  .marente-small-grid .marente-other-card {
    min-height: 300px;
  }


  /* ==============================
     CONTENT
  ============================== */

  .marente-small-grid .marente-feature-content {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .marente-small-grid .marente-feature-content h3 {
    font-size: 21px;
  }

  .marente-small-grid .marente-feature-content p {
    font-size: 11px;
    line-height: 1.5;
  }

}

/* ========================================
   MOBILE
======================================== */

/* @media (max-width: 650px) {
  .explore-marente-section {
    padding: 75px 0;
  }

  .explore-marente-container {
    width: min(100% - 28px, 600px);
  }

  .explore-marente-heading {
    gap: 8px;
  }

  .explore-marente-heading h2 {
    font-size: 29px;
  }

  .explore-marente-heading p {
    font-size: 11px;
  }

  .explore-marente-leaf {
    font-size: 21px;
  }

  .marente-explore-grid {
    grid-template-columns: 1fr;

    gap: 14px;
  }

  .marente-feature-card {
    min-height: 390px;
  }

  .marente-small-grid {
    grid-template-columns: 1fr;
  }

  .marente-small-card:last-child {
    display: block;
  }

  .marente-small-card img {
    height: 180px;
  }
} */
/* ========================================
   MARENTE DESTINATION MODAL
======================================== */

.marente-modal {
  position: fixed;

  inset: 0;

  z-index: 9999;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 30px;

  visibility: hidden;
  opacity: 0;

  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

/* ========================================
   MODAL ACTIVE
======================================== */

.marente-modal.active {
  visibility: visible;
  opacity: 1;
}

/* ========================================
   DARK OVERLAY
======================================== */

.marente-modal-overlay {
  position: absolute;

  inset: 0;

  background: rgba(8, 18, 12, 0.82);

  backdrop-filter: blur(8px);
}

/* ========================================
   MODAL CONTAINER
======================================== */

.marente-modal-container {
  position: relative;

  z-index: 2;

  width: min(100%, 1050px);

  max-height: calc(100vh - 60px);

  overflow: hidden;

  border-radius: 22px;

  background: #f7f7f2;

  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.35);

  transform: translateY(20px) scale(0.97);

  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.marente-modal.active .marente-modal-container {
  transform: translateY(0) scale(1);
}

/* ========================================
   CLOSE BUTTON
======================================== */

.marente-modal-close {
  position: absolute;

  z-index: 10;

  top: 18px;
  right: 18px;

  width: 42px;
  height: 42px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.35);

  border-radius: 50%;

  background: rgba(15, 35, 23, 0.55);

  backdrop-filter: blur(8px);

  cursor: pointer;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.marente-modal-close:hover {
  background: #173d28;

  transform: rotate(90deg);
}

.marente-modal-close span {
  position: absolute;

  width: 17px;
  height: 1px;

  background: #ffffff;
}

.marente-modal-close span:first-child {
  transform: rotate(45deg);
}

.marente-modal-close span:last-child {
  transform: rotate(-45deg);
}

/* ========================================
   MODAL CONTENT
======================================== */

.marente-modal-content {
  display: grid;

  grid-template-columns: 1.15fr 0.85fr;

  min-height: 570px;
}

/* ========================================
   GALLERY AREA
======================================== */

.marente-modal-gallery {
  padding: 22px;

  display: flex;

  flex-direction: column;

  gap: 12px;

  background: #e9eee8;
}

/* ========================================
   MAIN IMAGE
======================================== */

.marente-modal-main-image {
  position: relative;

  flex: 1;

  min-height: 420px;

  overflow: hidden;

  border-radius: 14px;

  background: #dfe5df;
}

.marente-modal-main-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: opacity 0.25s ease;
}

/* ========================================
   IMAGE COUNTER
======================================== */

.marente-image-counter {
  position: absolute;

  right: 15px;
  bottom: 15px;

  display: flex;

  align-items: center;

  gap: 5px;

  padding: 7px 11px;

  border-radius: 20px;

  background: rgba(10, 25, 16, 0.55);

  backdrop-filter: blur(8px);

  color: #ffffff;

  font-size: 10px;

  letter-spacing: 1px;
}

/* ========================================
   THUMBNAILS
======================================== */

.marente-modal-thumbnails {
  display: flex;

  gap: 8px;

  overflow-x: auto;

  padding-bottom: 2px;

  scrollbar-width: thin;
}

.marente-modal-thumbnails::-webkit-scrollbar {
  height: 3px;
}

.marente-modal-thumbnails::-webkit-scrollbar-thumb {
  background: #9daa9d;

  border-radius: 10px;
}

/* Thumbnail */

.marente-modal-thumbnail {
  flex: 0 0 72px;

  width: 72px;
  height: 58px;

  padding: 0;

  overflow: hidden;

  border: 2px solid transparent;

  border-radius: 8px;

  background: none;

  cursor: pointer;

  opacity: 0.65;

  transition:
    opacity 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.marente-modal-thumbnail:hover {
  opacity: 1;

  transform: translateY(-2px);
}

.marente-modal-thumbnail.active {
  opacity: 1;

  border-color: #173d28;
}

.marente-modal-thumbnail img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}

/* ========================================
   INFORMATION AREA
======================================== */

.marente-modal-info {
  display: flex;

  flex-direction: column;

  justify-content: center;

  padding: 55px 50px;

  background: #f7f7f2;
}

/* ========================================
   CATEGORY
======================================== */

.marente-modal-category {
  align-self: flex-start;

  display: inline-flex;

  align-items: center;

  padding: 7px 11px;

  border-radius: 6px;

  background: #f4c542;

  color: #173d28;

  font-size: 9px;

  font-weight: 700;
}

/* ========================================
   TITLE
======================================== */

.marente-modal-info h2 {
  margin-top: 20px;

  color: #173d28;

  font-size: clamp(30px, 4vw, 45px);

  line-height: 1.05;

  letter-spacing: -1.5px;
}

/* ========================================
   LOCATION
======================================== */

.marente-modal-location {
  display: flex;

  align-items: center;

  gap: 8px;

  margin-top: 12px;

  color: #68736b;

  font-size: 11px;
}

.location-icon {
  color: #75906f;

  font-size: 13px;
}

/* ========================================
   DIVIDER
======================================== */

.marente-modal-divider {
  width: 45px;
  height: 2px;

  margin: 25px 0;

  background: #75906f;
}

/* ========================================
   DESCRIPTION
======================================== */

.marente-modal-description {
  max-width: 390px;

  margin: 0;

  color: #68736b;

  font-size: 13px;

  line-height: 1.8;
}

/* ========================================
   LOCATION BUTTON
======================================== */

.marente-modal-location-button {
  display: inline-flex;

  align-items: center;

  align-self: flex-start;

  gap: 10px;

  margin-top: 30px;

  padding: 12px 17px;

  border-radius: 30px;

  background: #173d28;

  color: #ffffff;

  text-decoration: none;

  font-size: 10px;

  font-weight: 600;

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.marente-modal-location-button:hover {
  background: #24583b;

  transform: translateY(-2px);
}

.location-arrow {
  font-size: 15px;
}

/* ========================================
   BODY LOCK
======================================== */

body.marente-modal-open {
  overflow: hidden;
}

/* ========================================
   TABLET
======================================== */

@media (max-width: 850px) {
  .marente-modal {
    padding: 20px;
  }

  .marente-modal-container {
    max-height: calc(100vh - 40px);

    overflow-y: auto;
  }

  .marente-modal-content {
    grid-template-columns: 1fr;
  }

  .marente-modal-gallery {
    min-height: auto;
  }

  .marente-modal-main-image {
    min-height: 380px;
  }

  .marente-modal-info {
    padding: 35px 30px 40px;
  }
}

/* ========================================
   MOBILE
======================================== */

@media (max-width: 600px) {
  .marente-modal {
    padding: 10px;
  }

  .marente-modal-container {
    width: 100%;

    max-height: calc(100vh - 20px);

    border-radius: 18px;
  }

  .marente-modal-content {
    display: block;
  }

  .marente-modal-gallery {
    padding: 12px;

    gap: 9px;
  }

  .marente-modal-main-image {
    min-height: 280px;

    border-radius: 12px;
  }

  .marente-modal-thumbnail {
    flex-basis: 62px;

    width: 62px;
    height: 50px;
  }

  .marente-modal-info {
    padding: 28px 22px 30px;
  }

  .marente-modal-info h2 {
    margin-top: 15px;

    font-size: 31px;
  }

  .marente-modal-description {
    font-size: 12px;

    line-height: 1.7;
  }

  .marente-modal-location-button {
    margin-top: 24px;
  }

  .marente-modal-close {
    top: 12px;
    right: 12px;

    width: 38px;
    height: 38px;
  }
}
/* ========================================
   YIDA PARK DESTINATION MODAL
======================================== */

.yida-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 30px;

  visibility: hidden;
  opacity: 0;

  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.yida-modal.active {
  visibility: visible;
  opacity: 1;
}


/* ========================================
   OVERLAY
======================================== */

.yida-modal-overlay {
  position: absolute;
  inset: 0;

  background: rgba(8, 18, 12, 0.82);

  backdrop-filter: blur(8px);
}


/* ========================================
   CONTAINER
======================================== */

.yida-modal-container {
  position: relative;
  z-index: 2;

  width: min(100%, 1050px);

  max-height: calc(100vh - 60px);

  overflow: hidden;

  border-radius: 22px;

  background: #f7f7f2;

  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.35);

  transform: translateY(20px) scale(0.97);

  transition:
    transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.yida-modal.active .yida-modal-container {
  transform: translateY(0) scale(1);
}


/* ========================================
   CLOSE
======================================== */

.yida-modal-close {
  position: absolute;
  z-index: 10;

  top: 18px;
  right: 18px;

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.35);

  border-radius: 50%;

  background: rgba(15, 35, 23, 0.55);

  backdrop-filter: blur(8px);

  cursor: pointer;

  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.yida-modal-close:hover {
  background: #173d28;
  transform: rotate(90deg);
}

.yida-modal-close span {
  position: absolute;

  width: 17px;
  height: 1px;

  background: #ffffff;
}

.yida-modal-close span:first-child {
  transform: rotate(45deg);
}

.yida-modal-close span:last-child {
  transform: rotate(-45deg);
}


/* ========================================
   CONTENT
======================================== */

.yida-modal-content {
  display: grid;

  grid-template-columns: 1.15fr 0.85fr;

  min-height: 570px;
}


/* ========================================
   GALLERY
======================================== */

.yida-modal-gallery {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;

  width: 100%;
  min-width: 0;
  min-height: 0;

  background: #e9eee8;
  overflow: hidden;
}


/* ========================================
   MAIN IMAGE
======================================== */

.yida-modal-main-image {
  position: relative;

  width: 100%;
  height: 420px;
  min-width: 0;
  min-height: 420px;
  max-height: 420px;

  overflow: hidden;

  border-radius: 14px;
  background: #dfe5df;

  flex: 0 0 420px;
}


/* ========================================
   MAIN IMAGE
======================================== */

#yidaModalMainImage {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  display: block;

  object-fit: contain;
  object-position: center center;

  transition: opacity 0.25s ease;
}


/* ========================================
   IMAGE COUNTER
======================================== */

.yida-image-counter {
  position: absolute;

  right: 15px;
  bottom: 15px;

  display: flex;
  align-items: center;
  gap: 5px;

  padding: 7px 11px;

  border-radius: 20px;

  background: rgba(10, 25, 16, 0.55);
  backdrop-filter: blur(8px);

  color: #ffffff;

  font-size: 10px;
  letter-spacing: 1px;

  z-index: 2;
}


/* ========================================
   THUMBNAILS CONTAINER
======================================== */

.yida-modal-thumbnails {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;

  gap: 8px;

  width: 100%;
  min-width: 0;
  max-width: 100%;

  height: 60px;
  min-height: 60px;
  max-height: 60px;

  padding: 0 0 2px;

  overflow-x: auto;
  overflow-y: hidden;

  flex: 0 0 60px;

  scrollbar-width: thin;

  -webkit-overflow-scrolling: touch;
}


/* ========================================
   THUMBNAIL SCROLLBAR
======================================== */

.yida-modal-thumbnails::-webkit-scrollbar {
  width: 0;
  height: 3px;
}

.yida-modal-thumbnails::-webkit-scrollbar-track {
  background: transparent;
}

.yida-modal-thumbnails::-webkit-scrollbar-thumb {
  background: #9daa9d;
  border-radius: 10px;
}


/* ========================================
   THUMBNAIL
======================================== */

.yida-modal-thumbnail {
  position: relative;

  flex: 0 0 72px;

  width: 72px;
  min-width: 72px;
  max-width: 72px;

  height: 58px;
  min-height: 58px;
  max-height: 58px;

  padding: 0;

  overflow: hidden;

  border: 2px solid transparent;
  border-radius: 8px;

  background: transparent;

  cursor: pointer;

  opacity: 0.65;

  transition:
    opacity 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}


/* ========================================
   THUMBNAIL HOVER
======================================== */

.yida-modal-thumbnail:hover {
  opacity: 1;
  transform: translateY(-2px);
}


/* ========================================
   ACTIVE THUMBNAIL
======================================== */

.yida-modal-thumbnail.active {
  opacity: 1;
  border-color: #173d28;
}


/* ========================================
   THUMBNAIL IMAGE
======================================== */

.yida-modal-thumbnail img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center;
}


/* ========================================
   INFORMATION
======================================== */

.yida-modal-info {
  display: flex;
  flex-direction: column;
  justify-content: center;

  min-width: 0;

  padding: 55px 50px;

  background: #f7f7f2;
}


/* ========================================
   CATEGORY
======================================== */

.yida-modal-category {
  align-self: flex-start;

  display: inline-flex;
  align-items: center;

  padding: 7px 11px;

  border-radius: 6px;

  background: #f4c542;
  color: #173d28;

  font-size: 9px;
  font-weight: 700;
}


/* ========================================
   TITLE
======================================== */

.yida-modal-info h2 {
  margin: 20px 0 0;

  color: #173d28;

  font-size: clamp(30px, 4vw, 45px);
  line-height: 1.05;

  letter-spacing: -1.5px;
}


/* ========================================
   LOCATION
======================================== */

.yida-modal-location {
  display: flex;
  align-items: center;

  gap: 8px;

  margin-top: 12px;

  color: #68736b;

  font-size: 11px;
}

.yida-location-icon {
  color: #75906f;
  font-size: 13px;
}


/* ========================================
   DIVIDER
======================================== */

.yida-modal-divider {
  width: 45px;
  height: 2px;

  margin: 25px 0;

  background: #75906f;
}


/* ========================================
   DESCRIPTION
======================================== */

.yida-modal-description {
  max-width: 390px;

  margin: 0;

  color: #68736b;

  font-size: 13px;
  line-height: 1.8;
}


/* ========================================
   LOCATION BUTTON
======================================== */

.yida-modal-location-button {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;

  gap: 10px;

  margin-top: 30px;

  padding: 12px 17px;

  border-radius: 30px;

  background: #173d28;
  color: #ffffff;

  text-decoration: none;

  font-size: 10px;
  font-weight: 600;

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.yida-modal-location-button:hover {
  background: #24583b;
  transform: translateY(-2px);
}

.yida-location-arrow {
  font-size: 15px;
}


/* ========================================
   BODY LOCK
======================================== */

body.yida-modal-open {
  overflow: hidden;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 850px) {

  .yida-modal {
    padding: 20px;
  }

  .yida-modal-container {
    max-height: calc(100vh - 40px);
    overflow-y: auto;
  }

  .yida-modal-content {
    grid-template-columns: 1fr;
  }

  .yida-modal-gallery {
    min-height: 0;
  }

  .yida-modal-main-image {
    height: 380px;
    min-height: 380px;
    max-height: 380px;

    flex-basis: 380px;
  }

  .yida-modal-info {
    padding: 35px 30px 40px;
  }
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 600px) {

  .yida-modal {
    padding: 10px;
  }

  .yida-modal-container {
    width: 100%;
    max-height: calc(100vh - 20px);

    border-radius: 18px;
  }

  .yida-modal-content {
    display: block;
  }

  .yida-modal-gallery {
    padding: 12px;
    gap: 9px;
  }


  /* MAIN IMAGE */

  .yida-modal-main-image {
    height: 280px;
    min-height: 280px;
    max-height: 280px;

    flex-basis: 280px;

    border-radius: 12px;
  }


  /* THUMBNAILS */

  .yida-modal-thumbnails {
    height: 52px;
    min-height: 52px;
    max-height: 52px;

    flex-basis: 52px;

    gap: 7px;
  }


  /* THUMBNAIL */

  .yida-modal-thumbnail {
    flex: 0 0 62px;

    width: 62px;
    min-width: 62px;
    max-width: 62px;

    height: 50px;
    min-height: 50px;
    max-height: 50px;
  }


  /* INFORMATION */

  .yida-modal-info {
    padding: 28px 22px 30px;
  }

  .yida-modal-info h2 {
    margin-top: 15px;
    font-size: 31px;
  }

  .yida-modal-description {
    font-size: 12px;
    line-height: 1.7;
  }

  .yida-modal-location-button {
    margin-top: 24px;
  }


  /* CLOSE BUTTON */

  .yida-modal-close {
    top: 12px;
    right: 12px;

    width: 38px;
    height: 38px;
  }
}
/* ========================================
   PLAN YOUR ESCAPE
======================================== */

.yida-itinerary-section {
  padding: 100px 0;

  background: #ffffff;
}

.yida-itinerary-container {
  width: min(100% - 60px, 1180px);

  margin: 0 auto;
}

/* ========================================
   HEADING
======================================== */

.yida-itinerary-heading {
  margin-bottom: 55px;

  text-align: center;
}

.yida-itinerary-eyebrow {
  display: block;

  margin-bottom: 10px;

  color: #75906f;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 2px;
}

.yida-itinerary-heading h2 {
  margin: 0;

  color: #173d28;

  font-family: "Playfair Display", serif;

  font-size: clamp(30px, 4vw, 42px);

  line-height: 1.15;
}

.yida-itinerary-heading p {
  max-width: 580px;

  margin: 12px auto 0;

  color: #707871;

  font-size: 12px;

  line-height: 1.7;
}

/* ========================================
   JOURNEY
======================================== */

.yida-journey {
  display: flex;

  align-items: flex-start;

  gap: 0;
}

/* ========================================
   STEP
======================================== */

.yida-journey-step {
  position: relative;

  flex: 1;

  text-align: center;
}

/* ========================================
   NUMBER
======================================== */

.yida-journey-number {
  position: relative;

  z-index: 2;

  display: flex;

  align-items: center;
  justify-content: center;

  width: 30px;
  height: 30px;

  margin: 0 auto 18px;

  border: 1px solid #b9c8b9;

  border-radius: 50%;

  background: #ffffff;

  color: #23603b;

  font-size: 9px;

  font-weight: 700;
}

/* ========================================
   CONNECTOR
======================================== */

.yida-journey-connector {
  flex: 0 0 45px;

  height: 30px;

  position: relative;
}

.yida-journey-connector::before {
  content: "";

  position: absolute;

  top: 15px;
  left: 0;
  right: 0;

  height: 1px;

  background: #cfd8cf;
}

.yida-journey-connector span {
  display: none;
}

/* ========================================
   IMAGE
======================================== */

.yida-journey-image {
  width: 100%;

  height: 180px;

  overflow: hidden;

  border-radius: 14px;

  background: #edf1ed;
}

.yida-journey-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.5s ease;
}

.yida-journey-step:hover .yida-journey-image img {
  transform: scale(1.04);
}

/* ========================================
   CONTENT
======================================== */

.yida-journey-content {
  padding: 18px 8px 0;
}

.yida-journey-label {
  display: block;

  margin-bottom: 7px;

  color: #75906f;

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 1.3px;
}

.yida-journey-content h3 {
  margin: 0;

  color: #173d28;

  font-family: "Playfair Display", serif;

  font-size: 18px;

  line-height: 1.2;
}

.yida-journey-content p {
  margin: 8px auto 0;

  color: #777f79;

  font-size: 10px;

  line-height: 1.55;
}

.yida-journey-link {
  display: inline-block;

  margin-top: 10px;

  color: #23603b;

  font-size: 9px;

  font-weight: 700;

  text-decoration: none;
}

.yida-journey-link span {
  margin-left: 3px;

  font-size: 12px;
}

.yida-journey-link:hover {
  color: #173d28;
}

/* ========================================
   BOTTOM MESSAGE
======================================== */

.yida-itinerary-bottom {
  margin-top: 55px;

  text-align: center;
}

.yida-itinerary-bottom p {
  margin: 0;

  color: #173d28;

  font-family: "Playfair Display", serif;

  font-size: 18px;
}

.yida-itinerary-bottom span {
  display: block;

  margin-top: 6px;

  color: #8a918b;

  font-size: 9px;

  letter-spacing: 1px;
}

/* ========================================
   TABLET
======================================== */

@media (max-width: 950px) {
  .yida-itinerary-container {
    width: min(100% - 40px, 850px);
  }

  .yida-journey-connector {
    flex: 0 0 20px;
  }

  .yida-journey-image {
    height: 155px;
  }

  .yida-journey-content h3 {
    font-size: 16px;
  }
}

/* ========================================
   MOBILE
======================================== */

@media (max-width: 650px) {
  .yida-itinerary-section {
    padding: 75px 0;
  }

  .yida-itinerary-container {
    width: min(100% - 28px, 600px);
  }

  /* Heading */

  .yida-itinerary-heading {
    margin-bottom: 45px;
  }

  .yida-itinerary-heading h2 {
    font-size: 29px;
  }

  .yida-itinerary-heading p {
    font-size: 11px;
  }

  /* Journey */

  .yida-journey {
    display: block;

    padding-left: 20px;
  }

  /* Step */

  .yida-journey-step {
    display: grid;

    grid-template-columns: 105px 1fr;

    min-height: 165px;

    padding-bottom: 25px;

    text-align: left;
  }

  /* Number */

  .yida-journey-number {
    position: absolute;

    top: 0;
    left: -20px;

    width: 28px;
    height: 28px;

    margin: 0;

    font-size: 8px;
  }

  /* Vertical line */

  .yida-journey-step::before {
    content: "";

    position: absolute;

    top: 28px;
    bottom: 0;

    left: -7px;

    width: 1px;

    background: #cfd8cf;
  }

  .yida-journey-step:last-child::before {
    display: none;
  }

  /* Image */

  .yida-journey-image {
    width: 105px;

    height: 130px;

    border-radius: 11px;
  }

  /* Content */

  .yida-journey-content {
    padding: 3px 0 0 15px;
  }

  .yida-journey-label {
    font-size: 7px;
  }

  .yida-journey-content h3 {
    font-size: 17px;
  }

  .yida-journey-content p {
    font-size: 10px;

    line-height: 1.6;
  }

  /* Hide desktop connectors */

  .yida-journey-connector {
    display: none;
  }

  /* Bottom */

  .yida-itinerary-bottom {
    margin-top: 25px;

    padding-top: 20px;

    border-top: 1px solid #e2e7e2;
  }

  .yida-itinerary-bottom p {
    font-size: 17px;
  }
}
/* ========================================
MOMENTS AT YIDA PARK
======================================== */

.yida-gallery-section {
  padding: 105px 0 110px;

  background: #173d28;
}

.yida-gallery-container {
  width: min(100% - 60px, 1180px);

  margin: 0 auto;
}

/* ========================================
HEADING
======================================== */

.yida-gallery-heading {
  max-width: 650px;

  margin: 0 auto 50px;

  text-align: center;
}

.yida-gallery-eyebrow {
  display: block;

  margin-bottom: 10px;

  color: #b7c9b6;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 2px;
}

.yida-gallery-heading h2 {
  margin: 0;

  color: #ffffff;

  font-family: "Playfair Display", serif;

  font-size: clamp(30px, 4vw, 42px);

  line-height: 1.15;
}

.yida-gallery-heading p {
  max-width: 540px;

  margin: 13px auto 0;

  color: rgba(255, 255, 255, 0.68);

  font-size: 12px;

  line-height: 1.7;
}

/* ========================================
MASONRY GRID
======================================== */

.yida-gallery-grid {
  display: grid;

  grid-template-columns:
    1.35fr
    0.82fr
    0.82fr;

  grid-template-rows:
    175px
    175px
    175px;

  gap: 12px;
}

/* ========================================
GALLERY ITEM
======================================== */

.yida-gallery-item {
  position: relative;

  width: 100%;
  height: 100%;

  padding: 0;

  overflow: hidden;

  border: 0;

  border-radius: 14px;

  background: #102a1b;

  cursor: pointer;

  text-align: left;
}

.yida-gallery-item::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(to top, rgba(8, 28, 16, 0.3), transparent 50%);

  opacity: 0;

  transition: opacity 0.3s ease;

  pointer-events: none;
}

.yida-gallery-item:hover::after {
  opacity: 1;
}

.yida-gallery-item img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.6s ease;
}

.yida-gallery-item:hover img {
  transform: scale(1.05);
}

/* ========================================
GRID POSITIONS
======================================== */

/* Main */

.yida-gallery-main {
  grid-column: 1;

  grid-row: 1 / 3;
}

/* Photo 2 */

.yida-gallery-photo-2 {
  grid-column: 2;

  grid-row: 1;
}

/* Photo 3 */

.yida-gallery-photo-3 {
  grid-column: 3;

  grid-row: 1;
}

/* Photo 4 */

.yida-gallery-photo-4 {
  grid-column: 2 / 4;

  grid-row: 2;
}

/* Photo 5 */

.yida-gallery-photo-5 {
  grid-column: 1;

  grid-row: 3;
}

/* Photo 6 */

.yida-gallery-photo-6 {
  grid-column: 2;

  grid-row: 3;
}

/* Photo 7 */

.yida-gallery-photo-7 {
  grid-column: 3;

  grid-row: 3;
}

/* ========================================
BOTTOM MESSAGE
======================================== */

.yida-gallery-bottom {
  margin-top: 40px;

  text-align: center;
}

.yida-gallery-bottom p {
  margin: 0;

  color: #ffffff;

  font-family: "Playfair Display", serif;

  font-size: 18px;
}

/* ========================================
LIGHTBOX
======================================== */

.yida-lightbox {
  position: fixed;

  inset: 0;

  z-index: 9999;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 30px;

  background: rgba(8, 24, 15, 0.94);

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.yida-lightbox.active {
  opacity: 1;

  visibility: visible;

  pointer-events: auto;
}

/* ========================================
LIGHTBOX OVERLAY
======================================== */

.yida-lightbox-overlay {
  position: absolute;

  inset: 0;
}

/* ========================================
LIGHTBOX CONTAINER
======================================== */

.yida-lightbox-container {
  position: relative;

  z-index: 2;

  display: flex;

  align-items: center;
  justify-content: center;

  width: min(100%, 1050px);

  height: min(90vh, 720px);
}

/* ========================================
LIGHTBOX IMAGE
======================================== */

.yida-lightbox-image {
  width: 100%;
  height: 100%;

  display: flex;

  align-items: center;
  justify-content: center;
}

.yida-lightbox-image img {
  max-width: 90%;

  max-height: 85vh;

  width: auto;
  height: auto;

  display: block;

  object-fit: contain;

  border-radius: 8px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

/* ========================================
LIGHTBOX CLOSE
======================================== */

.yida-lightbox-close {
  position: absolute;

  top: 0;
  right: 0;

  z-index: 5;

  width: 42px;
  height: 42px;

  padding: 0;

  border: 0;

  background: transparent;

  cursor: pointer;
}

.yida-lightbox-close span {
  position: absolute;

  top: 20px;
  left: 10px;

  width: 22px;
  height: 1px;

  background: #ffffff;
}

.yida-lightbox-close span:first-child {
  transform: rotate(45deg);
}

.yida-lightbox-close span:last-child {
  transform: rotate(-45deg);
}

/* ========================================
LIGHTBOX ARROWS
======================================== */

.yida-lightbox-arrow {
  position: absolute;

  top: 50%;

  z-index: 5;

  display: flex;

  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  border: 1px solid rgba(255, 255, 255, 0.45);

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.08);

  color: #ffffff;

  font-size: 18px;

  cursor: pointer;

  transform: translateY(-50%);

  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}

.yida-lightbox-arrow:hover {
  background: rgba(255, 255, 255, 0.18);

  border-color: rgba(255, 255, 255, 0.8);
}

.yida-lightbox-prev {
  left: 0;
}

.yida-lightbox-next {
  right: 0;
}

/* ========================================
LIGHTBOX COUNTER
======================================== */

.yida-lightbox-counter {
  position: absolute;

  bottom: 5px;
  left: 50%;

  display: flex;

  gap: 7px;

  color: rgba(255, 255, 255, 0.75);

  font-size: 9px;

  letter-spacing: 1px;

  transform: translateX(-50%);
}

/* ========================================
TABLET
======================================== */

@media (max-width: 850px) {
  .yida-gallery-container {
    width: min(100% - 40px, 800px);
  }

  .yida-gallery-grid {
    grid-template-columns:
      1.2fr
      1fr;

    grid-template-rows:
      200px
      160px
      160px
      160px;
  }

  .yida-gallery-main {
    grid-column: 1;

    grid-row: 1 / 3;
  }

  .yida-gallery-photo-2 {
    grid-column: 2;

    grid-row: 1;
  }

  .yida-gallery-photo-3 {
    grid-column: 2;

    grid-row: 2;
  }

  .yida-gallery-photo-4 {
    grid-column: 1 / 3;

    grid-row: 3;
  }

  .yida-gallery-photo-5 {
    grid-column: 1;

    grid-row: 4;
  }

  .yida-gallery-photo-6 {
    grid-column: 2;

    grid-row: 4;
  }

  .yida-gallery-photo-7 {
    display: none;
  }
}

/* ========================================
MOBILE
======================================== */

@media (max-width: 600px) {
  .yida-gallery-section {
    padding: 75px 0 80px;
  }

  .yida-gallery-container {
    width: min(100% - 28px, 600px);
  }

  /* Heading */

  .yida-gallery-heading {
    margin-bottom: 35px;
  }

  .yida-gallery-eyebrow {
    font-size: 8px;

    letter-spacing: 1.7px;
  }

  .yida-gallery-heading h2 {
    font-size: 29px;
  }

  .yida-gallery-heading p {
    font-size: 11px;
  }

  /* Gallery */

  .yida-gallery-grid {
    grid-template-columns: 1fr 1fr;

    grid-template-rows:
      210px
      130px
      130px
      170px;

    gap: 8px;
  }

  .yida-gallery-main {
    grid-column: 1 / 3;

    grid-row: 1;
  }

  .yida-gallery-photo-2 {
    grid-column: 1;

    grid-row: 2;
  }

  .yida-gallery-photo-3 {
    grid-column: 2;

    grid-row: 2;
  }

  .yida-gallery-photo-4 {
    grid-column: 1 / 3;

    grid-row: 3;
  }

  .yida-gallery-photo-5 {
    grid-column: 1;

    grid-row: 4;
  }

  .yida-gallery-photo-6 {
    grid-column: 2;

    grid-row: 4;
  }

  .yida-gallery-photo-7 {
    display: none;
  }

  /* Bottom */

  .yida-gallery-bottom {
    margin-top: 28px;
  }

  .yida-gallery-bottom p {
    font-size: 16px;
  }

  /* Lightbox */

  .yida-lightbox {
    padding: 15px;
  }

  .yida-lightbox-image img {
    max-width: 100%;

    max-height: 78vh;

    border-radius: 5px;
  }

  .yida-lightbox-arrow {
    width: 36px;
    height: 36px;

    font-size: 15px;
  }

  .yida-lightbox-prev {
    left: 5px;
  }

  .yida-lightbox-next {
    right: 5px;
  }

  .yida-lightbox-close {
    top: -5px;
    right: -5px;
  }
}
/* ========================================
LOCATION / HOW TO GET TO YIDA PARK
======================================== */

.yida-location-section {
  padding: 105px 0 110px;

  background: #f7f7f2;
}

.yida-location-container {
  width: min(100% - 60px, 1180px);

  margin: 0 auto;
}

/* ========================================
HEADING
======================================== */

.yida-location-heading {
  max-width: 650px;

  margin: 0 auto 50px;

  text-align: center;
}

.yida-location-eyebrow {
  display: block;

  margin-bottom: 10px;

  color: #75906f;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 2px;
}

.yida-location-heading h2 {
  margin: 0;

  color: #173d28;

  font-family: "Playfair Display", serif;

  font-size: clamp(30px, 4vw, 42px);

  line-height: 1.15;
}

.yida-location-heading p {
  max-width: 540px;

  margin: 13px auto 0;

  color: #707871;

  font-size: 12px;

  line-height: 1.7;
}

/* ========================================
MAIN GRID
======================================== */

.yida-location-grid {
  display: grid;

  grid-template-columns:
    1.35fr
    0.85fr;

  gap: 22px;

  align-items: stretch;
}

/* ========================================
MAP
======================================== */

.yida-location-map {
  min-height: 440px;

  overflow: hidden;

  border-radius: 16px;

  background: #dfe6df;

  box-shadow: 0 10px 30px rgba(23, 61, 40, 0.07);
}

.yida-location-map iframe {
  width: 100%;
  height: 100%;

  display: block;

  border: 0;
}

/* ========================================
INFORMATION
======================================== */

.yida-location-info {
  display: flex;

  flex-direction: column;

  padding: 35px 32px;

  border-radius: 16px;

  background: #173d28;

  box-shadow: 0 10px 30px rgba(23, 61, 40, 0.1);
}

/* ========================================
LOCATION ICON
======================================== */

.yida-location-icon {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  margin-bottom: 20px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.1);

  font-size: 18px;
}

/* ========================================
LABEL
======================================== */

.yida-location-label {
  color: #b8c9b7;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 2px;
}

/* ========================================
TITLE
======================================== */

.yida-location-info h3 {
  margin-top: 8px;

  color: #ffffff;

  font-family: "Playfair Display", serif;

  font-size: 27px;

  line-height: 1.2;
}

/* ========================================
DESCRIPTION
======================================== */

.yida-location-info > p {
  margin-top: 13px;

  color: rgba(255, 255, 255, 0.68);

  font-size: 11px;

  line-height: 1.7;
}

/* ========================================
DETAILS
======================================== */

.yida-location-detail {
  display: flex;

  gap: 12px;

  margin-top: 25px;
}

.yida-location-detail + .yida-location-detail {
  margin-top: 18px;
}

.detail-icon {
  flex-shrink: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  width: 30px;
  height: 30px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.09);

  font-size: 12px;
}

.yida-location-detail div {
  display: flex;

  flex-direction: column;

  gap: 4px;
}

.yida-location-detail strong {
  color: #ffffff;

  font-size: 10px;

  font-weight: 600;
}

.yida-location-detail span {
  color: rgba(255, 255, 255, 0.62);

  font-size: 9px;

  line-height: 1.5;
}

/* ========================================
BUTTON
======================================== */

.yida-location-button {
  display: inline-flex;

  align-items: center;
  justify-content: space-between;

  gap: 15px;

  width: 100%;

  margin-top: auto;
  padding: 11px 14px;

  border: 1px solid rgba(255, 255, 255, 0.35);

  border-radius: 30px;

  color: #ffffff;

  font-size: 10px;

  text-decoration: none;

  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}

.yida-location-button span:last-child {
  font-size: 14px;
}

.yida-location-button:hover {
  background: #ffffff;

  border-color: #ffffff;

  color: #173d28;
}

/* ========================================
TABLET
======================================== */

@media (max-width: 850px) {
  .yida-location-container {
    width: min(100% - 40px, 800px);
  }

  .yida-location-grid {
    grid-template-columns: 1fr;

    gap: 16px;
  }

  .yida-location-map {
    min-height: 380px;
  }

  .yida-location-info {
    min-height: 380px;
  }
}

/* ========================================
MOBILE
======================================== */

@media (max-width: 600px) {
  .yida-location-section {
    padding: 75px 0 80px;
  }

  .yida-location-container {
    width: min(100% - 28px, 600px);
  }

  /* Heading */

  .yida-location-heading {
    margin-bottom: 35px;
  }

  .yida-location-eyebrow {
    font-size: 8px;

    letter-spacing: 1.7px;
  }

  .yida-location-heading h2 {
    font-size: 29px;
  }

  .yida-location-heading p {
    font-size: 11px;
  }

  /* Map */

  .yida-location-map {
    min-height: 280px;

    border-radius: 13px;
  }

  /* Info */

  .yida-location-info {
    min-height: auto;

    padding: 28px 24px;

    border-radius: 13px;
  }

  .yida-location-icon {
    width: 38px;
    height: 38px;

    margin-bottom: 16px;
  }

  .yida-location-info h3 {
    font-size: 24px;
  }

  .yida-location-info > p {
    font-size: 10px;
  }

  .yida-location-detail {
    margin-top: 22px;
  }

  .yida-location-button {
    margin-top: 28px;
  }
}
/* ========================================
FINAL CTA
======================================== */

.yida-cta-section {
  position: relative;

  min-height: 440px;

  overflow: hidden;

  display: flex;

  align-items: center;
  justify-content: center;

  background: #f7f7f2;
}

/* ========================================
BACKGROUND IMAGE
======================================== */

.yida-cta-background {
  position: absolute;

  inset: 0;

  z-index: 0;
}

.yida-cta-background img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  opacity: 0.35;
}

/* ========================================
OVERLAY
======================================== */

.yida-cta-overlay {
  position: absolute;

  inset: 0;

  z-index: 1;
  background-color: #ffffff;
  /* background: linear-gradient(
    90deg,
    rgba(247, 247, 242, 0.95),
    rgba(247, 247, 242, 0.72)
  ); */
}

/* ========================================
CONTENT
======================================== */

.yida-cta-content {
  position: relative;

  z-index: 2;

  max-width: 600px;

  padding: 60px 25px;

  text-align: center;
}

/* ========================================
EYEBROW
======================================== */

.yida-cta-eyebrow {
  display: block;

  margin-bottom: 14px;

  color: #75906f;

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 2.5px;
}

/* ========================================
TITLE
======================================== */

.yida-cta-content h2 {
  margin: 0;

  color: #173d28;

  font-family: "Playfair Display", serif;

  font-size: clamp(42px, 6vw, 65px);

  font-weight: 600;

  line-height: 1.05;

  letter-spacing: -1px;
}

/* ========================================
DESCRIPTION
======================================== */

.yida-cta-content p {
  max-width: 470px;

  margin: 20px auto 0;

  color: #68736b;

  font-size: 12px;

  line-height: 1.8;
}

/* ========================================
BUTTON
======================================== */

.yida-cta-button {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 20px;

  margin-top: 28px;

  padding: 12px 20px;

  border: 1px solid #173d28;

  border-radius: 30px;

  background: #173d28;

  color: #ffffff;

  font-size: 10px;

  font-weight: 700;

  text-decoration: none;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.yida-cta-button span:last-child {
  font-size: 15px;

  transition: transform 0.3s ease;
}

.yida-cta-button:hover {
  background: transparent;

  color: #173d28;

  transform: translateY(-2px);
}

.yida-cta-button:hover span:last-child {
  transform: translateX(4px);
}

/* ========================================
LOCATION
======================================== */

.yida-cta-location {
  display: block;

  margin-top: 22px;

  color: #89928c;

  font-size: 9px;

  letter-spacing: 1px;
}

/* ========================================
MOBILE
======================================== */

@media (max-width: 600px) {
  .yida-cta-section {
    min-height: 420px;
  }

  .yida-cta-content {
    padding: 50px 22px;
  }

  .yida-cta-eyebrow {
    font-size: 8px;

    letter-spacing: 2px;
  }

  .yida-cta-content h2 {
    font-size: 42px;
  }

  .yida-cta-content p {
    margin-top: 16px;

    font-size: 11px;
  }

  .yida-cta-button {
    margin-top: 24px;

    padding: 11px 18px;
  }

  .yida-cta-location {
    margin-top: 19px;

    font-size: 8px;
  }
}

/* ========================================
FOOTER
======================================== */

.yida-footer {
  padding: 70px 0 25px;

  background: #173d28;

  color: #ffffff;
}

.yida-footer-container {
  width: min(100% - 60px, 1180px);

  margin: 0 auto;
}

/* ========================================
FOOTER MAIN
======================================== */

.yida-footer-main {
  display: grid;

  grid-template-columns:
    1.8fr
    1fr
    1fr
    0.8fr;

  gap: 50px;

  padding-bottom: 55px;
}

/* ========================================
BRAND
======================================== */

.yida-footer-brand {
  max-width: 300px;
}

/* ========================================
   FOOTER LOGO
======================================== */

.yida-footer-logo {
  display: inline-flex;

  align-items: center;

  text-decoration: none;
}

.yida-footer-logo img {
  display: block;

  width: 75px;

  height: auto;

  object-fit: contain;
}

.yida-footer-location {
  display: block;

  margin-top: 5px;

  color: #b8c9b7;

  font-size: 9px;

  letter-spacing: 1.5px;
}

.yida-footer-brand p {
  max-width: 260px;

  margin-top: 18px;

  color: rgba(255, 255, 255, 0.62);

  font-size: 10px;

  line-height: 1.8;
}

/* ========================================
FOOTER COLUMNS
======================================== */

.yida-footer-column {
  display: flex;

  flex-direction: column;

  align-items: flex-start;
}

.yida-footer-title {
  margin-bottom: 18px;

  color: #b8c9b7;

  font-size: 8px;

  font-weight: 700;

  letter-spacing: 2px;
}

.yida-footer-column a {
  margin-bottom: 11px;

  color: rgba(255, 255, 255, 0.7);

  font-size: 10px;

  line-height: 1.4;

  text-decoration: none;

  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.yida-footer-column a:hover {
  color: #ffffff;

  transform: translateX(3px);
}

/* ========================================
FOOTER BOTTOM
======================================== */

.yida-footer-bottom {
  display: flex;

  align-items: center;
  justify-content: space-between;

  padding-top: 20px;

  border-top: 1px solid rgba(255, 255, 255, 0.12);

  color: rgba(255, 255, 255, 0.42);

  font-size: 8px;

  letter-spacing: 0.3px;
}

/* ========================================
TABLET
======================================== */

@media (max-width: 850px) {
  .yida-footer-container {
    width: min(100% - 40px, 800px);
  }

  .yida-footer-main {
    grid-template-columns:
      1.5fr
      1fr
      1fr;

    gap: 40px;
  }

  .yida-footer-brand {
    grid-column: 1 / 4;
  }
}

/* ========================================
MOBILE
======================================== */

@media (max-width: 600px) {
  .yida-footer {
    padding: 55px 0 22px;
  }

  .yida-footer-container {
    width: min(100% - 28px, 600px);
  }

  .yida-footer-main {
    grid-template-columns: 1fr 1fr;

    gap: 35px 25px;

    padding-bottom: 40px;
  }

  .yida-footer-brand {
    grid-column: 1 / 3;

    max-width: 100%;
  }

  /* Logo */

  .yida-footer-logo img {
    width: 70px;
  }

  .yida-footer-location {
    margin-top: 6px;

    font-size: 8px;
  }

  .yida-footer-brand p {
    max-width: 290px;

    margin-top: 14px;

    font-size: 10px;
  }

  .yida-footer-column a {
    font-size: 10px;
  }

  .yida-footer-bottom {
    flex-direction: column;

    align-items: flex-start;

    gap: 7px;

    line-height: 1.5;
  }
}
/* ========================================
   FLOATING WHATSAPP
======================================== */

.yida-whatsapp {
  position: fixed;

  right: 24px;
  bottom: 24px;

  z-index: 9000;
}

.yida-whatsapp-button {
  position: relative;

  display: flex;

  align-items: center;
  justify-content: center;

  width: 52px;
  height: 52px;

  border-radius: 50%;

  background: #173d28;

  color: #ffffff;

  text-decoration: none;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.yida-whatsapp-button:hover {
  transform: translateY(-4px);

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

/* ========================================
   ICON
======================================== */

.yida-whatsapp-icon {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 25px;
  height: 25px;
}

.yida-whatsapp-icon svg {
  width: 100%;
  height: 100%;

  fill: currentColor;
}

/* ========================================
   TOOLTIP
======================================== */

.yida-whatsapp-tooltip {
  position: absolute;

  right: 65px;
  top: 50%;

  padding: 8px 12px;

  border-radius: 6px;

  background: #173d28;

  color: #ffffff;

  font-size: 9px;

  white-space: nowrap;

  opacity: 0;
  visibility: hidden;

  transform: translate(5px, -50%);

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
}

.yida-whatsapp-tooltip::after {
  content: "";

  position: absolute;

  right: -5px;
  top: 50%;

  width: 9px;
  height: 9px;

  background: #173d28;

  transform: translateY(-50%) rotate(45deg);
}

.yida-whatsapp-button:hover .yida-whatsapp-tooltip {
  opacity: 1;

  visibility: visible;

  transform: translate(0, -50%);
}

/* ========================================
   MOBILE
======================================== */

@media (max-width: 600px) {
  .yida-whatsapp {
    right: 16px;
    bottom: 18px;
  }

  .yida-whatsapp-button {
    width: 48px;
    height: 48px;
  }

  .yida-whatsapp-icon {
    width: 23px;
    height: 23px;
  }

  .yida-whatsapp-tooltip {
    display: none;
  }
}
