/* ==========================================================================
   SOLAHART INDONESIA - REVISED STYLESHEET (SERVICE & MAINTENANCE SECTION FIX)
   ========================================================================== */

:root {
  /* Color Palette */
  --primary-navy: #0F172A;
  --navy-card: #1E293B;
  --navy-light: #334155;
  --solar-gold: #F59E0B;
  --solar-gold-hover: #D97706;
  --solar-amber: #FEF3C7;
  --solar-cyan: #0EA5E9;
  --solar-cyan-light: #E0F2FE;
  --accent-green: #10B981;
  
  --bg-dark: #0B132B;
  --bg-body: #F8FAFC;
  --bg-white: #FFFFFF;
  
  --text-main: #0F172A;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --text-white: #F8FAFC;
  
  --border-light: #E2E8F0;
  --border-glass: rgba(255, 255, 255, 0.15);
  
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 20px -4px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 30px -8px rgba(15, 23, 42, 0.12);
  --shadow-gold: 0 10px 25px -4px rgba(245, 158, 11, 0.3);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.55;
  overflow-x: hidden;
  font-size: 0.92rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography Helpers */
.text-gold { color: var(--solar-gold); }
.text-cyan { color: var(--solar-cyan); }
.text-green { color: var(--accent-green); }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  background: var(--solar-amber);
  color: var(--solar-gold-hover);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.section-badge.cyan {
  background: var(--solar-cyan-light);
  color: var(--solar-cyan);
}

.section-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--primary-navy);
  letter-spacing: -0.4px;
  margin-bottom: 10px;
  line-height: 1.25;
}

.section-title.light {
  color: var(--text-white);
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 36px auto;
  line-height: 1.5;
}

.section-subtitle.light {
  color: var(--text-light);
}

.text-center { text-align: center; }

/* Buttons with Icons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  border: none;
  transition: var(--transition-normal);
  white-space: nowrap;
}

.btn i {
  font-size: 1rem;
}

.btn-gold {
  background: linear-gradient(135deg, var(--solar-gold) 0%, #D97706 100%);
  color: #FFFFFF;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -4px rgba(245, 158, 11, 0.45);
  background: linear-gradient(135deg, #FBBF24 0%, #D97706 100%);
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 8px 20px -4px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px -4px rgba(37, 211, 102, 0.45);
}

.btn-phone {
  background: #0284C7;
  color: #FFFFFF;
  box-shadow: 0 8px 20px -4px rgba(2, 132, 199, 0.35);
}

.btn-phone:hover {
  background: #0369A1;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px -4px rgba(2, 132, 199, 0.45);
}

.btn-email {
  background: #EA4335;
  color: #FFFFFF;
  box-shadow: 0 8px 20px -4px rgba(234, 67, 53, 0.35);
}

.btn-email:hover {
  background: #C5221F;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px -4px rgba(234, 67, 53, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--primary-navy);
  border: 1.5px solid var(--border-light);
}

.btn-outline:hover {
  border-color: var(--solar-gold);
  color: var(--solar-gold-hover);
  background: rgba(245, 158, 11, 0.05);
}

.btn-outline-white {
  background: transparent;
  color: var(--text-white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--text-white);
}

.btn-sm {
  padding: 7px 16px;
  font-size: 0.82rem;
}

/* Announcement Top Bar */
.top-bar {
  background: var(--primary-navy);
  color: var(--text-light);
  font-size: 0.8rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-info span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.top-info i { color: var(--solar-gold); }

/* Header & Nav */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-normal);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--solar-gold), #D97706);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.35);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--primary-navy);
  letter-spacing: -0.4px;
  line-height: 1;
}

.brand-tagline {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--solar-gold);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--primary-navy);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--solar-gold);
  transition: var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--primary-navy);
  cursor: pointer;
}

/* HERO SECTION - 80VH */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-image: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.85)), url('assets/images/a.jpeg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: var(--text-white);
  padding: 40px 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
  width: 100%;
  max-width: 750px;
}

.hero-content h1 {
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 26px;
  line-height: 1.55;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--border-glass);
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-badge-item i {
  font-size: 1.2rem;
  color: var(--solar-gold);
}

.hero-badge-text h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-white);
}

.hero-badge-text p {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.hero-media {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border: 1px solid var(--border-glass);
}

.hero-image-wrapper img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hero-image-wrapper:hover img {
  transform: scale(1.02);
}

.floating-stat-card {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
}

.stat-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.2);
  color: var(--solar-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.stat-info h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
  margin-bottom: 2px;
}

.stat-info p {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* CLIENT LOGOS SLIDER SECTION */
.clients-section {
  background: #FFFFFF;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.clients-title {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 18px;
}

.clients-slider {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
  user-select: none;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.clients-track {
  display: flex;
  gap: 50px;
  align-items: center;
  animation: scrollClients 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.clients-slider:hover .clients-track {
  animation-play-state: paused;
}

@keyframes scrollClients {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.client-logo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #64748B;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
}

.client-logo-item i {
  font-size: 1.4rem;
  color: #64748B;
  transition: all 0.35s ease;
}

.client-logo-item:hover {
  filter: grayscale(0%);
  opacity: 1;
  color: var(--primary-navy);
  transform: translateY(-3px) scale(1.06);
}

.client-logo-item:hover i.brand-podomoro { color: #D97706; }
.client-logo-item:hover i.brand-ciputra { color: #0284C7; }
.client-logo-item:hover i.brand-sinarmas { color: #DC2626; }
.client-logo-item:hover i.brand-summarecon { color: #16A34A; }
.client-logo-item:hover i.brand-pakuwon { color: #9333EA; }
.client-logo-item:hover i.brand-siloam { color: #0EA5E9; }
.client-logo-item:hover i.brand-marriott { color: #B91C1C; }
.client-logo-item:hover i.brand-trans { color: #F59E0B; }

/* STATS STRIP */
.stats-strip {
  background: var(--primary-navy);
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-box h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--solar-gold);
  margin-bottom: 2px;
  line-height: 1.1;
}

.stat-box p {
  color: var(--text-light);
  font-size: 0.8rem;
  font-weight: 600;
}

/* CALCULATOR SECTION */
.calculator-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #F8FAFC 0%, #EFF6FF 100%);
}

.calc-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  padding: 36px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
}

.calc-inputs h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 22px;
}

.form-label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--primary-navy);
  margin-bottom: 10px;
}

.option-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.btn-option {
  padding: 10px 6px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  background: #FFF;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--primary-navy);
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: center;
}

.btn-option:hover, .btn-option.active {
  border-color: var(--solar-gold);
  background: var(--solar-amber);
  color: var(--solar-gold-hover);
}

.calc-results {
  background: var(--primary-navy);
  color: var(--text-white);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.res-header {
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 16px;
  margin-bottom: 18px;
}

.res-header h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  color: var(--solar-gold);
  letter-spacing: 0.8px;
}

.res-header h2 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-white);
  margin-top: 2px;
}

.res-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.res-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
}

.res-row label {
  color: var(--text-light);
}

.res-row val {
  font-weight: 700;
  color: var(--text-white);
}

/* PRODUCT CATALOG */
.products-section {
  padding: 70px 0;
  background: var(--bg-white);
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: var(--bg-body);
  border: 1px solid var(--border-light);
  font-weight: 700;
  font-size: 0.84rem;
  color: var(--primary-navy);
  cursor: pointer;
  transition: var(--transition-fast);
}

.tab-btn.active, .tab-btn:hover {
  background: var(--primary-navy);
  color: var(--solar-gold);
  border-color: var(--primary-navy);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(245, 158, 11, 0.4);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--solar-gold);
  color: #FFF;
  font-weight: 800;
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  z-index: 10;
  text-transform: uppercase;
}

.product-thumb {
  position: relative;
  height: 180px;
  background: #F1F5F9;
  overflow: hidden;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-thumb img {
  transform: scale(1.06);
}

.product-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.product-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.spec-list {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--navy-light);
}

.spec-item i {
  color: var(--solar-gold);
  width: 14px;
}

.product-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.price-box {
  display: flex;
  flex-direction: column;
}

.price-label {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.price-val {
  font-weight: 800;
  font-size: 1rem;
  color: var(--solar-gold-hover);
}

/* ADVANTAGES & FEATURES */
.features-section {
  padding: 70px 0;
  background: var(--bg-dark);
  color: var(--text-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--navy-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  transition: var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--solar-gold);
  box-shadow: 0 12px 24px rgba(0,0,0,0.3);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(245, 158, 11, 0.15);
  color: var(--solar-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-white);
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* COMPARISON TABLE */
.comparison-section {
  padding: 70px 0;
  background: var(--bg-body);
}

.table-wrapper {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow-x: auto;
  border: 1px solid var(--border-light);
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.85rem;
}

.comp-table th {
  background: var(--primary-navy);
  color: var(--text-white);
  padding: 14px 18px;
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
}

.comp-table th.highlight {
  background: linear-gradient(135deg, var(--solar-gold), #D97706);
  color: #FFF;
}

.comp-table td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-main);
  line-height: 1.45;
}

.comp-table tr:hover td {
  background: #F8FAFC;
}

.comp-table td i.check { color: var(--accent-green); font-size: 1rem; margin-right: 6px; }
.comp-table td i.cross { color: #EF4444; font-size: 1rem; margin-right: 6px; }

/* REVISED & REDESIGNED SERVICE & MAINTENANCE SECTION */
.service-section {
  padding: 80px 0;
  background: var(--bg-white);
}

.service-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px auto;
}

.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--solar-gold), var(--solar-cyan));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245, 158, 11, 0.35);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: var(--solar-amber);
  color: var(--solar-gold-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 22px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.service-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.service-card-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px dashed var(--border-light);
  margin-bottom: 20px;
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-light);
}

.service-feature-item i {
  color: var(--accent-green);
  font-size: 0.9rem;
}

/* AREA LAYANAN SECTION */
.area-layanan-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  color: var(--text-white);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.area-card {
  background: rgba(30, 41, 59, 0.7);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  text-align: center;
  transition: var(--transition-normal);
}

.area-card:hover {
  transform: translateY(-5px);
  border-color: var(--solar-gold);
  background: rgba(30, 41, 59, 0.95);
  box-shadow: 0 12px 25px rgba(245, 158, 11, 0.2);
}

.area-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.2);
  color: var(--solar-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 12px auto;
}

.area-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #FFF;
  margin-bottom: 6px;
}

.area-card p {
  font-size: 0.76rem;
  color: var(--text-light);
  line-height: 1.4;
}

.contact-cta-box {
  background: rgba(30, 41, 59, 0.85);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.cta-button-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* TESTIMONIALS SLIDER */
.testimonials-section {
  padding: 70px 0;
  background: #F1F5F9;
  position: relative;
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
  padding: 10px 0 20px 0;
}

.testi-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease-in-out;
}

.testi-slide {
  min-width: calc(33.333% - 14px);
  box-sizing: border-box;
}

.testi-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.stars {
  color: #F59E0B;
  margin-bottom: 12px;
  font-size: 0.85rem;
}

.testi-text {
  font-size: 0.85rem;
  color: var(--navy-light);
  font-style: italic;
  margin-bottom: 18px;
  line-height: 1.5;
}

.testi-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-navy);
  color: var(--solar-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
}

.user-info h5 {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--primary-navy);
}

.user-info p {
  font-size: 0.73rem;
  color: var(--text-muted);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-navy);
  color: #FFF;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.slider-btn:hover {
  background: var(--solar-gold);
  color: var(--primary-navy);
}

.dots-container {
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #CBD5E1;
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  background: var(--solar-gold);
  width: 24px;
  border-radius: 10px;
}

/* FAQ SECTION */
.faq-section {
  padding: 70px 0;
  background: var(--bg-white);
}

.faq-accordion {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-white);
  transition: var(--transition-fast);
}

.faq-header {
  padding: 16px 20px;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--primary-navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.faq-header i {
  color: var(--solar-gold);
  transition: transform 0.3s ease;
}

.faq-body {
  padding: 0 20px 16px 20px;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
  display: none;
}

.faq-item.active {
  border-color: var(--solar-gold);
  box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-header i {
  transform: rotate(180deg);
}

.faq-item.active .faq-body {
  display: block;
}

/* MAPS SECTION */
.map-section {
  width: 100%;
  position: relative;
  background: var(--primary-navy);
}

.map-header-banner {
  background: var(--primary-navy);
  color: #FFF;
  padding: 24px 0;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.map-header-banner h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.map-header-banner p {
  font-size: 0.85rem;
  color: var(--solar-gold);
}

.map-iframe-container {
  width: 100%;
  height: 380px;
  border: none;
  filter: grayscale(0.2) contrast(1.1);
}

.map-iframe-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* CONTACT CTA BANNER */
.contact-cta {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--solar-gold) 0%, #D97706 100%);
  color: #FFF;
  text-align: center;
}

.contact-cta h2 {
  font-size: 1.85rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.contact-cta p {
  font-size: 0.95rem;
  max-width: 600px;
  margin: 0 auto 24px auto;
  opacity: 0.95;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* FOOTER */
.footer {
  background: var(--primary-navy);
  color: var(--text-light);
  padding: 60px 0 24px 0;
  font-size: 0.85rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--text-white);
  font-size: 0.98rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.footer-col p {
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--solar-gold);
  padding-left: 4px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-list i {
  color: var(--solar-gold);
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* FLOATING WHATSAPP BUTTON */
.floating-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  background: #25D366;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: transform 0.3s ease;
}

.floating-wa:hover {
  transform: scale(1.08);
}

.wa-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  background: #EF4444;
  border: 2px solid #FFF;
  border-radius: 50%;
}

/* MODAL */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  padding: 30px;
  position: relative;
  box-shadow: var(--shadow-lg);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #F1F5F9;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-navy);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero {
    min-height: auto;
    padding: 60px 0;
  }
  .hero-grid, .calc-card, .service-cards-grid {
    grid-template-columns: 1fr;
  }
  .area-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .cta-button-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-slide {
    min-width: calc(50% - 10px);
  }
  .products-grid, .features-grid, .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .service-cards-grid {
    grid-template-columns: 1fr;
  }
  .area-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-button-grid {
    grid-template-columns: 1fr;
  }
  .testi-slide {
    min-width: 100%;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid, .features-grid, .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-box h2 {
    font-size: 1.35rem;
  }
  .stat-box p {
    font-size: 0.72rem;
  }
  .hero-badges {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-badge-item:last-child {
    grid-column: span 2;
    justify-self: center;
  }
  .footer-col:first-child,
  .footer-col:last-child {
    grid-column: span 2;
  }
  .hero-content h1 {
    font-size: 1.95rem;
  }
  .section-title {
    font-size: 1.55rem;
  }
  .top-info {
    display: none;
  }
}

/* FOOTER BULLET ICON MARGIN FIX */
.footer-links a i {
  margin-right: 10px;
  transition: var(--transition-fast);
}

.footer-links a:hover i {
  margin-right: 14px;
}

/* NEW GALLERY SECTION */
.gallery-section {
  padding: 80px 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border-light);
  background: #FFF;
  cursor: pointer;
  transition: var(--transition-normal);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 12px;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0) 100%);
  color: #FFF;
  font-size: 0.78rem;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--solar-gold);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* RESPONSIVE LAYOUT FOR GALLERY */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
