/* ============================================================
   BYMANDA COLLECTIVE — Alexis Theme Adaptation (v2)
   Pixel-perfect reconstruction
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --accent: #960;
  --accent-hover: #690;
  --black: #000;
  --white: #fff;
  --text-dark: #000;
  --text-body: #666;
  --text-muted: #999;
  --text-light: #aaa;
  --bg-dark: #111;
  --bg-overlay: rgba(0,0,0,0.92);
  --bg-overlay-light: rgba(0,0,0,0.8);
  --bg-header-sticky: rgba(0,0,0,0.65);
  --bg-team-hover: rgba(0,0,0,0.1);
  --bg-light: #f4f4f4;
  --border: #dfdfdf;
  --border-light: #e7e7e7;
  --border-lighter: #ddd;

  --font-display: 'Libre Baskerville', serif;
  --font-body: 'DM Sans', sans-serif;

  --fs-hero: 30px;
  --fs-title: 60px;
  --fs-section: 48px;
  --fs-testimonial: 30px;
  --fs-large: 18px;
  --fs-filter: 16px;
  --fs-menu: 14px;
  --fs-small: 13px;

  --container: 1200px;
  --fluid-pad: 60px;
  --gutter: 1.5rem;

  --ease: cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--accent); }
ul { list-style: none; }

/* ============================================================
   GRID SYSTEM (minimal Bootstrap-like)
   ============================================================ */
.container {
  width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 15px;
}
.container-fluid {
  width: 100%; padding: 0 var(--fluid-pad);
}
.row { display: flex; flex-wrap: wrap; margin: 0 calc(var(--gutter)/-2); }
.col { flex: 1; }
.col-12 { flex: 0 0 100%; max-width: 100%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-4 { flex: 0 0 33.333%; max-width: 33.333%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
@media (min-width: 768px) {
  .col-md-2 { flex: 0 0 16.666%; max-width: 16.666%; }
  .col-md-3 { flex: 0 0 25%; max-width: 25%; }
  .col-md-4 { flex: 0 0 33.333%; max-width: 33.333%; }
  .col-md-6 { flex: 0 0 50%; max-width: 50%; }
  .col-md-8 { flex: 0 0 66.666%; max-width: 66.666%; }
}
@media (min-width: 992px) {
  .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
  .col-lg-4 { flex: 0 0 33.333%; max-width: 33.333%; }
  .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
  .col-lg-8 { flex: 0 0 66.666%; max-width: 66.666%; }
}
.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.text-center { text-align: center; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.font-display { font-family: var(--font-display); }

.section-title { margin-bottom: 80px; }
.section-title .sub-label {
  color: var(--text-muted); font-size: 14px; text-transform: uppercase;
  letter-spacing: 0.3px; margin-bottom: 10px; font-weight: 400;
}
.section-title .main-title {
  font-size: var(--fs-section); font-weight: 700;
  letter-spacing: -1.377px; line-height: 1.1; color: var(--text-dark);
}
.section-title .main-title span { color: var(--accent); font-weight: 300; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block; font-family: var(--font-body);
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; padding: 14px 32px;
  border: 2px solid transparent; cursor: pointer;
  transition: all 0.3s ease; line-height: 1.4;
}
.btn-accent { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-link {
  color: var(--text-muted); font-size: var(--fs-small); font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s;
}
.btn-link:hover { color: var(--accent); }

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed; inset: 0; width: 100vw; height: 100vh;
  background: var(--white); z-index: 99999;
  display: flex; align-items: center; justify-content: center;
}
#preloader .dot {
  width: 50px; height: 50px; background: var(--black);
  border-radius: 3px; animation: rotateplane 1.2s ease-in-out infinite;
}
@keyframes rotateplane {
  0% { transform: perspective(120px) rotateX(0deg) rotateY(0deg); }
  50% { transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg); }
  100% { transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg); }
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.header-area {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  padding: 24px 0; transition: all 0.35s ease;
}
.header-area.dark {
  background: var(--bg-header-sticky);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.header-area.sticky {
  background: var(--bg-header-sticky); padding: 14px 0;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.header-area .container-fluid {
  display: flex; align-items: center; justify-content: space-between;
}
.header-logo { max-width: 320px; min-width: 160px; flex-shrink: 0; display: flex; align-items: center; }
.header-logo a { text-decoration: none; display: inline-flex; flex-direction: column; }
.header-logo .brand-text { font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif; font-weight: 800; font-size: 38px; letter-spacing: -0.5px; color: #ffffff; line-height: 1; display: block; transition: font-size 0.3s ease; }
.header-logo .brand-sub { font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif; font-weight: 700; font-size: 11px; letter-spacing: 5.5px; text-transform: uppercase; color: #d1d5db; line-height: 1.2; margin-top: 4px; display: block; transition: font-size 0.3s ease, margin-top 0.3s ease; }
.header-logo img { width: 190px; max-width: 100%; height: auto; max-height: 60px; display: block; object-fit: contain; transition: width 0.3s ease, max-height 0.3s ease; }
.header-area.sticky .header-logo .brand-text { font-size: 28px; }
.header-area.sticky .header-logo .brand-sub { font-size: 8.5px; letter-spacing: 4px; margin-top: 2px; }
.header-area.sticky .header-logo img { width: 140px; max-height: 46px; }

.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav > li { position: relative; margin: 0; }
.main-nav > li > a {
  display: block; padding: 7px 18px;
  color: rgba(255,255,255,0.85); font-size: var(--fs-menu);
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  transition: color 0.3s ease; line-height: 30px;
}
.main-nav > li > a:hover,
.main-nav > li.active > a { color: var(--accent); }

/* Submenu */
.main-nav .submenu {
  position: absolute; top: 100%; left: 0;
  background: var(--bg-dark); min-width: 240px; padding: 12px 0;
  margin-top: 32px; opacity: 0; visibility: hidden;
  transform: translateY(20px); transition: all 0.35s var(--ease);
  z-index: 10;
}
.main-nav > li:hover .submenu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.main-nav .submenu a {
  display: block; padding: 8px 24px;
  color: var(--text-light); font-size: 14px;
  transition: all 0.25s;
}
.main-nav .submenu a:hover { color: var(--white); padding-left: 28px; }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 12px; }
.search-toggle {
  background: none; border: none; color: var(--white);
  font-size: 18px; cursor: pointer; padding: 6px;
  transition: color 0.3s; line-height: 1;
}
.search-toggle:hover { color: var(--accent); }

/* Menu Toggle (Mobile) */
.menu-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 8px; z-index: 1000;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); margin: 5px 0;
  transition: all 0.3s ease; border-radius: 1px;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================================
   SEARCH OVERLAY
   ============================================================ */
#searchOverlay {
  position: fixed; inset: 0; width: 100%; min-height: 100vh;
  background: var(--bg-overlay); display: flex; align-items: center;
  justify-content: center; opacity: 0; visibility: hidden;
  z-index: 9999; transition: all 0.4s ease;
}
#searchOverlay.active { opacity: 1; visibility: visible; z-index: 9999999; }
#searchOverlay .search-form { width: 80%; max-width: 800px; }
#searchOverlay .search-form input {
  background: transparent; border: none; border-bottom: 3px solid rgba(255,255,255,0.2);
  color: var(--white); font-size: clamp(32px, 6vw, 100px); width: 100%;
  outline: none; font-family: var(--font-body); text-align: center;
  padding: 10px 0; transition: border-color 0.3s;
}
#searchOverlay .search-form input:focus { border-bottom-color: var(--accent); }
#searchOverlay .search-form input::placeholder { color: rgba(255,255,255,0.4); }
#searchOverlay .search-close {
  position: absolute; top: 30px; right: 40px;
  color: var(--white); font-size: 28px; cursor: pointer;
  background: none; border: none; padding: 8px; opacity: 0.7;
  transition: opacity 0.3s;
}
#searchOverlay .search-close:hover { opacity: 1; }
#searchOverlay #searchResults { margin-top: 40px; }

/* ============================================================
   OFF-CANVAS (MOBILE MENU)
   ============================================================ */
#offCanvas {
  position: fixed; right: 0; top: 0; width: 100%; height: 100vh;
  z-index: 9999; opacity: 0; visibility: hidden; pointer-events: none;
  transition: all 0.35s ease;
}
#offCanvas.active { opacity: 1; visibility: visible; pointer-events: auto; }
#offCanvas .overlay {
  position: absolute; inset: 0; background: var(--bg-overlay-light); z-index: 2;
}
#offCanvas .inner { position: relative; z-index: 9; }
#offCanvas .content {
  background: var(--bg-dark); width: 320px; height: 100vh;
  overflow-y: auto; margin-left: auto;
  transform: translateX(100%); z-index: 9; position: relative;
  padding: 80px 32px 40px; transition: transform 0.4s var(--ease);
}
#offCanvas.active .content { transform: none; }
#offCanvas .close-btn {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; color: rgba(255,255,255,0.6);
  font-size: 22px; cursor: pointer; transition: color 0.3s;
}
#offCanvas .close-btn:hover { color: var(--white); }
#offCanvas .menu li { border-bottom: 1px solid rgba(255,255,255,0.06); }
#offCanvas .menu li a {
  display: block; padding: 14px 0;
  color: var(--text-light); font-size: var(--fs-menu);
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  transition: color 0.3s;
}
#offCanvas .menu li a:hover { color: var(--accent); }
#offCanvas .social { margin-top: 32px; display: flex; gap: 20px; }
#offCanvas .social a { color: var(--text-muted); font-size: 14px; }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-section {
  position: relative; height: 100vh; min-height: 600px;
  background: var(--black); overflow: hidden;
}
.hero-section .swiper, .hero-section .swiper-wrapper { height: 100%; }
.hero-section .swiper-slide { position: relative; overflow: hidden; }
.hero-section .swiper-slide::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 45%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}
.hero-section .slide-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
}
.hero-section .slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}
.hero-section .slide-content {
  position: relative; z-index: 2; height: 100%;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 140px 20px 100px;
  overflow-y: auto;
}
.hero-section .slide-content .eyebrow {
  color: rgba(255,255,255,0.6); font-size: 13px; text-transform: uppercase;
  letter-spacing: 4px; margin-bottom: 20px; font-weight: 500;
}
.hero-section .slide-content h2 {
  font-family: var(--font-display); font-size: clamp(22px, 4vw, 48px);
  letter-spacing: -0.5px; line-height: 1.3; color: var(--white);
  margin-bottom: 16px; font-weight: 400;
}
.hero-section .slide-content .desc {
  color: rgba(255,255,255,0.7); font-size: 16px; max-width: 520px;
  line-height: 1.7; margin: 0 auto 32px;
}
.hero-section .swiper-pagination { bottom: 40px !important; }
.hero-section .swiper-pagination-bullet {
  width: 10px; height: 10px; background: rgba(255,255,255,0.4);
  opacity: 1; margin: 0 6px !important;
}
.hero-section .swiper-pagination-bullet-active { background: var(--accent); }
.hero-section .swiper-button-next,
.hero-section .swiper-button-prev {
  color: rgba(255,255,255,0.5); transition: color 0.3s;
  display: none;
}
.hero-section .swiper-button-next:hover,
.hero-section .swiper-button-prev:hover { color: var(--white); }

/* ============================================================
   SECTION SPACING
   ============================================================ */
.section { padding: 100px 0; }
.section-top { padding-top: 100px; }
.section-bottom { padding-bottom: 100px; }
.section-sm { padding: 60px 0; }
.section-lg { padding: 140px 0; }

/* ============================================================
   PORTFOLIO / MASONRY GRID
   ============================================================ */
.portfolio-area { padding: 60px 0 100px; }
.portfolio-area .container-fluid { padding: 0 60px; }

/* Filter */
.filter-bar { margin-bottom: 48px; display: flex; flex-wrap: wrap; justify-content: center; gap: 4px; }
.filter-bar button {
  background: none; border: none; padding: 8px 16px; cursor: pointer;
  font-size: var(--fs-filter); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.5px; color: var(--text-body);
  transition: color 0.3s var(--ease); position: relative;
}
.filter-bar button::after {
  content: ''; position: absolute; bottom: 2px; left: 50%;
  width: 0; height: 2px; background: var(--accent);
  transition: all 0.3s var(--ease); transform: translateX(-50%);
}
.filter-bar button:hover { color: var(--accent); }
.filter-bar button.is-checked { color: var(--accent); }
.filter-bar button.is-checked::after { width: 60%; }

/* Grid */
.portfolio-grid { display: flex; flex-wrap: wrap; margin: -8px; }
.portfolio-grid .item {
  padding: 8px; position: relative; overflow: hidden;
}
.portfolio-grid .item .thumb {
  position: relative; overflow: hidden; border-radius: 2px;
}
.portfolio-grid .item .thumb img {
  width: 100%; transition: transform 0.8s var(--ease);
}
.portfolio-grid .item:hover .thumb img { transform: scale(1.06); }
.portfolio-grid .item .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.6) 100%);
  opacity: 0; transition: opacity 0.4s ease;
  display: flex; align-items: flex-end; padding: 28px;
}
.portfolio-grid .item:hover .overlay { opacity: 1; }
.portfolio-grid .item .overlay .info { color: var(--white); }
.portfolio-grid .item .overlay .info .name {
  font-size: 20px; font-weight: 700; margin-bottom: 4px;
}
.portfolio-grid .item .overlay .info .category {
  font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 500;
}

/* ============================================================
   PAGE TITLE
   ============================================================ */
.page-title { padding: 160px 0 90px; text-align: center; }
.page-title .label {
  color: var(--text-muted); font-size: 14px; letter-spacing: 4px;
  text-transform: uppercase; margin-bottom: 12px; font-weight: 500;
}
.page-title h1 {
  font-family: var(--font-display); font-size: clamp(32px, 5vw, var(--fs-title));
  letter-spacing: -1px; line-height: 1.1; color: var(--text-dark);
  margin-bottom: 16px;
}
.page-title .sub {
  color: var(--text-body); font-size: var(--fs-large); max-width: 560px;
  line-height: 1.7; margin: 0 auto;
}

/* ============================================================
   PORTFOLIO SINGLE (DETAIL)
   ============================================================ */
.portfolio-single { padding: 80px 0 100px; }
.portfolio-single .project-cat {
  color: var(--text-muted); font-size: 15px; letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 12px;
}
.portfolio-single .project-title {
  font-family: var(--font-display); font-size: clamp(28px, 4vw, 52px);
  letter-spacing: -0.5px; line-height: 1.1; color: var(--text-dark);
  margin-bottom: 40px;
}
.portfolio-single .project-meta {
  border-bottom: 1px solid var(--border-light); padding-bottom: 40px;
  margin-bottom: 48px;
}
.portfolio-single .project-meta .meta-item { margin-bottom: 16px; }
.portfolio-single .project-meta .meta-item .label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 1px;
  color: var(--text-muted); font-weight: 600; margin-bottom: 4px;
}
.portfolio-single .project-meta .meta-item .value {
  color: var(--text-dark); font-size: 15px; line-height: 1.6;
}
.portfolio-single .project-desc {
  max-width: 760px; margin: 0 auto 60px;
  font-size: var(--fs-large); line-height: 1.9;
}
.portfolio-single .project-gallery { margin-bottom: 60px; }
.portfolio-single .project-gallery img {
  width: 100%; margin-bottom: 16px; border-radius: 2px;
}
.portfolio-single .project-nav {
  border-top: 1px solid var(--border-light); padding-top: 40px;
  display: flex; justify-content: space-between;
}
.portfolio-single .project-nav a {
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 3px; color: var(--text-muted); transition: color 0.3s;
}
.portfolio-single .project-nav a:hover { color: var(--accent); }

/* CTA Section */
.cta-section { text-align: center; padding: 80px 0; }
.cta-section h2 {
  font-family: var(--font-display); font-size: clamp(24px, 3vw, 36px);
  color: var(--text-dark); margin-bottom: 24px; line-height: 1.3;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero { margin-bottom: 40px; }
.about-hero img { width: 100%; border-radius: 2px; }

/* About Intro — 2 kolom (gambar + teks) */
.about-intro-section { padding: 90px 0 100px; }
.about-hero-row { align-items: flex-start; }
.about-hero-image {
  padding-right: 70px;
}
.about-hero-image img {
  width: 100%; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.about-hero-text {
  padding-left: 10px;
  margin-top: 60px;
}
.about-hero-text .sub-label {
  color: var(--text-muted); font-size: 13px; text-transform: uppercase;
  letter-spacing: 3px; margin-bottom: 14px; font-weight: 500;
}
.about-hero-text h2 {
  font-family: var(--font-display); font-size: clamp(26px, 3vw, 40px);
  color: var(--text-dark); line-height: 1.2; margin-bottom: 20px;
}
.about-hero-text p {
  font-size: 16px; line-height: 1.8; color: var(--text-body);
  margin-bottom: 16px;
}
.about-hero-text .signoff { font-style: italic; color: var(--accent); }
.about-hero-text .btn { margin-top: 12px; }
.about-intro { max-width: 760px; margin: 0 auto 80px; text-align: center; }
.about-intro h2 {
  font-family: var(--font-display); font-size: clamp(24px, 3vw, 36px);
  color: var(--text-dark); margin-bottom: 24px;
}
.about-intro p {
  font-size: var(--fs-large); line-height: 1.9; margin-bottom: 20px;
}
.about-intro .signoff { font-style: italic; color: var(--accent); }

/* Services Grid */
.services-section { padding: 0 0 100px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 48px;
  max-width: 900px;
  margin: 0 auto;
}
.service-card {
  display: flex; align-items: baseline; gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-light);
}
.service-card .service-num {
  font-family: var(--font-display); font-size: 15px;
  color: var(--accent); font-weight: 700; min-width: 30px;
}
.service-card h3 {
  font-size: 18px; font-weight: 500; color: var(--text-dark);
  line-height: 1.4;
}
.service-card:hover h3 { color: var(--accent); transition: color 0.3s; }

/* Ecosystem */
.eco-card { margin-bottom: 32px; }
.eco-card h4 {
  font-family: var(--font-display); font-size: 20px;
  color: var(--text-dark); margin-bottom: 8px;
}
.eco-card p { font-size: 15px; color: var(--text-body); line-height: 1.7; }

/* Team */
.team-member {
  position: relative; overflow: hidden; margin-bottom: 24px;
  border-radius: 2px;
}
.team-member img { width: 100%; transition: transform 0.8s var(--ease); }
.team-member:hover img { transform: scale(1.06); }
.team-member .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.7) 100%);
  opacity: 0; transition: opacity 0.4s;
  display: flex; align-items: flex-end; padding: 24px;
}
.team-member:hover .overlay { opacity: 1; }
.team-member .overlay .info { color: var(--white); }
.team-member .overlay .info .name { font-size: 18px; font-weight: 700; }
.team-member .overlay .info .pos { font-size: 13px; color: rgba(255,255,255,0.7); }

/* Testimonials */
.testimonial-section { background: var(--bg-light); }
.testimonial { text-align: center; max-width: 760px; margin: 0 auto; }
.testimonial blockquote {
  font-family: var(--font-display); font-size: clamp(20px, 2.5vw, 30px);
  line-height: 1.7; color: var(--text-dark); margin-bottom: 32px;
  font-style: italic;
}
.testimonial .author { color: var(--accent); font-size: 20px; font-weight: 700; }
.testimonial .company { color: var(--text-muted); font-size: 14px; margin-top: 4px; }

/* Milestones */
.milestone { margin-bottom: 36px; }
.milestone .year {
  font-family: var(--font-display); font-size: 22px;
  color: var(--accent); margin-bottom: 6px;
}
.milestone .label {
  font-size: 12px; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--text-muted); margin-bottom: 4px;
}
.milestone .title { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.milestone .desc { font-size: 14px; color: var(--text-body); line-height: 1.6; }

/* Clients */
.client-grid { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 24px; }
.client-grid .client-logo {
  padding: 16px 24px; opacity: 0.5; transition: opacity 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.client-grid .client-logo:hover { opacity: 1; }
.client-grid .client-logo img { max-height: 50px; width: auto; }

/* ============================================================
   BLOG
   ============================================================ */
.blog-area { padding: 0 0 100px; }

/* Blog Filter */
.blog-filter { margin-bottom: 48px; display: flex; justify-content: center; flex-wrap: wrap; gap: 4px; }
.blog-filter button {
  background: none; border: none; padding: 8px 16px; cursor: pointer;
  font-size: var(--fs-filter); font-weight: 500; color: var(--text-dark);
  transition: color 0.3s; position: relative;
}
.blog-filter button::after {
  content: ''; position: absolute; bottom: 2px; left: 0;
  width: 0; height: 2px; background: #535353; transition: width 0.3s;
}
.blog-filter button.is-checked { color: var(--accent); }
.blog-filter button.is-checked::after { width: 100%; }
.blog-filter button:hover { color: var(--accent); }

/* Blog Card */
.blog-grid { margin: -15px; display: flex; flex-wrap: wrap; }
.blog-card { padding: 15px; }
.blog-card .thumb {
  position: relative; overflow: hidden; margin-bottom: 20px; border-radius: 2px;
}
.blog-card .thumb img { width: 100%; transition: transform 0.8s var(--ease); }
.blog-card:hover .thumb img { transform: scale(1.12); }
.blog-card .cat {
  font-size: 11px; color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 1.5px; margin-bottom: 8px; display: block; font-weight: 600;
}
.blog-card h3 {
  font-size: 20px; font-weight: 700; line-height: 1.4;
  margin-bottom: 8px; color: var(--text-dark);
  transition: color 0.3s;
}
.blog-card:hover h3 { color: var(--accent); }
.blog-card h3 a { color: inherit; }
.blog-card .meta {
  font-size: 12px; color: var(--text-muted); margin-bottom: 12px;
}
.blog-card .excerpt {
  font-size: 14px; line-height: 1.7; color: var(--text-body);
  margin-bottom: 12px;
}

/* Load More */
.load-more { text-align: center; margin-top: 48px; }
.load-more button {
  background: none; border: none; font-size: 16px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted);
  cursor: pointer; padding: 12px 32px; transition: color 0.3s;
}
.load-more button:hover { color: var(--accent); }

/* ============================================================
   BLOG DETAIL
   ============================================================ */
.blog-detail { padding: 100px 0; }
.blog-detail .post-content { max-width: 860px; margin: 0 auto; }
.blog-detail .post-header { text-align: center; margin-bottom: 40px; }
.blog-detail .post-header .cat {
  font-size: 12px; color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 2px; font-weight: 600; margin-bottom: 12px; display: block;
}
.blog-detail .post-header h1 {
  font-size: clamp(24px, 3vw, 36px); font-weight: 700;
  color: var(--text-dark); line-height: 1.3; margin-bottom: 12px;
}
.blog-detail .post-header .meta { color: var(--text-body); font-size: 14px; }
.blog-detail .post-featured { margin-bottom: 40px; }
.blog-detail .post-featured img { width: 100%; border-radius: 2px; }
.blog-detail .post-body {
  max-width: 700px; margin: 0 auto; padding: 0 15px;
}
.blog-detail .post-body p {
  font-size: 16px; line-height: 1.9; color: var(--text-body); margin-bottom: 20px;
}
.blog-detail .post-body h2 {
  font-family: var(--font-display); font-size: 24px; color: var(--text-dark);
  margin: 48px 0 16px;
}
.blog-detail .post-body h3 {
  font-size: 18px; font-weight: 700; color: var(--text-dark);
  margin: 36px 0 12px;
}
.blog-detail .post-body blockquote {
  font-family: var(--font-display); font-size: 20px; line-height: 1.6;
  color: var(--text-dark); padding: 20px 24px; margin: 32px 0;
  border-left: 3px solid var(--accent); font-style: italic;
}
.blog-detail .post-tags { display: flex; gap: 8px; flex-wrap: wrap; margin: 40px 0; }
.blog-detail .post-tags a {
  color: var(--text-muted); font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.5px;
  padding: 6px 16px; border: 1px solid var(--border);
  transition: all 0.3s; border-radius: 2px;
}
.blog-detail .post-tags a:hover { color: var(--accent); border-color: var(--accent); }
.blog-detail .post-nav {
  display: flex; justify-content: space-between; padding-top: 32px;
  border-top: 1px solid var(--border-lighter);
  font-size: 13px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 3px;
}
.blog-detail .post-nav a { color: var(--text-muted); transition: color 0.3s; }
.blog-detail .post-nav a:hover { color: var(--accent); }

/* Comments */
.comments { margin-top: 60px; padding-top: 40px; border-top: 1px solid var(--border-lighter); }
.comments h3 { font-size: 20px; font-weight: 700; margin-bottom: 24px; color: var(--text-dark); }
.comment-item { padding: 16px 0; border-bottom: 1px solid var(--border-light); }
.comment-item .name { font-weight: 700; color: var(--text-dark); }
.comment-item .date { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.comment-item .text { color: var(--text-body); line-height: 1.6; }

/* ============================================================
   CONTACT (MODERN LUXURY EDITORIAL REDESIGN)
   ============================================================ */
.contact-area { padding: 40px 0 100px; }

.contact-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 32px 28px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}
.contact-card:hover {
  border-color: #d1d5db;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}
.contact-card .card-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 8px;
}
.contact-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.contact-card p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 12px;
}
.contact-card p:last-child {
  margin-bottom: 0;
}

/* WhatsApp Channel Item */
.wa-channel-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}
.wa-channel-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}
.wa-channel-item:hover {
  background: #ffffff;
  border-color: var(--accent);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.wa-channel-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-channel-icon {
  width: 36px;
  height: 36px;
  background: #fdfaf6;
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wa-channel-text .title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  display: block;
}
.wa-channel-text .phone {
  font-size: 12px;
  color: var(--text-muted);
}
.wa-channel-action {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  background: #fff;
  border: 1px solid var(--accent);
  padding: 4px 10px;
  border-radius: 12px;
  transition: all 0.2s ease;
}
.wa-channel-item:hover .wa-channel-action {
  background: var(--accent);
  color: #fff;
}

/* Ecosystem Tag Badges */
.eco-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.eco-tag-item {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  background: #f5f5f5;
  border: 1px solid #e5e5e5;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.eco-tag-item:hover {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

/* Contact Form Card */
.contact-form-wrapper {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 40px 36px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}
.contact-form-wrapper h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  color: var(--text-dark);
  margin-bottom: 8px;
}
.contact-form-wrapper p.subtitle {
  font-size: 14px;
  color: var(--text-body);
  margin-bottom: 28px;
  line-height: 1.6;
}
.contact-form-wrapper .form-group {
  margin-bottom: 20px;
}
.contact-form-wrapper label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.contact-form-wrapper label span.req {
  color: #e11d48;
}
.contact-form-wrapper .form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-dark);
  background: #ffffff;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.contact-form-wrapper .form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(153, 102, 0, 0.12);
}
.contact-form-wrapper .form-control::placeholder {
  color: #aaa;
}
.contact-form-wrapper textarea.form-control {
  min-height: 140px;
  resize: vertical;
}
.contact-form-wrapper .form-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}

.btn-contact-submit {
  width: 100%;
  background: var(--accent);
  color: #ffffff;
  border: 1px solid var(--accent);
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(153, 102, 0, 0.25);
  font-family: inherit;
}
.btn-contact-submit:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(153, 102, 0, 0.35);
}

/* Map */
.contact-map-card {
  margin-top: 60px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}
.contact-map-card iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--white); color: var(--text-body); padding: 48px 0;
  border-top: 1px solid var(--border-lighter);
}
.site-footer .container-fluid { padding: 0 60px; }
.site-footer .footer-left { padding-left: 32px; }
.site-footer .footer-left a {
  color: var(--text-body); font-size: 13px; margin-right: 24px;
  transition: color 0.3s;
}
.site-footer .footer-left a:hover { color: var(--accent); }
.site-footer .footer-center { text-align: center; }
.site-footer .footer-center p { font-size: 13px; line-height: 1.7; }
.site-footer .footer-right { text-align: right; }
.site-footer .social-link {
  color: var(--text-dark); font-size: 14px; margin-left: 24px;
  transition: color 0.3s;
}
.site-footer .social-link:hover { color: var(--accent); }
.site-footer .social-link:first-child { margin-left: 0; }

/* ============================================================
   404 PAGE
   ============================================================ */
.error-page { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 120px 20px 80px; }
.error-page h1 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 48px); color: var(--text-dark); margin-bottom: 16px; }
.error-page p { font-size: var(--fs-large); color: var(--text-body); margin-bottom: 32px; }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
#scrollTop {
  position: fixed; right: 30px; bottom: -60px; z-index: 999;
  width: 50px; height: 50px; line-height: 50px; text-align: center;
  background: var(--black); color: var(--white); border-radius: 50%;
  border: none; cursor: pointer; font-size: 18px;
  opacity: 0; visibility: hidden;
  transition: all 0.3s ease; box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
#scrollTop.visible { bottom: 30px; opacity: 1; visibility: visible; }
#scrollTop:hover { background: var(--accent); transform: translateY(-2px); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1399px) {
  :root { --fluid-pad: 40px; }
}

@media (max-width: 1199px) {
  :root { --fs-title: 48px; --fs-section: 40px; --fs-testimonial: 24px; }
  .section, .section-top { padding-top: 80px; }
  .section, .section-bottom { padding-bottom: 80px; }
  .section-title { margin-bottom: 60px; }
  .page-title { padding: 140px 0 50px; }
}

@media (max-width: 991px) {
  :root { --fluid-pad: 20px; --fs-section: 36px; --fs-title: 36px; }

  .main-nav { display: none; }
  .menu-toggle { display: block; }

  .header-area { padding: 24px 0; }
  .header-area.sticky { padding: 14px 0; }
  .header-logo { max-width: 260px; }
  .header-logo .brand-text { font-size: 32px; }
  .header-logo .brand-sub { font-size: 9.5px; letter-spacing: 4.5px; }
  .header-logo img { width: 160px; max-height: 52px; }

  .portfolio-area { padding: 40px 0 80px; }
  .portfolio-area .container-fluid { padding: 0 20px; }

  .hero-section .slide-content { padding: 100px 20px 60px; }
  .hero-section .slide-content h2 { font-size: 26px; }

  .portfolio-single { padding: 60px 0 80px; }
  .portfolio-single .project-title { font-size: 36px; }

  .section, .section-top { padding-top: 60px; }
  .section, .section-bottom { padding-bottom: 60px; }
  .section-title { margin-bottom: 48px; }
  .page-title { padding: 120px 0 40px; }
  .page-title h1 { font-size: 36px; }

  .site-footer .container-fluid { padding: 0 20px; }
  .site-footer .footer-left,
  .site-footer .footer-center,
  .site-footer .footer-right {
    text-align: center; margin-bottom: 12px;
  }
  .site-footer .footer-right { text-align: center; }
  .site-footer .social-link { margin: 0 12px; }

  .contact-form .btn-submit { font-size: 14px; padding: 32px 0 5px; }
  .blog-detail .post-body { padding: 0; }

  #searchOverlay .search-form input { font-size: 48px; }
}

@media (max-width: 767px) {
  :root { --fs-section: 28px; --fs-title: 30px; --fs-hero: 24px; --fs-large: 16px; }

  .header-area { padding: 16px 0; }
  .header-logo { max-width: 220px; }
  .header-logo .brand-text { font-size: 26px; }
  .header-logo .brand-sub { font-size: 8px; letter-spacing: 3.5px; }
  .header-logo img { width: 135px; max-height: 44px; }

  .hero-section { height: 80vh; min-height: 500px; }
  .hero-section .slide-content h2 { font-size: 22px; }
  .hero-section .slide-content .eyebrow { font-size: 11px; letter-spacing: 3px; }

  .section, .section-top { padding-top: 48px; }
  .section, .section-bottom { padding-bottom: 48px; }
  .section-title { margin-bottom: 36px; }
  .section-title .main-title { font-size: 28px; }
  .page-title { padding: 100px 0 32px; }
  .page-title h1 { font-size: 30px; }

  .portfolio-area { padding: 24px 0 60px; }
  .portfolio-grid .item { padding: 6px; }
  .filter-bar { gap: 2px; }
  .filter-bar button { padding: 6px 10px; font-size: 13px; }

  .portfolio-single { padding: 40px 0 60px; }
  .portfolio-single .project-title { font-size: 28px; }
  .portfolio-single .project-nav { flex-direction: column; gap: 12px; text-align: center; }

  .blog-card h3 { font-size: 18px; }
  .blog-filter { gap: 2px; }
  .blog-filter button { padding: 6px 10px; font-size: 13px; }
  .blog-detail { padding: 60px 0; }
  .blog-detail .post-nav { flex-direction: column; gap: 12px; text-align: center; }

  .contact-intro h2 { font-size: 28px; }
  .about-intro h2 { font-size: 28px; }
  .cta-section h2 { font-size: 24px; }
  .cta-section { padding: 48px 0; }

  #searchOverlay .search-form input { font-size: 32px; }
  #searchOverlay .search-close { top: 16px; right: 16px; font-size: 22px; }

  #scrollTop { width: 40px; height: 40px; line-height: 40px; right: 16px; }
  #scrollTop.visible { bottom: 20px; }

  .client-grid .client-logo img { max-height: 36px; }
  .team-member .overlay .info .name { font-size: 15px; }
  .milestone .year { font-size: 18px; }

  /* About 2-kolom jadi 1-kolom di mobile */
  .about-intro-section { padding: 20px 0 60px; }
  .about-hero-text { padding-left: 0; margin-top: 32px; }
  .about-hero-image { margin-bottom: 0; }

  .services-section { padding-bottom: 60px; }
  .services-grid { grid-template-columns: 1fr; gap: 0; }
  .service-card { padding: 16px 0; }
}

@media (max-width: 575px) {
  .hero-section { height: 70vh; min-height: 420px; }
  .hero-section .slide-content h2 { font-size: 20px; }
  .hero-section .slide-content .desc { font-size: 14px; }
  .hero-section .swiper-pagination { bottom: 24px !important; }

  .portfolio-grid .item { padding: 4px; }
  .portfolio-single .project-title { font-size: 24px; }

  .page-title { padding: 80px 0 24px; }
  .page-title h1 { font-size: 26px; }
}

/* ============================================================
   FLASH MESSAGES
   ============================================================ */
.flash-msg {
  position: fixed; bottom: 24px; right: 24px; z-index: 999999;
  padding: 16px 24px; border-radius: 4px; font-size: 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15); animation: slideUp 0.3s ease;
}
.flash-msg.success { background: #059669; color: #fff; }
.flash-msg.error { background: #DC2626; color: #fff; }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   BYMANDA ECOSYSTEM & PRICING COMPONENTS
   ============================================================ */
.eco-box {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 32px 28px;
  border-radius: 4px;
  transition: all 0.35s var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.eco-box:hover {
  border-color: #111;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transform: translateY(-4px);
}
.eco-box .unit-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}
.eco-box h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}
.eco-box p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}
.eco-box .unit-footer {
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.eco-box .price-badge {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}
.eco-box .price-badge span {
  color: var(--accent);
}

/* Pricing Card Component */
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 36px 30px;
  border-radius: 4px;
  margin-bottom: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.35s var(--ease);
}
.pricing-card.featured {
  border-color: #111;
  background: #fafafa;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.pricing-card .p-header {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.pricing-card .p-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 6px;
  display: block;
}
.pricing-card .p-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.pricing-card .p-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 10px;
}
.pricing-card .p-price small {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
}
.pricing-card ul.p-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  flex-grow: 1;
}
.pricing-card ul.p-features li {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pricing-card ul.p-features li::before {
  content: "✓";
  color: var(--accent);
  font-weight: bold;
}

/* Stat Box */
.stat-box {
  padding: 24px 16px;
  text-align: center;
}
.stat-box .number {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1;
}
.stat-box .label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Testimonial Quote Card */
.testi-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 32px 28px;
  border-radius: 4px;
  margin-bottom: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}
.testi-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border-color: #111;
}
.testi-card .stars {
  color: #f59e0b;
  margin-bottom: 14px;
  font-size: 14px;
}
.testi-card p.quote {
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.testi-card .author-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
  padding-top: 14px;
}
.testi-card .author-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-dark);
}
.testi-card .author-role {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================================
   CRM LEAD CAPTURE MODAL & FLOATING WA BUTTON
   ============================================================ */
.lead-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lead-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.lead-modal-card {
  background: #ffffff;
  width: 100%;
  max-width: 520px;
  border-radius: 8px;
  padding: 36px 32px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  transform: scale(0.94) translateY(15px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
}
.lead-modal-overlay.active .lead-modal-card {
  transform: scale(1) translateY(0);
}
.lead-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 22px;
  color: #888;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s;
}
.lead-modal-close:hover {
  background: #f4f4f4;
  color: #111;
}
.lead-modal-header {
  margin-bottom: 24px;
}
.lead-modal-header .tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}
.lead-modal-header h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: #111;
  line-height: 1.3;
  margin-bottom: 6px;
}
.lead-modal-header p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}
.lead-form-group {
  margin-bottom: 18px;
}
.lead-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
}
.lead-form-group label span.req {
  color: #e11d48;
}
.lead-form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  color: #111;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.lead-form-control:focus {
  outline: none;
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}
.lead-form-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 38px;
}
.btn-lead-submit {
  width: 100%;
  background: var(--accent);
  color: #ffffff;
  border: 1px solid var(--accent);
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(153, 102, 0, 0.28);
}
.btn-lead-submit:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(153, 102, 0, 0.38);
}
.btn-lead-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Modal Success State */
.lead-success-state {
  text-align: center;
  padding: 10px 4px 6px;
  animation: fadeInModal 0.4s ease forwards;
}
@keyframes fadeInModal {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.lead-success-icon {
  width: 64px;
  height: 64px;
  background: #fbf5ee;
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.lead-success-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lead-success-state h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: #111;
  margin-bottom: 8px;
}
.lead-success-state p.main-msg {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}
.lead-summary-card {
  background: #faf8f5;
  border: 1px solid #ebd9c8;
  border-radius: 6px;
  padding: 16px 18px;
  text-align: left;
  margin-bottom: 20px;
  font-size: 13px;
}
.lead-summary-card .row-item {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px dashed #e8d7c4;
}
.lead-summary-card .row-item:last-child {
  border-bottom: none;
}
.lead-summary-card .label {
  color: #777;
  font-weight: 500;
}
.lead-summary-card .value {
  color: #222;
  font-weight: 700;
}
.lead-success-note {
  font-size: 13px;
  color: #666;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 4px;
  padding: 10px 14px;
  line-height: 1.5;
  margin-bottom: 24px;
}
.lead-success-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Floating WhatsApp Button (Bottom Left Circular Icon) */
.floating-wa-btn {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 9999;
  background: #25D366;
  color: #ffffff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  padding: 0;
}
.floating-wa-btn:hover {
  background: #20BA5A;
  color: #ffffff;
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.55);
}
.floating-wa-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
@media (max-width: 767px) {
  .floating-wa-btn {
    bottom: 20px;
    left: 18px;
    width: 48px;
    height: 48px;
  }
  .floating-wa-btn svg {
    width: 24px;
    height: 24px;
  }
}