/* ========================================
   PT Dua Putra Lentera Abadi — style.css
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* --- CSS Variables --- */
:root {
  --blue:        #1B3A8F;
  --blue-dark:   #102468;
  --blue-light:  #2451C4;
  --orange:      #F47B20;
  --orange-dark: #D4670F;
  --orange-light:#FF9A47;
  --dark:        #0D1B2A;
  --dark-2:      #1A2D42;
  --gray-dark:   #2E3D50;
  --gray:        #6B7A8D;
  --gray-light:  #B0BEC5;
  --bg-section:  #F5F7FA;
  --white:       #FFFFFF;
  --text:        #1A2D42;
  --text-muted:  #6B7A8D;
  --radius:      12px;
  --radius-sm:   8px;
  --shadow:      0 4px 24px rgba(27,58,143,0.10);
  --shadow-lg:   0 8px 48px rgba(27,58,143,0.18);
  --transition:  0.3s ease;
  --font:        'Inter', sans-serif;
  --nav-height:  72px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); }
input, textarea, select { font-family: var(--font); }

/* --- Utility --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-16 { gap: 16px; }

.section-label {
  display: inline-block;
  background: rgba(244,123,32,0.12);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 16px;
}
.section-label.blue {
  background: rgba(27,58,143,0.10);
  color: var(--blue);
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title span { color: var(--orange); }
.section-title.white { color: var(--white); }

.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.section-desc.white { color: rgba(255,255,255,0.75); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(244,123,32,0.35); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-blue:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(27,58,143,0.30); }
.btn-ghost {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-ghost:hover { background: var(--blue); color: var(--white); }
.btn-wa {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-wa:hover { background: #1ebe5a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 14px; }

/* =====================
   NAVBAR
   ===================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: all var(--transition);
  padding: 0;
}
.navbar.transparent { background: transparent; }
.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(27,58,143,0.12);
}
.navbar.scrolled .nav-link { color: var(--text); }
.navbar.scrolled .nav-logo-text { color: var(--blue); }
.navbar.scrolled .nav-cta { background: var(--orange); color: var(--white); }
.navbar.page-nav {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(27,58,143,0.10);
}
.navbar.page-nav .nav-link { color: var(--text); }
.navbar.page-nav .nav-logo-text { color: var(--blue); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  height: 48px;
  width: auto;
}
.nav-logo-text {
  font-weight: 800;
  font-size: 15px;
  color: var(--white);
  line-height: 1.2;
  transition: color var(--transition);
}
.nav-logo-text span { display: block; font-weight: 400; font-size: 11px; color: var(--orange); letter-spacing: 1px; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--orange); }
.nav-cta {
  padding: 10px 22px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  border: none;
  transition: all var(--transition);
  margin-left: 8px;
}
.nav-cta:hover { background: var(--orange-dark); transform: translateY(-1px); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .nav-toggle span,
.navbar.page-nav .nav-toggle span { background: var(--dark); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =====================
   HERO — HOME
   ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0D1B2A 0%, #1B3A8F 60%, #0D1B2A 100%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 50%, rgba(244,123,32,0.18) 0%, transparent 55%),
    radial-gradient(circle at 10% 80%, rgba(27,58,143,0.4) 0%, transparent 45%);
}
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  width: 100%;
}
.hero-text .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,123,32,0.15);
  border: 1px solid rgba(244,123,32,0.35);
  color: var(--orange-light);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 40px;
  margin-bottom: 24px;
}
.hero-text .badge span { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; display: inline-block; }
.hero-title {
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero-title .accent { color: var(--orange); }
.hero-title .line-2 { display: block; }
.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-num span { color: var(--orange); }
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.6); }
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hero-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 24px;
  transition: all var(--transition);
}
.hero-card:hover { background: rgba(255,255,255,0.10); transform: translateY(-4px); }
.hero-card:nth-child(1) { grid-column: 1 / -1; }
.hero-card-icon {
  width: 48px; height: 48px;
  background: rgba(244,123,32,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 12px;
}
.hero-card-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.hero-card-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.5; }
.hero-float-badge {
  position: absolute;
  top: -16px; right: -16px;
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 16px rgba(244,123,32,0.4);
  animation: float 3s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* =====================
   INNER PAGE HERO
   ===================== */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--blue) 100%);
  padding: 140px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.page-hero-inner { position: relative; z-index: 1; text-align: center; }
.page-hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* =====================
   STATS BAR
   ===================== */
.stats-bar {
  background: var(--blue);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-item { text-align: center; }
.stat-num {
  font-size: 42px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num span { color: var(--orange); }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.65); font-weight: 500; }
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.15);
  align-self: stretch;
}

/* =====================
   SERVICES SECTION
   ===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid #E8EDF5;
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px;
  background: rgba(27,58,143,0.08);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  transition: all var(--transition);
}
.service-card:hover .service-icon { background: var(--blue); }
.service-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.service-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  transition: gap var(--transition);
}
.service-link:hover { gap: 10px; color: var(--orange); }

.supply-brands {
  margin-top: 36px;
  padding: 28px 32px;
  background: var(--white);
  border: 1px solid #E8EDF5;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.supply-brands-heading {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--dark);
}
.supply-brands-intro {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 18px;
  line-height: 1.6;
  max-width: 720px;
}
.supply-brands-list {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 3;
  column-gap: 32px;
  font-size: 14px;
  color: var(--dark);
  line-height: 1.55;
}
.supply-brands-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
  break-inside: avoid;
}
.supply-brands-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}
.supply-brands-footnote {
  margin: 22px 0 0;
  padding-top: 20px;
  border-top: 1px solid #E8EDF5;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  font-style: italic;
}
@media (max-width: 992px) {
  .supply-brands-list { columns: 2; }
}
@media (max-width: 576px) {
  .supply-brands-list { columns: 1; }
  .supply-brands { padding: 22px 20px; }
}

/* =====================
   WHY US
   ===================== */
.why-us { background: var(--bg-section); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-features { display: flex; flex-direction: column; gap: 24px; }
.why-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid #E8EDF5;
  transition: all var(--transition);
}
.why-feature:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.why-feature-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--white);
}
.why-feature-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.why-feature-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.why-image-block { position: relative; }
.why-image-collage {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 6px;
  min-height: 0;
  height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
}
.why-image-collage img {
  min-width: 0;
  min-height: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-showcase {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 16px 48px rgba(0,0,0,0.22);
}
.hero-collage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 5px;
  min-height: 0;
  height: 200px;
}
@media (min-width: 768px) {
  .hero-collage { height: 240px; }
}
@media (min-width: 1024px) {
  .hero-collage { height: 260px; }
}
.hero-collage img {
  min-width: 0;
  min-height: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 1024px) {
  .why-image-collage {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(4, minmax(0, 1fr));
    height: 400px;
  }
}
@media (max-width: 576px) {
  .why-image-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(6, minmax(0, 1fr));
    height: 480px;
  }
}
.about-photo-wrap {
  width: 100%;
  height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.site-photo-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.site-photo-mosaic img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-sm);
  display: block;
}
@media (max-width: 992px) {
  .site-photo-mosaic { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 576px) {
  .site-photo-mosaic { grid-template-columns: repeat(2, 1fr); }
}
.why-badge-float {
  position: absolute;
  bottom: 24px; left: -24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}
.why-badge-float .num { font-size: 28px; font-weight: 900; color: var(--blue); }
.why-badge-float .txt { font-size: 13px; color: var(--text-muted); }
.why-image-placeholder {
  width: 100%;
  height: 480px;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 50%, var(--orange) 100%);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 64px;
}
.why-image-placeholder p { font-size: 16px; font-weight: 600; margin-top: 12px; opacity: 0.8; }

/* =====================
   PROJECTS GRID
   ===================== */
.projects-filter {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 40px;
  border: 2px solid #E8EDF5;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  cursor: pointer;
  background: var(--white);
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.project-thumb {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}
.project-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.project-card:hover .project-thumb-img { transform: scale(1.08); }
.project-thumb-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--white);
}
.project-info { padding: 20px; }
.project-cat {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--orange);
  margin-bottom: 6px;
}
.project-name { font-size: 16px; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
.project-loc { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27,58,143,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.project-card:hover .project-overlay { opacity: 1; }
.project-overlay-icon { font-size: 36px; color: var(--white); }

/* =====================
   TESTIMONIALS
   ===================== */
.testimonials { background: var(--dark); }
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track { display: flex; transition: transform 0.5s ease; }
.testimonial-slide { min-width: 100%; padding: 0 8px; }
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.testi-stars { font-size: 20px; margin-bottom: 20px; letter-spacing: 4px; }
.testi-text {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 28px;
}
.testi-author { display: flex; align-items: center; justify-content: center; gap: 16px; }
.testi-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--orange));
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 700; color: var(--white);
}
.testi-name { font-size: 15px; font-weight: 700; color: var(--white); }
.testi-pos { font-size: 13px; color: rgba(255,255,255,0.5); }
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  background: transparent;
  color: var(--white);
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.slider-btn:hover { background: var(--orange); border-color: var(--orange); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  padding: 0;
  transition: all var(--transition);
}
.slider-dot.active { background: var(--orange); width: 24px; border-radius: 4px; }

/* =====================
   FAQ
   ===================== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid #E8EDF5;
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition);
}
.faq-item.open { border-color: var(--blue); box-shadow: 0 4px 20px rgba(27,58,143,0.10); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--dark);
  gap: 16px;
  transition: color var(--transition);
}
.faq-item.open .faq-question { color: var(--blue); }
.faq-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--bg-section);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: all var(--transition);
  color: var(--blue);
}
.faq-item.open .faq-icon { background: var(--blue); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }
.faq-answer p { font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* =====================
   CTA SECTION
   ===================== */
.cta-section {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, var(--blue-light) 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(244,123,32,0.2) 0%, transparent 55%);
}
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-title { font-size: clamp(28px, 4vw, 48px); font-weight: 900; color: var(--white); margin-bottom: 16px; }
.cta-desc { font-size: 17px; color: rgba(255,255,255,0.75); margin-bottom: 36px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =====================
   CONTACT FORM
   ===================== */
.contact-section { background: var(--bg-section); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info-title { font-size: 26px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.contact-info-desc { font-size: 15px; color: var(--text-muted); line-height: 1.7; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(27,58,143,0.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.contact-item-title { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--orange); margin-bottom: 4px; }
.contact-item-val { font-size: 15px; color: var(--dark); font-weight: 500; }
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-title { font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.form-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--dark); }
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #E8EDF5;
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--dark);
  background: var(--bg-section);
  transition: all var(--transition);
  outline: none;
}
.form-input:focus { border-color: var(--blue); background: var(--white); box-shadow: 0 0 0 3px rgba(27,58,143,0.08); }
textarea.form-input { resize: vertical; min-height: 120px; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7A8D' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-submit { width: 100%; }

/* =====================
   MAP
   ===================== */
.map-section { height: 400px; }
.map-section iframe { width: 100%; height: 100%; border: 0; display: block; }

/* =====================
   FOOTER
   ===================== */
.footer {
  background: var(--dark);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .footer-logo {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.footer-brand .footer-logo img { height: 48px; }
.footer-brand .logo-text { font-weight: 800; font-size: 15px; color: var(--white); }
.footer-brand .logo-text span { display: block; font-size: 11px; color: var(--orange); font-weight: 400; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 20px; }
.footer-nib {
  display: inline-block;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.footer-nib span { color: var(--orange); font-weight: 600; }
.footer-col-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--orange); }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.footer-contact-item .icon { color: var(--orange); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item span { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.5; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: var(--orange); }

/* =====================
   WHATSAPP FLOAT
   ===================== */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.wa-float-btn {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  font-size: 28px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  animation: pulse-wa 2.5s infinite;
}
.wa-float-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.65); }
@keyframes pulse-wa {
  0% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.8), 0 0 0 10px rgba(37,211,102,0.1); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
}
.wa-tooltip {
  background: var(--dark);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--transition);
  pointer-events: none;
  white-space: nowrap;
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }

/* =====================
   ABOUT PAGE
   ===================== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-intro-img {
  position: relative;
}
.about-img-placeholder {
  width: 100%;
  height: 420px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 72px;
}
.about-img-placeholder p { font-size: 16px; font-weight: 600; margin-top: 12px; opacity: 0.7; }
.about-badges {
  position: absolute;
  bottom: -20px; right: -20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.about-badge {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}
.about-badge .icon { font-size: 20px; }
.about-badge .val { font-size: 18px; font-weight: 800; color: var(--blue); }
.about-badge .lbl { font-size: 11px; color: var(--text-muted); }
.about-text .section-label { margin-bottom: 12px; }
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.vm-card {
  background: var(--white);
  border: 1px solid #E8EDF5;
  border-radius: var(--radius);
  padding: 32px;
}
.vm-card.vision { border-top: 4px solid var(--blue); }
.vm-card.mission { border-top: 4px solid var(--orange); }
.vm-icon { font-size: 32px; margin-bottom: 16px; }
.vm-title { font-size: 18px; font-weight: 800; margin-bottom: 12px; color: var(--dark); }
.vm-list { display: flex; flex-direction: column; gap: 10px; }
.vm-list-item {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14px; color: var(--text-muted); line-height: 1.6;
}
.vm-list-item .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); flex-shrink: 0; margin-top: 6px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid #E8EDF5;
  transition: all var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blue); }
.value-icon { font-size: 36px; margin-bottom: 16px; }
.value-title { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.value-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.legality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.legality-card {
  background: var(--white);
  border: 1px solid #E8EDF5;
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all var(--transition);
}
.legality-card:hover { box-shadow: var(--shadow); border-color: var(--blue); }
.legality-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(27,58,143,0.08);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.legality-title { font-size: 14px; font-weight: 700; margin-bottom: 4px; color: var(--dark); }
.legality-val { font-size: 13px; color: var(--text-muted); }

/* =====================
   SERVICES PAGE
   ===================== */
.services-category { margin-bottom: 64px; }
.services-category:last-child { margin-bottom: 0; }
.cat-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid #E8EDF5;
}
.cat-icon-badge {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.cat-icon-badge.blue { background: rgba(27,58,143,0.10); }
.cat-icon-badge.orange { background: rgba(244,123,32,0.12); }
.cat-icon-badge.green { background: rgba(34,197,94,0.12); }
.cat-title { font-size: 22px; font-weight: 800; color: var(--dark); }
.cat-count { margin-left: auto; font-size: 13px; color: var(--text-muted); background: var(--bg-section); padding: 4px 12px; border-radius: 40px; }
.services-grid-full {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card-sm {
  background: var(--white);
  border: 1px solid #E8EDF5;
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: all var(--transition);
  text-align: center;
}
.service-card-sm:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--blue); }
.service-card-sm .icon { font-size: 32px; margin-bottom: 12px; }
.service-card-sm .title { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 6px; line-height: 1.3; }
.service-card-sm .kbli { font-size: 11px; color: var(--orange); font-weight: 600; background: rgba(244,123,32,0.08); padding: 2px 8px; border-radius: 4px; }

/* =====================
   LIGHTBOX
   ===================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 900px; width: 100%; text-align: center; }
.lightbox-close {
  position: fixed;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}
.lightbox-close:hover { background: var(--orange); }
.lightbox-content {
  background: var(--dark-2);
  border-radius: var(--radius);
  overflow: hidden;
  padding: 48px 40px;
}
.lightbox-icon { font-size: 64px; margin-bottom: 20px; }
.lightbox-title { font-size: 24px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.lightbox-cat { font-size: 14px; color: var(--orange); font-weight: 600; margin-bottom: 16px; }
.lightbox-desc { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* =====================
   BACK TO TOP
   ===================== */
.back-top {
  position: fixed;
  bottom: 100px; right: 28px;
  width: 44px; height: 44px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  border: none;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 998;
  cursor: pointer;
}
.back-top.visible { opacity: 1; transform: translateY(0); }
.back-top:hover { background: var(--orange); }

/* =====================
   LOADING / ANIMATION
   ===================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-intro { grid-template-columns: 1fr; }
  .vm-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .services-grid-full { grid-template-columns: repeat(3, 1fr); }
  .legality-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; position: fixed; top: var(--nav-height); left: 0; right: 0; background: var(--white); padding: 20px; flex-direction: column; align-items: stretch; box-shadow: 0 8px 24px rgba(0,0,0,0.12); gap: 4px; }
  .nav-menu.open { display: flex; }
  .nav-link { color: var(--text); padding: 12px 16px; border-radius: var(--radius-sm); }
  .nav-link:hover { background: var(--bg-section); color: var(--blue); }
  .nav-cta { margin-left: 0; text-align: center; }
  .nav-toggle { display: flex; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; padding: 100px 24px 60px; }
  .hero-visual { display: none; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid-full { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .legality-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(32px, 8vw, 48px); }
  .why-badge-float { display: none; }
}

/* =====================
   LUCIDE SVG ICON SIZING
   ===================== */

/* Ensure Lucide replaces <i> correctly */
[data-lucide] { display: inline-flex; align-items: center; justify-content: center; vertical-align: middle; }

/* Service card icons */
.service-icon svg { width: 28px; height: 28px; color: var(--blue); transition: color var(--transition); }
.service-card:hover .service-icon svg { color: var(--white); }

/* Hero card icons */
.hero-card-icon svg { width: 22px; height: 22px; color: var(--orange-light); }

/* Why us feature icons */
.why-feature-icon { color: var(--white); }
.why-feature-icon svg { width: 22px; height: 22px; color: var(--white); }

/* Contact icons */
.contact-icon svg { width: 20px; height: 20px; color: var(--blue); }
.contact-card-icon svg { width: 22px; height: 22px; color: var(--blue); transition: color var(--transition); }
.contact-card:hover .contact-card-icon svg { color: var(--white); }

/* Footer contact icons */
.footer-contact-item .icon { display: flex; align-items: flex-start; margin-top: 2px; }
.footer-contact-item .icon svg { width: 15px; height: 15px; color: var(--orange); flex-shrink: 0; }

/* Project placeholder large icons */
.project-thumb-placeholder svg { width: 48px; height: 48px; color: rgba(255,255,255,0.85); }
.project-overlay-icon svg { width: 36px; height: 36px; color: var(--white); }

/* Decorative image placeholders */
.why-image-placeholder svg { width: 72px; height: 72px; color: rgba(255,255,255,0.9); }
.about-img-placeholder svg { width: 72px; height: 72px; color: rgba(255,255,255,0.85); }

/* About/Services page icons */
.vm-icon svg { width: 32px; height: 32px; color: var(--blue); }
.vm-card.mission .vm-icon svg { color: var(--orange); }
.value-icon svg { width: 32px; height: 32px; }
.value-card:nth-child(1) .value-icon svg { color: var(--blue); }
.value-card:nth-child(2) .value-icon svg { color: var(--orange); }
.value-card:nth-child(3) .value-icon svg { color: var(--blue-light); }
.value-card:nth-child(4) .value-icon svg { color: var(--orange-dark); }
.legality-icon svg { width: 22px; height: 22px; color: var(--blue); }
.about-badge .icon svg { width: 18px; height: 18px; color: var(--orange); }

/* Service category badges */
.cat-icon-badge svg { width: 24px; height: 24px; }
.cat-icon-badge.blue svg { color: var(--blue); }
.cat-icon-badge.orange svg { color: var(--orange); }
.cat-icon-badge.green svg { color: #22C55E; }

/* Small service cards */
.service-card-sm .icon svg { width: 30px; height: 30px; color: var(--blue); }

/* Testimonial stars – filled gold */
.testi-stars svg { width: 18px; height: 18px; fill: #F59E0B; color: #F59E0B; margin: 0 2px; }

/* FAQ expand/collapse icon */
.faq-icon svg { width: 14px; height: 14px; color: var(--blue); }
.faq-item.open .faq-icon svg { color: var(--white); }

/* Back to top & lightbox close */
.back-top svg { width: 18px; height: 18px; }
.lightbox-close svg { width: 18px; height: 18px; }

/* Service link arrow */
.service-link svg { width: 14px; height: 14px; transition: transform var(--transition); }
.service-link:hover svg { transform: translateX(4px); }

/* Inline icon (hero badge etc.) */
.inline-icon svg { width: 14px; height: 14px; vertical-align: middle; }

/* Process step icons */
.process-icon svg { width: 28px; height: 28px; color: var(--white); }

/* CTA / general button icons already handled by btn styles */

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-pad { padding: 64px 0; }
  .projects-grid { grid-template-columns: 1fr; }
  .services-grid-full { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .vm-grid { grid-template-columns: 1fr; }
}
