@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ===== VARIABLES ===== */
:root {
  /* Dark text & backgrounds where dark is needed */
  --navy: #212529;
  --navy-light: #343a40;
  --navy-deep: #121416;

  /* Primary accent — Dark Crimson / Red */
  --gold: #8b1010;
  --gold-light: #ad1414;
  --gold-pale: rgba(139, 16, 16, 0.10);

  /* Secondary — Forest Green */
  --forest: #2D5A27;
  --forest-light: #397332;
  --forest-pale: rgba(45, 90, 39, 0.10);

  --cream: #f8f9fa;
  --white: #ffffff;
  --text-dark: #333333;
  --text-body: #666666;
  --border-gold: rgba(139, 16, 16, 0.22);
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --nav-h: 72px;
  --trans: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --trans-f: all 0.2s ease;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.16);
  --shadow-gold: 0 4px 24px rgba(155, 21, 21, 0.22);
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--navy);
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.625rem;
}

.section-title {
  font-size: clamp(1.875rem, 3.5vw, 2.625rem);
  font-weight: 700;
  margin-bottom: 0.875rem;
}

.section-title span {
  color: var(--gold);
}

.section-sub {
  font-size: 1rem;
  color: var(--text-body);
  max-width: 580px;
  line-height: 1.75;
}

.text-center {
  text-align: center;
}

.text-center .section-sub {
  margin: 0 auto;
}

.text-white {
  color: var(--white) !important;
}

.text-white .section-title {
  color: var(--white);
}

.text-white .section-sub {
  color: rgba(255, 255, 255, 0.68);
}

.divider {
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin-bottom: 1.125rem;
}

.divider.center {
  margin-left: auto;
  margin-right: auto;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

.section-header {
  margin-bottom: 3rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--trans);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-forest {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

.btn-forest:hover {
  background: var(--forest-light);
  border-color: var(--forest-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border-color: var(--text-dark);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-wa {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
}

.btn-wa:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-sm {
  padding: 0.625rem 1.375rem;
  font-size: 0.875rem;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: var(--trans);
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled,
.navbar.solid {
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-links a,
.navbar.scrolled .nav-links a,
.navbar.solid .nav-links a {
  color: var(--text-dark);
}

.navbar.scrolled .nav-links a:hover,
.navbar.solid .nav-links a:hover,
.navbar.scrolled .nav-links a.active,
.navbar.solid .nav-links a.active {
  color: var(--gold);
}

.navbar.scrolled .hamburger span,
.navbar.solid .hamburger span {
  background: var(--navy);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  line-height: 1.1;
}

.nav-logo {
  height: 50px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.4));
  transition: var(--trans-f);
}

.nav-logo:hover {
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.6)) brightness(1.1);
}

.navbar.scrolled .nav-logo {
  filter: none !important;
}

.nav-brand-main {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-brand-sub {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 0.5rem 0.875rem;
  border-radius: 4px;
  transition: var(--trans-f);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0.875rem;
  right: 0.875rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a.active {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  border-radius: 4px !important;
  padding: 0.5rem 1.25rem !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
}

.nav-cta::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: var(--trans);
  border-radius: 2px;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--navy);
  padding: 1.5rem;
  flex-direction: column;
  gap: 0.375rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  z-index: 999;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.75rem 1rem;
  border-radius: 6px;
  transition: var(--trans-f);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  background: var(--gold-pale);
  color: var(--gold);
}

.mobile-menu .m-cta {
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  text-align: center;
  margin-top: 0.5rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 5, 5, 0.92) 0%, rgba(26, 14, 14, 0.80) 50%, rgba(10, 5, 5, 0.70) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-h);
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 168, 76, 0.14);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  padding: 0.375rem 1rem;
  margin-bottom: 1.5rem;
}

.hero-badge span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pdot 2s infinite;
}

@keyframes pdot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero p {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 2.5rem;
  max-width: 520px;
  line-height: 1.75;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2.2s infinite;
  z-index: 2;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

.scroll-arrow {
  width: 28px;
  height: 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== PAGE HERO (Inner Pages) ===== */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 5rem) 0 6rem;
  background: var(--navy);
  overflow: hidden;
  text-align: left;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.30;
  transition: transform 8s ease;
}

.page-hero:hover .page-hero-bg {
  transform: scale(1.04);
}

/* Gradient overlay — dark crimson to navy */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(10, 5, 5, 0.92) 0%,
      rgba(80, 10, 10, 0.60) 40%,
      rgba(33, 37, 41, 0.85) 100%);
  z-index: 1;
}

/* Diagonal bottom divider */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  clip-path: polygon(0 55%, 100% 0, 100% 100%, 0 100%);
}

/* Title block with red accent line */
.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  position: relative;
  color: var(--white);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  margin-bottom: 0.75rem;
  z-index: 2;
  padding-left: 1.25rem;
  border-left: 4px solid var(--gold);
  line-height: 1.15;
  animation: heroFadeUp 0.7s ease-out both;
}

.page-hero h1 span {
  color: var(--gold);
}

.page-hero p {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  z-index: 2;
  max-width: 520px;
  line-height: 1.7;
  padding-left: 1.25rem;
  animation: heroFadeUp 0.7s 0.15s ease-out both;
}

.breadcrumb {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.07);
  padding: 0.375rem 1rem;
  border-radius: 100px;
  backdrop-filter: blur(4px);
  animation: heroFadeUp 0.7s 0.3s ease-out both;
}

.breadcrumb a {
  color: var(--gold);
  transition: var(--trans-f);
}

.breadcrumb a:hover {
  color: #e05050;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== STATS ===== */
.stats {
  background: var(--navy);
  padding: 0;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 3rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.375rem;
}

.stat-label {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.58);
  letter-spacing: 0.04em;
}

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  transition: var(--trans);
  border: 1px solid #ececec;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.svc-img {
  width: 100%;
  height: 210px;
  overflow: hidden;
}

.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.service-card:hover .svc-img img {
  transform: scale(1.07);
}

.svc-body {
  padding: 1.5rem;
}

.svc-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 0.875rem;
}

.svc-body h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
}

.svc-body p {
  font-size: 0.875rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 1.125rem;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold);
  transition: var(--trans-f);
}

.svc-link:hover {
  gap: 0.625rem;
}

/* ===== SERVICE DETAIL (layanan.html) ===== */
.svc-detail-block {
  padding: 3.5rem 0;
  border-bottom: 1px solid #eee;
}

.svc-detail-block:last-child {
  border-bottom: none;
}

.svc-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.svc-detail-grid.rev {
  direction: rtl;
}

.svc-detail-grid.rev>* {
  direction: ltr;
}

.svc-detail-img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 360px;
}

.svc-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svc-detail-content .section-label {
  display: block;
  margin-bottom: 0.375rem;
}

.svc-detail-content h2 {
  font-size: 1.75rem;
  margin-bottom: 0.875rem;
}

.svc-detail-content p {
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.scope-list {
  margin: 1rem 0 1.75rem;
}

.scope-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f2f2f2;
  color: var(--text-body);
  font-size: 0.9rem;
}

.scope-list li:last-child {
  border-bottom: none;
}

.scope-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 1.125rem;
}

.about-text p {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.about-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.625rem;
  margin: 1.5rem 0 2rem;
}

.about-feat {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
}

.about-feat svg {
  color: var(--gold);
  flex-shrink: 0;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--forest);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(45, 90, 39, 0.35);
  text-align: center;
}

.about-badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.about-badge-text {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ===== WHY US ===== */
.why-us {
  background: var(--navy);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.why-card {
  padding: 2rem;
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  transition: var(--trans);
}

.why-card:hover {
  background: rgba(139, 16, 16, 0.10);
  transform: translateY(-4px);
}

.why-icon {
  width: 50px;
  height: 50px;
  background: rgba(139, 16, 16, 0.18);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e05050;
  margin-bottom: 1.125rem;
}

.why-card h3 {
  color: var(--white);
  font-size: 1.0625rem;
  margin-bottom: 0.5rem;
}

.why-card p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* Override label & accent color inside dark navy section */
.why-us .section-label {
  color: #e05050;
}

.why-us .section-title span {
  color: #e05050;
}


/* ===== CLIENTS ===== */
.clients {
  background: var(--cream);
  padding: 3.5rem 0;
}

.clients-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.marquee-wrap {
  overflow: hidden;
  position: relative;
}

.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
}

.marquee-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--cream), transparent);
}

.marquee-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--cream), transparent);
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 22s linear infinite;
  width: max-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 65px;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: var(--trans);
  flex-shrink: 0;
}

.client-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.client-logo img {
  max-width: 110px;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-inner h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 0.875rem;
}

.cta-inner h2 span {
  color: var(--gold);
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 2rem;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===== VISION MISSION ===== */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.vm-card {
  background: var(--white);
  border-top: 4px solid var(--forest);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.vm-card:first-child {
  border-top-color: var(--gold);
}

.vm-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.vm-card p {
  color: var(--text-body);
  line-height: 1.75;
}

.vm-list {
  margin-top: 1rem;
}

.vm-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  color: var(--text-body);
  font-size: 0.9rem;
}

.vm-list li:last-child {
  border-bottom: none;
}

.vm-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.val-card {
  text-align: center;
  padding: 2rem 1.25rem;
  border: 1px solid #eee;
  border-radius: 8px;
  transition: var(--trans);
}

.val-card:hover {
  border-color: var(--forest);
  box-shadow: 0 4px 24px rgba(45, 90, 39, 0.14);
  transform: translateY(-4px);
}

.val-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.val-card h4 {
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}

.val-card p {
  font-size: 0.8rem;
  color: var(--text-body);
  line-height: 1.55;
}

/* ===== GALLERY ===== */
.filter-bar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border: 2px solid #e0e0e0;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--trans-f);
  background: transparent;
  color: var(--text-body);
  font-family: var(--font-body);
}

.filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.875rem;
}

.gal-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gal-item.hidden {
  display: none;
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gal-item:hover img {
  transform: scale(1.07);
}

.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 25, 40, 0.75) 0%, transparent 55%);
  opacity: 0;
  transition: var(--trans);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.gal-item:hover .gal-overlay {
  opacity: 1;
}

.gal-caption {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
}

.gal-zoom {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  transition: var(--trans);
}

.gal-item:hover .gal-zoom {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.94);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.open {
  display: flex;
}

.lb-img {
  max-width: 88vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 4px;
}

.lb-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.75;
  transition: var(--trans-f);
  line-height: 1;
}

.lb-close:hover {
  opacity: 1;
  transform: scale(1.15);
}

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--trans-f);
}

.lb-nav:hover {
  background: rgba(255, 255, 255, 0.28);
}

.lb-prev {
  left: 1.5rem;
}

.lb-next {
  right: 1.5rem;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.c-info h2 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

.c-info>p {
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 2rem;
  font-size: 0.9375rem;
}

.c-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.c-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.c-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.c-item-text h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.c-item-text p,
.c-item-text a {
  font-size: 0.9375rem;
  color: var(--text-body);
}

.c-form-wrap {
  background: var(--cream);
  padding: 2.5rem;
  border-radius: 12px;
}

.c-form-wrap h3 {
  font-size: 1.375rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.125rem;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.375rem;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--trans-f);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.14);
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-deep);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
}

.footer-brand-tag {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  padding: 0.625rem 1.25rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: var(--trans-f);
}

.footer-wa:hover {
  background: #1ebe5a;
  transform: translateY(-1px);
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.625rem;
}

.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--trans-f);
  display: inline-block;
}

.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 3px;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  align-items: flex-start;
}

.footer-contact-item svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  transition: var(--trans-f);
}

.footer-bottom a:hover {
  color: var(--gold);
}

/* ===== WA FLOATING BUTTON ===== */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.wa-float-label {
  background: var(--navy);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.375rem 0.75rem;
  border-radius: 4px;
  opacity: 0;
  transform: translateX(8px);
  transition: var(--trans-f);
  pointer-events: none;
  white-space: nowrap;
  box-shadow: var(--shadow);
}

.wa-float:hover .wa-float-label {
  opacity: 1;
  transform: translateX(0);
}

.wa-float-btn {
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--trans-f);
  position: relative;
}

.wa-float-btn:hover {
  background: #1ebe5a;
  transform: scale(1.08);
}

.wa-float-btn svg {
  width: 30px;
  height: 30px;
}

.wa-float-btn::before,
.wa-float-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: wa-pulse 2.2s ease-out infinite;
}

.wa-float-btn::after {
  animation-delay: 1.1s;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.75;
  }

  100% {
    transform: scale(2.0);
    opacity: 0;
  }
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.delay-1 {
  transition-delay: 0.1s;
}

.reveal.delay-2 {
  transition-delay: 0.2s;
}

.reveal.delay-3 {
  transition-delay: 0.3s;
}

.reveal.delay-4 {
  transition-delay: 0.4s;
}

.reveal.delay-5 {
  transition-delay: 0.5s;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  section {
    padding: 3.5rem 0;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .about-grid,
  .contact-grid,
  .vm-grid,
  .svc-detail-grid,
  .svc-detail-grid.rev {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .svc-detail-grid.rev>* {
    direction: ltr;
  }

  .about-img-wrap img {
    height: 320px;
  }

  .about-badge {
    bottom: -1rem;
    left: -0.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-btns {
    flex-direction: column;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}