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

/* ==========================================================================
   1. DESIGN SYSTEM & CSS VARIABLES
   ========================================================================== */
:root {
  /* Colors */
  --color-primary: #0f172a;       /* Deep slate navy */
  --color-primary-light: #1e293b; /* Medium slate */
  --color-secondary: #1e40af;     /* Rich Blue */
  --color-accent-blue: #3b82f6;   /* Electric Blue */
  --color-accent-cyan: #06b6d4;   /* Cyber Cyan */
  --color-accent-green: #10b981;  /* Emerald WA Green */
  --color-accent-green-dark: #059669;
  --color-accent-gold: #f59e0b;   /* Gold review stars */
  
  /* Neutrals */
  --bg-primary: #f8fafc;
  --bg-secondary: #ffffff;
  --text-dark: #0f172a;
  --text-medium: #475569;
  --text-light: #94a3b8;
  --border-light: rgba(148, 163, 184, 0.15);
  
  /* Fonts */
  --font-main: 'Outfit', system-ui, -apple-system, sans-serif;
  
  /* Borders & Shadows */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
  --shadow-glow: 0 0 25px rgba(6, 182, 212, 0.15);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   2. RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-primary);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--text-light);
  border-radius: var(--radius-full);
  border: 2.5px solid var(--bg-primary);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-medium);
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ==========================================================================
   3. REUSABLE UTILITIES & GLASSMORPHISM
   ========================================================================== */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.glass-card:hover {
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: rgba(6, 182, 212, 0.3);
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-accent-blue), var(--color-accent-cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-green-gradient {
  background: linear-gradient(135deg, var(--color-accent-green), #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-padding {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media (max-width: 768px) {
  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 15px;
  line-height: 1.2;
}

.section-header p {
  color: var(--text-medium);
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }
}

/* General Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  gap: 10px;
  transition: var(--transition-normal);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent-blue), var(--color-accent-cyan));
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.8);
  color: var(--color-primary);
  border: 1.5px solid var(--color-accent-blue);
}

.btn-secondary:hover {
  background: var(--color-accent-blue);
  color: white;
  transform: translateY(-3px);
}

.btn-wa {
  background: linear-gradient(135deg, var(--color-accent-green), var(--color-accent-green-dark));
  color: white;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}

/* ==========================================================================
   4. DYNAMIC HEADER STYLING
   ========================================================================== */
#header-container {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand-logo {
  height: 52px;
  width: auto;
}

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

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-medium);
  padding: 8px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--color-accent-blue), var(--color-accent-cyan));
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--color-accent-blue);
}

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

.btn-nav-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.btn-nav-call:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--color-accent-blue), var(--color-accent-cyan));
}

.icon-tel {
  width: 16px;
  height: 16px;
}

/* Mobile Toggle Hamburger */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  z-index: 105;
}

.hamburger-bar {
  width: 100%;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: var(--radius-full);
  transition: var(--transition-normal);
}

/* Hamburger animations when open */
.mobile-menu-toggle.active .hamburger-bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background-color: var(--color-accent-blue);
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background-color: var(--color-accent-blue);
}

/* Responsive Header */
@media (max-width: 992px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 40px;
    gap: 40px;
    transition: var(--transition-slow);
    z-index: 100;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 20px;
  }
  
  .nav-link {
    font-size: 1.1rem;
    width: 100%;
  }
  
  .nav-cta-wrapper {
    width: 100%;
  }
  
  .btn-nav-call {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   5. HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
  padding-top: 40px;
  padding-bottom: 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
}

.hero-content {
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-accent-blue);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.icon-badge {
  width: 16px;
  height: 16px;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.15;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.hero-content p.hero-desc {
  font-size: 1.2rem;
  color: var(--text-medium);
  margin-bottom: 35px;
  max-width: 550px;
}

.hero-ctas {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  animation: floatAC 6s ease-in-out infinite;
}

@keyframes floatAC {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }
  
  .hero-content h1 {
    font-size: 2.8rem;
  }
  
  .hero-content p.hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-illustration {
    max-width: 450px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
}

/* ==========================================================================
   6. QUICK ADVANTAGES BADGES SECTION
   ========================================================================== */
.quick-badges-section {
  margin-top: -30px;
  position: relative;
  z-index: 10;
}

.quick-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.badge-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 24px;
}

.badge-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(59, 130, 246, 0.15));
  color: var(--color-accent-blue);
  flex-shrink: 0;
}

.badge-icon-box svg {
  width: 24px;
  height: 24px;
}

.badge-info h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 2px;
}

.badge-info p {
  font-size: 0.85rem;
  color: var(--text-medium);
  line-height: 1.3;
}

@media (max-width: 992px) {
  .quick-badges-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .quick-badges-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   7. SERVICES GRID (LAYANAN)
   ========================================================================== */
.services-section {
  background-color: var(--bg-primary);
}

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

.service-card {
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-icon-box {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-accent-blue), var(--color-accent-cyan));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.2);
}

.service-icon-box svg {
  width: 32px;
  height: 32px;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-medium);
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-accent-blue);
  margin-top: auto;
}

.service-link svg {
  width: 16px;
  height: 16px;
  transition: var(--transition-fast);
}

.service-card:hover .service-link svg {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   8. DETAILED ADVANTAGES (KEUNGGULAN KAMI)
   ========================================================================== */
.advantages-section {
  background: #ffffff;
}

.advantages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.advantages-img-box {
  position: relative;
}

.advantages-img-placeholder {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  background: radial-gradient(circle at center, #1e3a8a, #0f172a);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.img-glow {
  position: absolute;
  width: 70%;
  height: 70%;
  background: var(--color-accent-cyan);
  opacity: 0.15;
  filter: blur(50px);
}

.advantages-illustration {
  z-index: 2;
  width: 65%;
  animation: heartbeat 3s infinite alternate;
}

@keyframes heartbeat {
  0% { transform: scale(1); }
  100% { transform: scale(1.05); }
}

.advantages-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.advantage-item {
  display: flex;
  gap: 20px;
}

.advantage-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.advantage-icon-box svg {
  width: 24px;
  height: 24px;
}

.advantage-text h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 6px;
}

.advantage-text p {
  color: var(--text-medium);
  font-size: 0.95rem;
}

@media (max-width: 992px) {
  .advantages-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ==========================================================================
   9. TRANSPARENT PRICING SECTION (ESTIMASI HARGA)
   ========================================================================== */
.pricing-section {
  background-color: var(--bg-primary);
}

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

.pricing-card {
  padding: 35px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
  background: #ffffff;
  border: 1px solid var(--border-light);
}

.pricing-card.popular {
  border: 2px solid var(--color-accent-blue);
  transform: scale(1.03);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-accent-blue), var(--color-accent-cyan));
  color: white;
  padding: 4px 16px;
  font-size: 0.8rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.price-box {
  margin-bottom: 25px;
}

.currency {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.amount {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-dark);
}

.period {
  font-size: 0.9rem;
  color: var(--text-light);
  display: block;
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  flex-grow: 1;
  text-align: left;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-medium);
}

.feature-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent-blue);
  flex-shrink: 0;
}

.feature-item.disabled {
  color: var(--text-light);
  text-decoration: line-through;
}

.feature-item.disabled svg {
  color: var(--text-light);
}

.btn-price {
  width: 100%;
  padding: 12px 20px;
  font-size: 0.95rem;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-card.popular {
    transform: none;
  }
}

@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   10. TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
  background: #ffffff;
}

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

.testimonial-card {
  padding: 30px;
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.star-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
  color: var(--color-accent-gold);
}

.star-rating svg {
  width: 18px;
  height: 18px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-medium);
  font-style: italic;
  margin-bottom: 24px;
}

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

.user-avatar-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  color: white;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-details h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-primary);
}

.user-details span {
  font-size: 0.8rem;
  color: var(--text-light);
}

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   11. FAQ ACCORDION SECTION (TANYA JAWAB NATIVE ACCORDION)
   ========================================================================== */
.faq-section {
  background-color: var(--bg-primary);
}

.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Native details elements styled beautifully */
.faq-details {
  border: 1px solid var(--border-light);
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-details[open] {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: var(--shadow-glow);
}

.faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-primary);
  cursor: pointer;
  list-style: none; /* Hide default triangle */
}

/* Firefox specific default marker hide */
.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary-icon {
  width: 20px;
  height: 20px;
  color: var(--color-accent-blue);
  transition: var(--transition-normal);
  flex-shrink: 0;
}

.faq-details[open] .faq-summary-icon {
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 24px 20px;
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.6;
  border-top: 1px solid rgba(148, 163, 184, 0.08);
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   12. CTA SECTION (CONTACT BANNER)
   ========================================================================== */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 150%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.cta-text h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 15px;
  line-height: 1.2;
}

.cta-text p {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 0;
  max-width: 650px;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-self: end;
  width: 100%;
  max-width: 320px;
}

.btn-cta {
  width: 100%;
}

@media (max-width: 992px) {
  .cta-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .cta-buttons {
    justify-self: center;
  }
}

@media (max-width: 576px) {
  .cta-text h2 {
    font-size: 2rem;
  }
}

/* ==========================================================================
   13. DYNAMIC FOOTER STYLING
   ========================================================================== */
.footer-outer {
  background-color: var(--color-primary);
  color: #ffffff;
  padding-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.2fr 0.8fr;
  gap: 40px;
  padding-bottom: 50px;
}

.brand-logo-light {
  height: 52px;
  filter: brightness(0) invert(1); /* Forces SVG to white */
  margin-bottom: 20px;
}

.footer-desc {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-light);
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--color-accent-blue);
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: #ffffff;
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-accent-cyan);
}

.footer-link-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link-list a {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-link-list a:hover {
  color: var(--color-accent-cyan);
  padding-left: 5px;
}

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

.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-icon {
  width: 18px;
  height: 18px;
  color: var(--color-accent-cyan);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-text {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.4;
}

.contact-text strong {
  color: #ffffff;
}

.footer-tel-link, .footer-mail-link {
  color: var(--color-accent-cyan);
  font-weight: 600;
}

.footer-tel-link:hover, .footer-mail-link:hover {
  text-decoration: underline;
}

.text-small {
  margin-bottom: 12px;
}

.coverage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 0.75rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  color: var(--text-light);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 25px 0;
  font-size: 0.85rem;
  color: var(--text-light);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a:hover {
  color: var(--color-accent-cyan);
}

@media (max-width: 992px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   14. FLOATING DUAL CONTACT BUTTONS (ALWAYS VISIBLE & PULSING)
   ========================================================================== */

/* WhatsApp Floating Button (Bottom Right) */
.floating-wa-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 56px;
  height: 56px;
  background: var(--color-accent-green);
  color: white;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
  z-index: 99;
  overflow: hidden;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-radius 0.4s, box-shadow 0.3s;
}

/* Pulsing effect */
.floating-wa-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--color-accent-green);
  opacity: 0.4;
  z-index: -1;
  animation: pulseGreen 2s infinite;
}

.floating-wa-btn:hover {
  width: 185px;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.6);
}

.floating-wa-btn svg {
  width: 24px;
  height: 24px;
  margin: 16px;
  flex-shrink: 0;
}

.floating-wa-btn .floating-label {
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s ease;
  margin-left: -4px;
  color: white;
}

.floating-wa-btn:hover .floating-label {
  opacity: 1;
  transition-delay: 0.1s;
}

/* Telepon Floating Button (Bottom Left) */
.floating-tel-btn {
  position: fixed;
  bottom: 25px;
  left: 25px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 56px;
  height: 56px;
  background: var(--color-primary-light);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.3);
  z-index: 99;
  overflow: hidden;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-radius 0.4s, box-shadow 0.3s;
}

.floating-tel-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--color-accent-blue);
  opacity: 0.3;
  z-index: -1;
  animation: pulseBlue 2s infinite;
}

.floating-tel-btn:hover {
  width: 220px;
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.5);
}

.floating-tel-btn svg {
  width: 24px;
  height: 24px;
  margin: 16px;
  flex-shrink: 0;
}

.floating-tel-btn .floating-label {
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s ease;
  margin-left: -4px;
  color: white;
}

.floating-tel-btn:hover .floating-label {
  opacity: 1;
  transition-delay: 0.1s;
}

@keyframes pulseGreen {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.6); opacity: 0; }
}

@keyframes pulseBlue {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Responsive adjustments for Touch Screens */
@media (max-width: 768px) {
  .floating-wa-btn:hover, .floating-tel-btn:hover {
    width: 56px; /* Do not expand on touch screens to save screen area */
  }
  .floating-wa-btn .floating-label, .floating-tel-btn .floating-label {
    display: none;
  }
  .floating-wa-btn {
    bottom: 20px;
    right: 20px;
  }
  .floating-tel-btn {
    bottom: 20px;
    left: 20px;
  }
}


/* Sentinel element for Scroll state */
.scroll-sentinel {
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ==========================================================================
   15. GALLERY PROJECT SECTION
   ========================================================================== */
.gallery-section {
  background-color: var(--bg-secondary);
}

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

.gallery-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.gallery-img-box {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-primary);
}

.gallery-img-box svg, .gallery-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-card:hover .gallery-img-box svg {
  transform: scale(1.08);
}

.gallery-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--color-accent-blue);
  color: white;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  z-index: 5;
  box-shadow: var(--shadow-sm);
}

.gallery-info {
  padding: 24px;
}

.gallery-info h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.gallery-info p {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.5;
}

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

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   16. SEARCHABLE DETAILED PRICING TABLE
   ========================================================================== */
.detailed-pricing-wrapper {
  margin-top: 60px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.9);
}

.search-box-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.search-box-wrapper input {
  width: 100%;
  padding: 12px 20px 12px 48px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-light);
  background: #ffffff;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.search-box-wrapper input:focus {
  outline: none;
  border-color: var(--color-accent-blue);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--text-light);
  pointer-events: none;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
}

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

.pricing-table th, .pricing-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-light);
}

.pricing-table th {
  background: rgba(15, 23, 42, 0.05);
  color: var(--color-primary);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-table tbody tr {
  transition: var(--transition-fast);
}

.pricing-table tbody tr:nth-child(even) {
  background: rgba(148, 163, 184, 0.03);
}

.pricing-table tbody tr:hover {
  background: rgba(6, 182, 212, 0.05);
}

.service-name-col {
  font-weight: 600;
  color: var(--color-primary);
}

.price-col {
  font-weight: 800;
  color: var(--color-accent-blue);
}

.btn-mini-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: var(--radius-full);
}

/* Pricing Disclaimers Box */
.pricing-disclaimers {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: rgba(245, 158, 11, 0.06);
  border-left: 4px solid var(--color-accent-gold);
  padding: 24px;
  border-radius: var(--radius-md);
}

.disclaimer-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.disclaimer-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.disclaimer-item p {
  font-size: 0.88rem;
  color: var(--text-medium);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .detailed-pricing-wrapper {
    padding: 24px;
  }
  .pricing-table th, .pricing-table td {
    padding: 12px 16px;
  }
}

