/* ============================================
   KREATHON — Final v2
   Brand: #172F56 | #15519C | #87ADDB | #B5CEE8
   ============================================ */

:root {
  --navy:        #172F56;
  --navy-2:      #1C3A6A;
  --navy-3:      #1E3F75;
  --navy-4:      #243F72;
  --blue:        #15519C;
  --blue-lt:     #87ADDB;
  --blue-pale:   #B5CEE8;
  --blue-glow:   rgba(21,81,156,0.15);

  --light-bg:    #F2F7FC;
  --light-bg-2:  #EBF3FB;
  --border-lt:   #DDE8F4;

  /* Text on dark bg */
  --text:        #FFFFFF;
  --text-mid:    rgba(255,255,255,0.75);
  --text-muted:  rgba(255,255,255,0.45);

  /* Text on light bg */
  --text-dark:   #172F56;
  --text-dark-2: #1E3A66;
  --text-dark-m: #5A6E90;

  --white: #FFFFFF;
  --font-display: 'DM Serif Display', serif;
  --font-body:    'DM Sans', sans-serif;
  --font-serif:   'Cormorant Garamond', serif;
  --radius: 4px;
  --ease:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --tr:     0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { background: var(--navy); color: var(--text); font-family: var(--font-body); font-weight: 300; overflow-x: hidden; }
body { cursor: auto; }
img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.1; }
h1   { font-size: clamp(3rem, 7vw, 6rem); }
h2   { font-size: clamp(2rem, 4vw, 3.5rem); }
h3   { font-size: clamp(1.25rem, 2vw, 1.75rem); }
em   { font-family: var(--font-serif); font-style: italic; color: var(--blue-lt); }
p    { line-height: 1.7; font-weight: 300; }

/* ── LAYOUT ── */
.container    { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 60px); }
.section-pad  { padding: clamp(80px, 10vw, 140px) 0; }

/* Section backgrounds + text color fix */
.section-light { background: var(--light-bg); }
.section-light p { color: var(--text-dark-2); }
.section-light h2,.section-light h3,.section-light h4 { color: var(--text-dark); }
.section-dark  { background: var(--navy); }
.section-dark  p { color: var(--text-mid); }
.section-dark  h2,.section-dark h3,.section-dark h4 { color: var(--white); }

/* ── SECTION HEADERS ── */
.section-header { text-align: center; margin-bottom: clamp(48px, 6vw, 80px); }
.section-label {
  display: inline-block; font-size: 0.68rem; letter-spacing: 0.3em;
  text-transform: uppercase; margin-bottom: 16px; padding: 5px 16px;
  border-radius: 20px; font-weight: 500;
}
.section-dark  .section-label { color: var(--blue-lt);  border: 1px solid rgba(135,173,219,0.4); }
.section-light .section-label { color: var(--blue);     border: 1px solid rgba(21,81,156,0.3); }
.about-banner  .section-label { color: var(--blue-lt);  border: 1px solid rgba(135,173,219,0.4); }
.contact-section .section-label { color: var(--blue);   border: 1px solid rgba(21,81,156,0.3); }
.section-dark  .section-title { color: var(--white); }
.section-light .section-title { color: var(--navy); }
.section-dark  .section-desc  { color: var(--text-mid); }
.section-light .section-desc  { color: var(--text-dark-2); }
.section-title { margin-bottom: 16px; }
.section-desc  { max-width: 500px; margin: 0 auto; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: var(--white);
  padding: 14px 32px; font-family: var(--font-body); font-weight: 500;
  font-size: 0.9rem; letter-spacing: 0.04em; border-radius: var(--radius);
  border: 1.5px solid var(--navy); transition: var(--tr); cursor: pointer;
}
.btn-primary:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(21,81,156,0.35); }
.btn-primary.btn-sm { padding: 10px 22px; font-size: 0.82rem; }
.btn-full { width: 100%; justify-content: center; }

/* btn-primary on LIGHT sections needs to stand out */
.section-light .btn-primary,
.contact-section .btn-primary { background: var(--navy); border-color: var(--navy); color: #fff; }
.section-light .btn-primary:hover,
.contact-section .btn-primary:hover { background: var(--blue); border-color: var(--blue); }

.btn-ghost {
  display: inline-flex; align-items: center; color: var(--white);
  padding: 14px 32px; font-family: var(--font-body); font-size: 0.9rem;
  border: 1.5px solid rgba(255,255,255,0.45); border-radius: var(--radius); transition: var(--tr);
}
.btn-ghost:hover { border-color: var(--white); transform: translateY(-2px); }
.btn-ghost-sm {
  display: inline-flex; color: var(--white); padding: 10px 22px;
  font-size: 0.8rem; border: 1.5px solid rgba(255,255,255,0.55); border-radius: var(--radius); transition: var(--tr);
}
.btn-ghost-sm:hover { border-color: var(--white); }

/* ── ANIMATIONS ── */
@keyframes fadeInUp   { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes heroZoom   { to { transform: scale(1); } }
@keyframes plBar      { to { width: 100%; } }

.reveal-up, .reveal-left, .reveal-right { opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }

/* ── CURSOR ── */


/* ── PRELOADER ── */
#preloader {
  position: fixed; inset: 0; background: var(--navy); z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.preloader-logo-img {
  width: 80px; height: auto;
  animation: fadeInUp 0.8s 0.2s ease both;
}
.preloader-text {
  font-family: var(--font-body); font-weight: 600; letter-spacing: 0.44em;
  font-size: 0.72rem; color: rgba(255,255,255,0.8);
  animation: fadeInUp 0.7s 0.5s ease both; opacity: 0;
}
.preloader-bar-wrap {
  width: 100px; height: 1.5px; background: rgba(255,255,255,0.15); border-radius: 2px; overflow: hidden;
  animation: fadeInUp 0.5s 0.6s ease both; opacity: 0;
}
.preloader-bar { height: 100%; width: 0; background: var(--blue-pale); border-radius: 2px; animation: plBar 1.8s 0.7s ease forwards; }

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0; transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
#navbar.scrolled {
  background: rgba(23,47,86,0.97); backdrop-filter: blur(20px);
  padding: 11px 0; box-shadow: 0 2px 30px rgba(0,0,0,0.28);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 60px);
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 44px; width: auto; }

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex; align-items: center; gap: 4px; padding: 8px 12px;
  font-size: 0.845rem; font-weight: 400; letter-spacing: 0.02em;
  color: rgba(255,255,255,0.82); transition: color 0.2s, background 0.2s;
  border-radius: 4px; white-space: nowrap;
}
.nav-links > li > a:hover { color: #fff; background: rgba(255,255,255,0.1); }

.nav-chev {
  font-size: 0.58rem; opacity: 0.6; transition: transform 0.25s;
  display: inline-block; line-height: 1; margin-left: 2px;
}
/* ── DROPDOWN — hidden by default, only show on hover ── */
.has-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white); border-radius: 10px;
  min-width: 240px; padding: 6px;
  /* HIDDEN BY DEFAULT */
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  box-shadow: 0 12px 48px rgba(23,47,86,0.2);
  border: 1px solid var(--border-lt);
  z-index: 200;
}
.dropdown-menu::before {
  content: ''; position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%);
  border: 6px solid transparent; border-bottom-color: var(--white);
}
/* ONLY show on hover */
.has-dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.has-dropdown:hover .nav-chev { transform: rotate(180deg); }
/* Invisible bridge to prevent gap between nav item and dropdown */
.has-dropdown::after {
  content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 12px;
}

.drop-item { display: flex; flex-direction: column; gap: 3px; padding: 11px 14px; border-radius: 7px; transition: background 0.18s; }
.drop-item:hover { background: var(--light-bg); }
.drop-title { font-size: 0.855rem; color: var(--navy); font-weight: 500; font-family: var(--font-body); }
.drop-sub   { font-size: 0.73rem; color: var(--text-dark-m); }

/* Nav CTA button */
.nav-cta {
  background: var(--white) !important; color: var(--navy) !important;
  padding: 8px 20px !important; border-radius: var(--radius) !important;
  font-weight: 600 !important; font-size: 0.845rem !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--light-bg) !important; }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: 0.3s; }
.nav-hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(310px, 84vw);
  background: var(--navy); z-index: 999; transform: translateX(110%);
  transition: transform 0.35s var(--ease); overflow-y: auto; padding: 22px 26px 40px;
  border-left: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.active { transform: translateX(0); }
.mob-close-btn { display: block; margin-left: auto; margin-bottom: 28px; background: none; border: none; color: rgba(255,255,255,0.65); font-size: 1.2rem; cursor: pointer; padding: 4px; }
.mobile-menu ul { display: flex; flex-direction: column; }
.mobile-menu li { border-bottom: 1px solid rgba(255,255,255,0.07); }
.mob-link { display: block; padding: 13px 0; font-size: 0.95rem; color: rgba(255,255,255,0.78); transition: color 0.2s; }
.mob-link:hover { color: var(--white); }
.mob-cta { color: var(--blue-pale) !important; font-weight: 600; border: none; margin-top: 8px; }
.mob-acc-btn {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 13px 0; background: none; border: none; color: rgba(255,255,255,0.78);
  font-family: var(--font-body); font-size: 0.95rem; cursor: pointer;
}
.mob-sub-list { display: none; flex-direction: column; padding-left: 14px; padding-bottom: 6px; }
.mob-sub-list li { border: none; }
.mob-sub-list .mob-link { font-size: 0.875rem; color: rgba(255,255,255,0.5); padding: 7px 0; }

/* ── HERO — FULLSCREEN + BLUR ── */
#hero {
  min-height: 100vh;
  width: 100vw;
  display: flex; align-items: center; position: relative; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-bg-img {
  /* FULLSCREEN: cover entire viewport */
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1.06); animation: heroZoom 8s ease forwards;
}
/* Subtle blur on hero image */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    130deg,
    rgba(23,47,86,0.88) 0%,
    rgba(23,47,86,0.58) 55%,
    rgba(23,47,86,0.78) 100%
  );
}
.hero-grid-lines {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-content {
  position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; width: 100%;
  padding: clamp(120px, 14vw, 180px) clamp(20px, 5vw, 60px) 90px;
}
.hero-eyebrow {
  font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.65); margin-bottom: 20px; display: block;
  animation: fadeInUp 0.7s 0.4s ease both;
}
.hero-title {
  color: var(--white); margin-bottom: 22px;
  animation: fadeInUp 0.8s 0.55s ease both;
}
.hero-title em { display: block; color: var(--blue-pale); }
.hero-desc {
  max-width: 460px; color: rgba(255,255,255,0.75); font-size: 0.975rem;
  margin-bottom: 38px; animation: fadeInUp 0.7s 0.7s ease both;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; animation: fadeInUp 0.7s 0.85s ease both; }
.hero-scroll-indicator {
  position: absolute; bottom: 36px; left: clamp(20px,5vw,60px); z-index: 2;
  display: flex; align-items: center; gap: 12px;
}
.hero-scroll-indicator span {
  font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 52px; background: linear-gradient(to bottom, var(--blue-pale), transparent);
  animation: scrollLine 2.2s 1.8s ease-in-out infinite;
}
.hero-stats {
  position: absolute; bottom: 36px; right: clamp(20px,5vw,60px); z-index: 2;
  display: flex; gap: 44px; animation: fadeInUp 0.7s 1.1s ease both;
}
.stat { text-align: right; }
.stat-number { font-family: var(--font-display); font-size: 2.4rem; color: var(--white); line-height: 1; }
.stat-plus   { font-family: var(--font-display); font-size: 1.4rem; color: var(--blue-pale); }
.stat p      { font-size: 0.66rem; letter-spacing: 0.1em; margin-top: 3px; color: rgba(255,255,255,0.42); }

/* ── MARQUEE ── */
.marquee-section {
  overflow: hidden; padding: 17px 0; background: var(--navy-2);
  border-top: 1px solid rgba(255,255,255,0.07); border-bottom: 1px solid rgba(255,255,255,0.07);
}
.marquee-track { display: flex; align-items: center; gap: 40px; animation: marqueeScroll 28s linear infinite; white-space: nowrap; }
.marquee-track span { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.marquee-track .dot { color: var(--blue-lt); font-size: 0.5rem; }

/* ── SERVICES (light bg) ── */
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border-lt); background: var(--border-lt); gap: 1px;
}
.service-card {
  padding: 38px 30px; position: relative; overflow: hidden;
  transition: var(--tr); background: var(--white);
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--navy); transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease);
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(23,47,86,0.12); z-index: 1; }
.service-card:hover::after { transform: scaleX(1); }
.service-num {
  font-family: var(--font-serif); font-size: 4.5rem; font-weight: 300;
  color: rgba(23,47,86,0.06); position: absolute; top: 12px; right: 18px; line-height: 1;
}
.service-icon { width: 44px; height: 44px; color: var(--blue); margin-bottom: 20px; }
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 { margin-bottom: 12px; font-size: 1.15rem; color: var(--navy); }
.service-card p  { font-size: 0.875rem; margin-bottom: 26px; color: var(--text-dark-2); }
.service-link {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue); border-bottom: 1px solid rgba(21,81,156,0.4); padding-bottom: 2px;
  transition: letter-spacing 0.3s; display: inline-block;
}
.service-link:hover { letter-spacing: 0.15em; }

/* ── PROJECTS (dark bg) ── */
.project-featured {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
  align-items: center; margin-bottom: 56px;
}
.project-img-wrap {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; border: 1px solid rgba(255,255,255,0.1);
}
.project-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.project-img-wrap:hover img { transform: scale(1.04); }
.project-badge {
  position: absolute; top: 18px; left: 18px; background: var(--blue); color: var(--white);
  padding: 5px 14px; font-size: 0.67rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; border-radius: 2px;
}
.project-status-tag {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(34,197,94,0.18); color: #4ade80; border: 1px solid rgba(34,197,94,0.3);
  padding: 4px 12px; font-size: 0.67rem; letter-spacing: 0.07em; border-radius: 20px; font-weight: 600;
}
.project-location { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-pale); font-weight: 500; margin-bottom: 7px; }
.project-featured-content h3 { color: var(--white); margin-bottom: 6px; }
.project-tagline { font-family: var(--font-serif); font-style: italic; font-size: 1.05rem; color: rgba(255,255,255,0.6); margin-bottom: 14px; }
.project-featured-content > p { color: rgba(255,255,255,0.68); font-size: 0.88rem; }
.project-features { margin: 20px 0 28px; display: flex; flex-direction: column; gap: 9px; }
.project-features li { font-size: 0.875rem; color: rgba(255,255,255,0.68); padding-left: 18px; position: relative; }
.project-features li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 7px; height: 7px; background: var(--blue-lt); border-radius: 50%; }
.project-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.projects-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.project-card {
  background: var(--navy-2); border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07); transition: var(--tr);
}
.project-card:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.18); box-shadow: 0 16px 48px rgba(0,0,0,0.3); }
.project-card-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.project-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s var(--ease); }
.project-card:hover .project-card-img img { transform: scale(1.06); }
.project-card-overlay {
  position: absolute; inset: 0; background: rgba(23,47,86,0.52);
  display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.3s;
}
.project-card:hover .project-card-overlay { opacity: 1; }
.sold-overlay { background: rgba(23,47,86,0.72); }
.sold-text { font-family: var(--font-body); font-weight: 700; font-size: 1.1rem; letter-spacing: 0.2em; color: var(--white); border: 2px solid var(--white); padding: 9px 18px; border-radius: 2px; }
.pc-tag { position: absolute; top: 10px; right: 10px; padding: 3px 10px; font-size: 0.62rem; letter-spacing: 0.1em; border-radius: 20px; font-weight: 600; text-transform: uppercase; }
.tag-active  { background: rgba(34,197,94,0.2);   color: #4ade80; }
.tag-sold    { background: rgba(239,68,68,0.2);    color: #fca5a5; }
.tag-partner { background: rgba(135,173,219,0.25); color: var(--blue-pale); }
.project-card-info { padding: 18px 20px; }
.project-type { font-size: 0.63rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--blue-lt); font-weight: 600; margin-bottom: 5px; display: block; }
.project-card-info h4 { font-size: 0.95rem; color: var(--white); margin-bottom: 6px; }
.project-card-info p  { font-size: 0.81rem; color: rgba(255,255,255,0.58); }

/* ── PROMO (light bg) ── */
.promo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.promo-card {
  background: var(--white); border: 1px solid var(--border-lt); border-radius: var(--radius);
  padding: 32px 28px; position: relative; overflow: hidden; transition: var(--tr);
}
.promo-card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(23,47,86,0.1); }
.promo-accent { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--navy), var(--blue)); }
.promo-tag  { font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--blue); font-weight: 600; margin-bottom: 10px; display: block; }
.promo-card h4 { font-size: 1.22rem; color: var(--navy); margin-bottom: 10px; }
.promo-card p  { font-size: 0.875rem; color: var(--text-dark-2); margin-bottom: 22px; }
.promo-note { text-align: center; font-size: 0.73rem; color: var(--text-dark-m); margin-top: 26px; }

/* ── ABOUT (dark bg variant) ── */
.about-banner { background: var(--navy-3); border-top: 1px solid rgba(255,255,255,0.07); border-bottom: 1px solid rgba(255,255,255,0.07); }
.about-banner-inner {
  max-width: 1200px; margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 60px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-text h2 { color: var(--white); margin-bottom: 20px; }
.about-text p  { color: var(--text-mid); margin-bottom: 14px; font-size: 0.9rem; }
.about-text .btn-primary { background: var(--blue); border-color: var(--blue); margin-top: 8px; }
.about-text .btn-primary:hover { background: var(--navy); border-color: var(--navy); }
.about-card-stack { position: relative; }
.about-card-bg { position: absolute; inset: 20px -20px -20px 20px; background: rgba(21,81,156,0.12); border: 1px solid rgba(135,173,219,0.18); border-radius: 6px; }
.about-card-front {
  position: relative; background: rgba(255,255,255,0.05); border: 1px solid rgba(135,173,219,0.2);
  border-radius: 6px; padding: 44px 36px; display: flex; flex-direction: column;
}
.about-card-stat { text-align: center; padding: 24px 0; }
.about-divider   { height: 1px; background: rgba(255,255,255,0.08); }
.big-num  { font-family: var(--font-display); font-size: 4rem; color: var(--white); line-height: 1; }
.big-plus { font-family: var(--font-display); font-size: 2rem; color: var(--blue-pale); }
.about-card-stat p { font-size: 0.82rem; margin-top: 8px; letter-spacing: 0.05em; color: rgba(255,255,255,0.6); }

/* ── TESTIMONIALS (light bg) ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.testi-card {
  background: var(--white); border: 1px solid var(--border-lt); padding: 28px;
  border-radius: var(--radius); transition: var(--tr); position: relative;
}
.testi-card::before {
  content: '\201C'; position: absolute; top: 10px; right: 20px;
  font-family: var(--font-serif); font-size: 5.5rem; color: rgba(23,47,86,0.06); line-height: 1;
}
.testi-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(23,47,86,0.09); }
.testi-stars { color: #F59E0B; font-size: 0.9rem; letter-spacing: 3px; margin-bottom: 12px; }
.testi-card p { font-size: 0.875rem; line-height: 1.78; font-style: italic; margin-bottom: 22px; color: var(--text-dark-2); }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(21,81,156,0.22); }
.testi-author strong { display: block; font-size: 0.875rem; color: var(--navy); font-weight: 600; }
.testi-author span   { font-size: 0.72rem; color: var(--blue); }

/* ── BLOG/INSPIRASI (dark) ── */
.blog-section { background: var(--navy-2); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
  padding: 32px 28px; border-radius: var(--radius); transition: var(--tr);
}
.blog-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.14); background: rgba(255,255,255,0.07); }
.blog-num { font-family: var(--font-serif); font-size: 3.8rem; color: rgba(255,255,255,0.07); line-height: 1; margin-bottom: 16px; }
.blog-card h4 { font-size: 1.05rem; color: var(--white); margin-bottom: 10px; }
.blog-card p  { font-size: 0.86rem; color: rgba(255,255,255,0.62); margin-bottom: 22px; }
.blog-link {
  font-size: 0.77rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue-pale); border-bottom: 1px solid rgba(181,206,232,0.35); padding-bottom: 2px;
  transition: letter-spacing 0.3s; display: inline-block;
}
.blog-link:hover { letter-spacing: 0.15em; }

/* ── CONTACT (light bg) ── */
.contact-section { background: var(--light-bg); padding: clamp(80px, 10vw, 140px) 0; }
.contact-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 60px);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.contact-content h2 { color: var(--navy); margin-bottom: 16px; }
.contact-content > p { color: var(--text-dark-2); margin-bottom: 32px; font-size: 0.9rem; }
.contact-info { display: flex; flex-direction: column; border-top: 1px solid var(--border-lt); }
.contact-item {
  display: flex; align-items: center; gap: 14px; padding: 13px 0;
  font-size: 0.9rem; color: var(--text-dark-2); border-bottom: 1px solid var(--border-lt); transition: color 0.2s;
}
a.contact-item:hover { color: var(--blue); }
.contact-icon { font-size: 1rem; width: 22px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { position: relative; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: var(--white); border: 1.5px solid var(--border-lt);
  color: var(--navy); padding: 13px 15px; font-family: var(--font-body); font-size: 0.875rem;
  font-weight: 300; border-radius: var(--radius); transition: border-color 0.25s, box-shadow 0.25s;
  outline: none; appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(21,81,156,0.1);
}
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-dark-m); }
.form-group select { cursor: pointer; color: var(--text-dark-2); }
.form-group textarea { resize: none; }
.form-group label {
  position: absolute; left: 15px; top: 13px; font-size: 0.85rem;
  color: var(--text-dark-m); pointer-events: none; transition: 0.25s;
}
.form-group input:focus ~ label, .form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label, .form-group textarea:not(:placeholder-shown) ~ label {
  top: -10px; left: 10px; font-size: 0.68rem; background: var(--light-bg); padding: 0 5px; color: var(--blue);
}

/* ── FOOTER ── */
.footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.07); padding: clamp(60px,8vw,100px) 0 0; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; padding-bottom: 56px; }
.footer-brand img { height: 56px; margin-bottom: 14px; }
.footer-brand p   { font-size: 0.82rem; color: rgba(255,255,255,0.52); margin-bottom: 22px; max-width: 260px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.14);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); border-radius: 3px; transition: 0.25s;
}
.footer-social a svg { width: 15px; height: 15px; }
.footer-social a:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }
.footer-links h5 { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-bottom: 18px; font-weight: 600; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a  { font-size: 0.82rem; color: rgba(255,255,255,0.58); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 6px;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.3); }

/* ── WA FLOAT ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; width: 52px; height: 52px;
  background: #25D366; color: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; z-index: 900;
  box-shadow: 0 4px 18px rgba(37,211,102,0.4); transition: transform 0.3s, box-shadow 0.3s;
  animation: fadeInUp 0.6s 2.2s ease both;
}
.wa-float svg { width: 26px; height: 26px; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.55); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .projects-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-top     { grid-template-columns: 1fr 1fr; }
  .footer-brand   { grid-column: 1/-1; }
}
@media (max-width: 900px) {
  .project-featured   { grid-template-columns: 1fr; gap: 36px; }
  .about-banner-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-inner      { grid-template-columns: 1fr; }
  .testimonials-grid  { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links         { display: none; }
  .nav-hamburger     { display: flex; }
  .hero-stats        { display: none; }
  .hero-scroll-indicator { display: none; }
  .hero-actions      { flex-direction: column; align-items: flex-start; }
  .services-grid     { grid-template-columns: 1fr; gap: 1px; }
  .projects-grid     { grid-template-columns: 1fr; }
  .promo-grid        { grid-template-columns: 1fr; }
  .blog-grid         { grid-template-columns: 1fr; }
  .footer-top        { grid-template-columns: 1fr; }
  .footer-bottom     { flex-direction: column; text-align: center; }
  .project-ctas      { flex-direction: column; }
}



 }




/* ── HOMEPAGE INSPIRASI HIGHLIGHT ── */
.insp-section { background: var(--navy-2); }
.insp-sub { font-size: 0.92rem; color: rgba(255,255,255,0.55); max-width: 460px; margin: 8px auto 0; text-align: center; line-height: 1.7; }

/* 3-column compact grid */
.insp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 48px; margin-bottom: 32px; }

.insp-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-radius: 12px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s; }
.insp-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,0,0,0.35); border-color: rgba(255,255,255,0.18); }

/* Thumbnail - fixed height small */
.insp-thumb-wrap { display: block; position: relative; height: 190px; overflow: hidden; background: #000; }
.insp-thumb-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; display: block; }
.insp-card:hover .insp-thumb-wrap img { transform: scale(1.06); }

/* Play icon overlay */
.insp-play-icon { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 2.2rem; color: rgba(255,255,255,0); background: rgba(0,0,0,0); transition: color 0.3s, background 0.3s; }
.insp-card:hover .insp-play-icon { color: rgba(255,255,255,0.9); background: rgba(0,0,0,0.25); }

/* Category badge */
.insp-cat-badge { position: absolute; top: 10px; left: 10px; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; background: #e50000; color: #fff; padding: 3px 8px; border-radius: 20px; pointer-events: none; }

/* Card body */
.insp-card-body { padding: 15px 16px 18px; }
.insp-title { font-family: var(--font-serif); font-size: 0.95rem; font-weight: 400; color: var(--white); line-height: 1.45; margin-bottom: 7px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.insp-lead { font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.6; margin-bottom: 13px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.insp-read-btn { display: inline-flex; align-items: center; font-size: 0.76rem; font-weight: 600; color: var(--gold-light, #E8D5B0); border-bottom: 1px solid rgba(201,169,110,0.35); padding-bottom: 1px; transition: letter-spacing 0.3s; }
.insp-read-btn:hover { letter-spacing: 0.05em; }

/* Bottom CTA row */
.insp-cta { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.insp-see-all { font-size: 0.86rem; font-weight: 600; color: var(--white); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); padding: 10px 24px; border-radius: 8px; transition: background 0.25s; }
.insp-see-all:hover { background: rgba(255,255,255,0.14); }
.insp-yt-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.82rem; font-weight: 600; color: #ff9999; border-bottom: 1px solid rgba(255,107,107,0.35); padding-bottom: 1px; transition: letter-spacing 0.3s; }
.insp-yt-link:hover { letter-spacing: 0.06em; }

@media (max-width: 900px) { .insp-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px)  { .insp-grid { grid-template-columns: 1fr; } .insp-thumb-wrap { height: 200px; } }