/* ==========================================================================
   KUSEN ALUMINIUM - Custom Design System & Dynamic Layouts
   Palette: Deep Maroon (#3B0B0C), Warm Copper (#C07D3B), Light Cream (#FAF6E8)
   ========================================================================== */

/* --- GLOBAL OVERFLOW & BOX SIZING FIXES --- */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
  width: 100%;
}

*, *::before, *::after {
  box-sizing: border-box;
}

/* --- 1. DESIGN TOKENS & CSS VARIABLES --- */
:root {
  --color-primary-dark: #3b0b0c;
  /* Deep Burgundy Maroon */
  --color-primary-hover: #2b0607;
  --color-accent-copper: #c07d3b;
  /* Warm Bronze / Copper */
  --color-accent-gold: #e29b4e;
  /* Bright Gold Glow Accent */
  --color-accent-hover: #a86b2e;
  --color-bg-light: #faf6e8;
  /* Light Beige / Cream */
  --color-bg-light-alt: #f4eee0;
  --color-card-bg: #ffffff;
  /* Pure White */
  --color-btn-light: #fbf8ea;
  --color-btn-light-hover: #ede8d4;
  --color-text-dark: #222222;
  --color-text-muted: #555555;
  --color-text-light: #ffffff;
  --color-border-subtle: rgba(0, 0, 0, 0.08);

  /* Fonts */
  --font-family-base: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Dynamic Transitions & Glow Shadows */
  --transition-smooth: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  --box-shadow-card: 0 10px 30px rgba(59, 11, 12, 0.06);
  --box-shadow-hover: 0 18px 40px rgba(59, 11, 12, 0.14);
  --glow-gold-shadow: 0 0 25px rgba(226, 155, 78, 0.35);
}

/* --- 2. GLOBAL RESET & BOOTSTRAP BLUE OVERRIDES --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-base);
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-primary-dark);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--color-accent-copper) !important;
}

a h1, a h2, a h3, a h4, a h5, a h6 {
  color: var(--color-primary-dark);
  transition: var(--transition-smooth);
}

a:hover h1, a:hover h2, a:hover h3, a:hover h4, a:hover h5, a:hover h6 {
  color: var(--color-accent-copper) !important;
}

/* STRICT OVERRIDE FOR BOOTSTRAP DEFAULT BLUE (#0d6efd / #007bff) */
.btn-primary,
.bg-primary {
  background-color: var(--color-primary-dark) !important;
  border-color: var(--color-primary-dark) !important;
}

.text-primary {
  color: var(--color-accent-copper) !important;
}

.link-primary {
  color: var(--color-primary-dark) !important;
}

.link-primary:hover {
  color: var(--color-accent-copper) !important;
}

.divider-maroon {
  width: 65px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent-copper), var(--color-accent-gold));
  border-radius: 4px;
  margin: 12px 0 20px 0;
  box-shadow: 0 2px 8px rgba(192, 125, 59, 0.3);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent-copper);
  background: rgba(192, 125, 59, 0.08);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(192, 125, 59, 0.2);
  margin-bottom: 0.75rem;
}

/* --- 3. SCROLL REVEAL MICRO-ANIMATIONS --- */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: opacity, transform;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: opacity, transform;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Staggered Delay Utilities */
.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

.delay-6 {
  transition-delay: 0.6s;
}

/* --- 4. NAVBAR STYLING (SLEEK COMPACT HEADER) --- */
.navbar-alu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(250, 246, 232, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.45rem 0; /* Compact height */
  border-bottom: 1px solid rgba(192, 125, 59, 0.2);
  box-shadow: 0 4px 15px rgba(59, 11, 12, 0.05);
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1030;
}

.navbar-alu.navbar-scrolled {
  background-color: rgba(250, 246, 232, 0.98);
  padding: 0.35rem 0;
  box-shadow: 0 6px 20px rgba(59, 11, 12, 0.12);
  border-bottom: 1px solid rgba(192, 125, 59, 0.3);
}

.navbar-alu .navbar-brand {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  color: var(--color-primary-dark);
  transition: color 0.35s ease;
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-alu .nav-link {
  color: var(--color-text-dark);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.35rem 0.85rem !important;
  position: relative;
  transition: color 0.35s ease;
}

.navbar-alu .nav-link:hover,
.navbar-alu .nav-link.active {
  color: var(--color-primary-dark);
  font-weight: 700;
}

.navbar-alu .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 1rem;
  right: 1rem;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent-copper), var(--color-accent-gold));
  border-radius: 2px;
}

/* MAROON HAMBURGER TOGGLER ICON */
.navbar-alu .navbar-toggler {
  border: 1px solid rgba(59, 11, 12, 0.3) !important;
  border-radius: 10px;
  padding: 6px 10px;
  transition: var(--transition-smooth);
}

.navbar-alu .navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(192, 125, 59, 0.35) !important;
}

.navbar-alu .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%233b0b0c' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
  filter: none !important;
}

/* EASE-OUT MOBILE MENU DROPDOWN ANIMATION (LIKE ARSITEKMALANG.WEB.ID) */
@media (max-width: 991.98px) {
  .navbar-alu .navbar-collapse {
    background: #FAF6E8;
    border: none;
    border-radius: 18px;
    padding: 0 !important;
    margin-top: 0 !important;
    box-shadow: none;
    
    /* Smooth Ease-Out Slide & Fade Animation */
    opacity: 0;
    transform: translateY(-10px) scaleY(0.95);
    transform-origin: top center;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    display: block !important;
    visibility: hidden;
    height: 0 !important;
    overflow: hidden;
    pointer-events: none;
  }

  .navbar-alu .navbar-collapse.show {
    opacity: 1;
    transform: translateY(0) scaleY(1);
    visibility: visible;
    height: auto !important;
    padding: 1.1rem !important;
    margin-top: 0.65rem !important;
    border: 1px solid rgba(192, 125, 59, 0.25) !important;
    box-shadow: 0 15px 35px rgba(59, 11, 12, 0.15) !important;
    overflow: visible;
    pointer-events: auto;
  }

  .navbar-alu .nav-link {
    color: var(--color-primary-dark) !important;
    padding: 0.7rem 1rem !important;
    border-radius: 10px;
    font-weight: 700;
  }

  .navbar-alu .nav-link:hover,
  .navbar-alu .nav-link.active {
    background: rgba(192, 125, 59, 0.12);
    color: var(--color-primary-dark) !important;
  }
}

.navbar-alu .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 1rem;
  right: 1rem;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent-copper), var(--color-accent-gold));
  border-radius: 2px;
}

.navbar-alu .navbar-toggler-icon {
  filter: invert(1) brightness(2);
}

.navbar-alu.navbar-scrolled .navbar-toggler-icon {
  filter: none;
}

.btn-accent {
  background: linear-gradient(135deg, var(--color-accent-copper), #a86b2e);
  color: var(--color-text-light);
  font-weight: 700;
  padding: 0.7rem 1.5rem;
  border-radius: 10px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 12px rgba(192, 125, 59, 0.25);
}

.btn-accent:hover {
  background: linear-gradient(135deg, #d48b43, var(--color-accent-copper));
  color: var(--color-text-light);
  transform: translateY(-3px);
  box-shadow: var(--glow-gold-shadow);
}

.btn-maroon {
  background: linear-gradient(135deg, var(--color-primary-dark), #260506);
  color: #ffffff;
  font-weight: 700;
  padding: 0.75rem 1.6rem;
  border-radius: 10px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 14px rgba(59, 11, 12, 0.25);
}

.btn-maroon:hover {
  background: linear-gradient(135deg, #4d0e10, var(--color-primary-dark));
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(59, 11, 12, 0.35);
}

/* --- 5. HERO SECTION (SPLIT VERTICAL WAVY HERO) --- */
.hero-split-layout {
  position: relative;
  background-color: #FAF6E8 !important; /* Left side 100% blank light cream background */
  background-image: none !important;
  overflow: hidden;
  min-height: 100vh;
  padding: 0 !important;
}

/* Right Side Maroon Background Layer with Smooth SVG Mask Boundary */
.hero-split-right-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 52%;
  background-color: #3b0b0c !important;
  background-image: 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 600' preserveAspectRatio='none'%3E%3Cpath fill='%23541214' fill-opacity='0.65' d='M0,160 C320,300 480,40 800,180 C1120,320 1280,100 1440,190 L1440,0 L0,0 Z'%3E%3C/path%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 600' preserveAspectRatio='none'%3E%3Cpath fill='%23290708' fill-opacity='0.75' d='M0,320 C360,180 680,420 1040,280 C1240,200 1360,340 1440,290 L1440,600 L0,600 Z'%3E%3C/path%3E%3C/svg%3E") !important;
  background-size: cover;
  background-position: center;
  z-index: 1;

  /* Smooth SVG vertical wave clip mask on left edge */
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 1000' preserveAspectRatio='none'%3E%3Cpath fill='%23000000' d='M500,0 L140,0 C60,200 150,450 60,700 C-10,850 100,950 140,1000 L500,1000 Z'%3E%3C/path%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 1000' preserveAspectRatio='none'%3E%3Cpath fill='%23000000' d='M500,0 L140,0 C60,200 150,450 60,700 C-10,850 100,950 140,1000 L500,1000 Z'%3E%3C/path%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

/* Vertical Wavy Separator SVG on Left Edge of Right Maroon Layer */
.vertical-wave-wrap {
  position: absolute;
  top: 0;
  left: -115px;
  bottom: 0;
  width: 130px;
  z-index: 2;
  pointer-events: none;
}

.vertical-wave-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-split-container {
  position: relative;
  z-index: 10;
}

/* Typography for Light Background on Left Side */
.hero-badge-dark {
  background: rgba(59, 11, 12, 0.08) !important;
  border: 1px solid rgba(192, 125, 59, 0.35) !important;
  color: var(--color-primary-dark) !important;
  backdrop-filter: none !important;
  box-shadow: 0 4px 12px rgba(59, 11, 12, 0.06) !important;
}

.hero-title-split {
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  font-weight: 800;
  line-height: 1.22;
  color: var(--color-primary-dark);
  margin-bottom: 1.25rem;
}

.highlight-split-maroon {
  background: linear-gradient(135deg, var(--color-accent-copper), var(--color-accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
}

.hero-subtitle-dark {
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  color: #334155;
  font-weight: 500;
  line-height: 1.65;
}

.hero-location-tag-dark {
  font-size: 0.85rem;
  color: #475569;
  font-weight: 600;
}

.btn-hero-maroon {
  background-color: var(--color-primary-dark);
  color: #ffffff;
  font-weight: 700;
  padding: 0.85rem 1.7rem;
  border-radius: 10px;
  border: none;
  transition: var(--transition-smooth);
}

.btn-hero-maroon:hover {
  background-color: #5c1214;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(59, 11, 12, 0.3);
}

.hero-split-img-wrapper {
  perspective: 1000px;
  position: relative;
}

.hero-split-img {
  transition: transform 0.4s ease;
}

.hero-split-img:hover {
  transform: scale(1.04) rotateY(-4deg);
}

/* Mobile View Rules for Hero Section (< 992px) */
@media (max-width: 991.98px) {
  .hero-split-layout,
  .hero-section {
    background-color: #3b0b0c !important;
    background-image: 
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 600' preserveAspectRatio='none'%3E%3Cpath fill='%23541214' fill-opacity='0.65' d='M0,160 C320,300 480,40 800,180 C1120,320 1280,100 1440,190 L1440,0 L0,0 Z'%3E%3C/path%3E%3C/svg%3E"),
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 600' preserveAspectRatio='none'%3E%3Cpath fill='%23290708' fill-opacity='0.75' d='M0,320 C360,180 680,420 1040,280 C1240,200 1360,340 1440,290 L1440,600 L0,600 Z'%3E%3C/path%3E%3C/svg%3E") !important;
    background-size: cover !important;
    background-position: center !important;
    padding-top: 5.2rem !important; /* Perfect 33px clearance gap with slim 50px navbar */
    padding-bottom: 3.5rem !important;
    min-height: auto !important;
  }

  .hero-split-container .min-vh-100 {
    min-height: auto !important;
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .hero-split-right-bg {
    display: none !important;
  }

  .hero-title-split {
    color: #ffffff !important;
    text-align: center;
    font-size: clamp(1.65rem, 5.5vw, 2.2rem) !important;
    line-height: 1.25 !important;
  }

  .hero-subtitle-dark {
    color: rgba(255, 255, 255, 0.9) !important;
    text-align: center;
    font-size: 0.92rem !important;
  }

  .hero-location-tag-dark {
    color: rgba(255, 255, 255, 0.82) !important;
    text-align: center;
    font-size: 0.8rem !important;
  }

  .hero-split-container .d-flex {
    justify-content: center;
    flex-direction: column;
    width: 100%;
    gap: 0.75rem !important;
  }

  .hero-split-container .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .btn-hero-maroon {
    background-color: var(--color-btn-light) !important;
    color: var(--color-primary-dark) !important;
  }

  .btn-hero-maroon:hover {
    background-color: #ffffff !important;
    color: var(--color-primary-dark) !important;
  }
}

/* Sub-Pages Compact Hero Header */
.hero-section {
  background-color: #3b0b0c;
  background-image: 
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 600' preserveAspectRatio='none'%3E%3Cpath fill='%23541214' fill-opacity='0.65' d='M0,160 C320,300 480,40 800,180 C1120,320 1280,100 1440,190 L1440,0 L0,0 Z'%3E%3C/path%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 600' preserveAspectRatio='none'%3E%3Cpath fill='%23290708' fill-opacity='0.75' d='M0,320 C360,180 680,420 1040,280 C1240,200 1360,340 1440,290 L1440,600 L0,600 Z'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  color: var(--color-text-light);
  position: relative;
  overflow: hidden;
  padding-top: 8.5rem;
  padding-bottom: 5.5rem;
  min-height: auto;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(226, 155, 78, 0.4);
  color: var(--color-accent-gold);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 15px rgba(226, 155, 78, 0.15);
}

.hero-title {
  font-size: clamp(1.85rem, 4.5vw, 3.15rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 1.25rem;
}

.hero-title .highlight {
  background: linear-gradient(90deg, #ffffff, var(--color-accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.08rem);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 400;
  margin-bottom: 1.5rem;
  max-width: 560px;
}

.hero-location-tag {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
}

.btn-hero-light {
  background-color: var(--color-btn-light);
  color: var(--color-primary-dark);
  font-weight: 700;
  padding: 0.85rem 1.7rem;
  border-radius: 10px;
  border: none;
  transition: var(--transition-smooth);
}

.btn-hero-light:hover {
  background-color: #ffffff;
  color: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.btn-hero-accent {
  background: linear-gradient(135deg, var(--color-accent-copper), var(--color-accent-gold));
  color: var(--color-text-light);
  font-weight: 700;
  padding: 0.85rem 1.7rem;
  border-radius: 10px;
  border: none;
  transition: var(--transition-smooth);
  box-shadow: var(--glow-gold-shadow);
}

.btn-hero-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(226, 155, 78, 0.5);
}

/* Hero Image & Glassmorphism Floating Stats */
.hero-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
  border: 2px solid rgba(226, 155, 78, 0.3);
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-badge-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-text-dark);
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border-left: 4px solid var(--color-accent-copper);
}

.hero-stats-glass {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(59, 11, 12, 0.85);
  border: 1px solid rgba(226, 155, 78, 0.4);
  padding: 12px 18px;
  border-radius: 14px;
  backdrop-filter: blur(10px);
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* SUB-PAGES BOTTOM WAVY SEPARATOR ORNAMENT */
.hero-section .hero-wave-separator {
  display: block !important;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 5;
  pointer-events: none;
}

.hero-section .hero-wave-separator svg {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
}

/* Home Page Hero split layout has NO bottom wave separator as requested */
.hero-split-layout .hero-wave-separator {
  display: none !important;
}

/* --- 6. ABOUT SECTION --- */
.about-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(59, 11, 12, 0.1);
  border: 1px solid var(--color-border-subtle);
}

.about-badge-float {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: #ffffff;
  padding: 16px 24px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 14px;
  border: 2px solid rgba(192, 125, 59, 0.2);
}

.abyear {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-accent-copper);
  line-height: 1;
}

.ablabel {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-text-dark);
  text-transform: uppercase;
  line-height: 1.2;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: var(--color-text-dark);
}

.about-list li i {
  color: #28a745;
  font-size: 1.25rem;
  margin-top: 1px;
}

/* --- 7. DYNAMIC STAGGERED BENTO GRID (KEUNGGULAN UTAMA) --- */
.why-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.why-feature-card {
  background: #ffffff;
  padding: 2rem 1.75rem;
  border-radius: 20px;
  border: 1px solid var(--color-border-subtle);
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: var(--box-shadow-card);
}

.why-feature-card:nth-child(2),
.why-feature-card:nth-child(4) {
  transform: translateY(20px);
}

.why-feature-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 20px 40px rgba(192, 125, 59, 0.18);
  border-color: var(--color-accent-gold);
}

.why-card-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(192, 125, 59, 0.12);
}

.why-icon-box {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #faf2e6, #f7e4ce);
  color: var(--color-accent-copper);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(192, 125, 59, 0.2);
}

.why-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
}

.why-card-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}

.why-highlight-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  border: 1px solid rgba(192, 125, 59, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin: 0 6px 8px 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.why-highlight-pill i {
  color: var(--color-accent-copper);
}

/* --- 8. MATERIAL & COLOR SWATCH SHOWCASE --- */
.swatch-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--color-border-subtle);
  transition: var(--transition-smooth);
  box-shadow: var(--box-shadow-card);
}

.swatch-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent-copper);
  box-shadow: var(--box-shadow-hover);
}

.swatch-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 1rem auto;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Swatch Colors */
.swatch-black {
  background: #1a1a1a;
}

.swatch-white {
  background: #ffffff;
  border-color: #e0e0e0;
}

.swatch-brown {
  background: #4a2c11;
}

.swatch-wood {
  background: linear-gradient(135deg, #8B4513, #CD853F);
}

.swatch-silver {
  background: linear-gradient(135deg, #E0E0E0, #9E9E9E);
}

/* --- 9. PROCESS SECTION (6 STEPS HORIZONTAL) --- */
.proses-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  position: relative;
}

.proses-step {
  background: #ffffff;
  padding: 1.75rem 1rem;
  border-radius: 18px;
  border: 1px solid var(--color-border-subtle);
  text-align: center;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: var(--box-shadow-card);
}

.proses-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--box-shadow-hover);
  border-color: var(--color-accent-gold);
}

.proses-num {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-primary-dark), #4e0d0f);
  color: var(--color-accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.15rem;
  margin: 0 auto 1.2rem auto;
  box-shadow: 0 4px 10px rgba(59, 11, 12, 0.3);
  border: 2px solid rgba(226, 155, 78, 0.4);
}

.proses-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.4rem;
}

.proses-desc {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.45;
  margin: 0;
}

/* --- 10. SERVICES & PRODUCTS SECTION --- */
.service-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--color-border-subtle);
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--box-shadow-card);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--box-shadow-hover);
  border-color: rgba(192, 125, 59, 0.3);
}

.service-card-img {
  position: relative;
  height: 210px;
  overflow: hidden;
  display: block;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.service-card:hover .service-card-img img {
  transform: scale(1.06);
}

.service-icon-badge {
  position: absolute;
  bottom: -20px;
  right: 20px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--color-accent-copper), var(--color-accent-gold));
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 6px 14px rgba(192, 125, 59, 0.4);
  border: 2px solid #ffffff;
}

.service-card-body {
  padding: 1.75rem 1.5rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.service-card-title a {
  color: var(--color-text-dark);
}

.service-card-title a:hover {
  color: var(--color-accent-copper);
}

.service-card-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex: 1;
}

.service-card-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-accent-copper);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-card-link:hover {
  color: var(--color-accent-hover);
  gap: 8px;
}

/* --- 11. CATALOG & FILTER PILLS OVERRIDES --- */
.nav-pills-alu,
.nav-pills,
.portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 2.5rem;
}

.nav-pills .nav-link,
.nav-pills-alu .nav-link,
.filter-btn {
  color: var(--color-text-dark) !important;
  background-color: #ffffff !important;
  border-radius: 30px !important;
  padding: 0.6rem 1.4rem !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  border: 1px solid var(--color-border-subtle) !important;
  transition: var(--transition-smooth) !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04) !important;
  cursor: pointer !important;
}

.nav-pills .nav-link.active,
.nav-pills .nav-link:hover,
.nav-pills .nav-link:focus,
.nav-pills-alu .nav-link.active,
.nav-pills-alu .nav-link:hover,
.nav-pills-alu .nav-link:focus,
.filter-btn.active,
.filter-btn:hover,
.filter-btn:focus {
  background-color: var(--color-primary-dark) !important;
  color: #ffffff !important;
  border-color: var(--color-primary-dark) !important;
  box-shadow: 0 6px 16px rgba(59, 11, 12, 0.25) !important;
}

.product-card {
  background: var(--color-card-bg);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--color-border-subtle);
  transition: var(--transition-smooth);
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.product-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
  cursor: pointer;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.product-img-wrapper::after {
  content: '\F689';
  /* Bootstrap Icon Search / Zoom */
  font-family: 'bootstrap-icons';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  background: rgba(59, 11, 12, 0.8);
  color: var(--color-accent-gold);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  opacity: 0;
  transition: var(--transition-smooth);
  border: 2px solid var(--color-accent-gold);
}

.product-img-wrapper:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.product-card:hover .product-img-wrapper img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--color-accent-copper);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 2;
}

.product-body {
  padding: 1.5rem;
}

.product-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
}

.product-specs {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

/* --- 12. TESTIMONIALS SECTION --- */
.testimonial-card {
  background: #ffffff;
  padding: 2.25rem 2rem;
  border-radius: 20px;
  border: 1px solid var(--color-border-subtle);
  box-shadow: var(--box-shadow-card);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.testimonial-stars {
  color: #ffc107;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-size: 0.96rem;
  color: var(--color-text-dark);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--color-primary-dark), #4e0d0f);
  color: var(--color-accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  border: 2px solid rgba(226, 155, 78, 0.4);
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-text-dark);
}

.testimonial-project {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* --- 13. PORTFOLIO GALLERY SECTION --- */
.portfolio-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--box-shadow-card);
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(59, 11, 12, 0.92), transparent 70%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition-smooth);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-item:hover img {
  transform: scale(1.06);
}

.portfolio-overlay-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 3px;
}

.portfolio-overlay-cat {
  color: var(--color-accent-gold);
  font-size: 0.82rem;
  font-weight: 600;
}

/* --- 14. CTA FLOATING CARD --- */
.cta-card {
  background: linear-gradient(135deg, var(--color-primary-dark), #260506);
  color: #ffffff;
  border-radius: 28px;
  padding: 4.5rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(59, 11, 12, 0.35);
  border: 1px solid rgba(226, 155, 78, 0.3);
}

.cta-shape-1 {
  position: absolute;
  top: -50px;
  left: -50px;
  width: 220px;
  height: 220px;
  background: rgba(192, 125, 59, 0.25);
  border-radius: 50%;
  filter: blur(50px);
}

.cta-shape-2 {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 260px;
  height: 260px;
  background: rgba(226, 155, 78, 0.3);
  border-radius: 50%;
  filter: blur(60px);
}

.cta-shape-3 {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: rgba(192, 125, 59, 0.1);
  border-radius: 50%;
  filter: blur(70px);
}

.cta-content-wrap {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(1.5rem, 3.5vw, 2.35rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-desc {
  font-size: clamp(0.92rem, 1.6vw, 1.08rem);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2.25rem;
}

/* --- 15. ESTIMATOR WIDGET CARD --- */
.section-estimator {
  padding: 5rem 0;
  background-color: var(--color-bg-light);
}

.estimator-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 3.5rem 2.5rem;
  box-shadow: var(--box-shadow-card);
  border: 1px solid var(--color-border-subtle);
}

.form-label-alu {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-text-dark);
}

.form-control-alu,
.form-select-alu {
  border-radius: 10px;
  padding: 0.8rem 1rem;
  border: 1px solid #e0e0e0;
  background-color: #fafafa;
  font-size: 0.95rem;
}

.form-control-alu:focus,
.form-select-alu:focus {
  border-color: var(--color-accent-copper);
  box-shadow: 0 0 0 3px rgba(192, 125, 59, 0.15);
  background-color: #fff;
}

/* --- 16. RICH FOOTER STYLING --- */
.footer-alu {
  background-color: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 4.5rem 0 2rem 0;
  font-size: 0.9rem;
}

.footer-brand {
  font-weight: 800;
  font-size: 1.55rem;
  color: #ffffff;
  letter-spacing: 0.04em;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--color-accent-gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-heading {
  color: #ffffff;
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--color-accent-gold);
  padding-left: 4px;
}

.footer-area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.area-tag {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Floating Controls (WhatsApp & Back to Top) */
.btn-floating-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: var(--transition-smooth);
}

.btn-floating-wa:hover {
  background-color: #1eb956;
  color: #fff;
  transform: scale(1.1);
}

/* Floating Back to Top Button (Placed directly above WA Button) */
.btn-back-to-top {
  position: fixed;
  bottom: 92px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary-dark);
  color: var(--color-accent-gold);
  border: 2px solid var(--color-accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.btn-back-to-top:hover {
  background: var(--color-accent-copper);
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: var(--glow-gold-shadow);
}

/* --- 17. COMPREHENSIVE RESPONSIVE BREAKPOINTS --- */

/* Large Desktops & Wide Screens (>= 1400px) */
@media (min-width: 1400px) {
  .container {
    max-width: 1280px;
  }
}

/* Laptops & Tablets Landscape (992px - 1199px) */
@media (max-width: 1199.98px) {
  .proses-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

/* Tablets Portrait & Small Laptops (768px - 991px) */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 4.5rem 0 6.5rem 0;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image-wrapper {
    margin-top: 2rem;
  }

  .why-feature-card:nth-child(2),
  .why-feature-card:nth-child(4) {
    transform: none !important;
  }

  .why-feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .about-img-wrap {
    margin-bottom: 1.5rem;
  }

  .hero-stats-glass {
    bottom: 15px;
    right: 15px;
    padding: 8px 14px;
    font-size: 0.85rem;
  }

  .navbar-collapse {
    background: #ffffff;
    padding: 1rem;
    border-radius: 14px;
    margin-top: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
}

/* Mobile Phones Landscape & Small Tablets (576px - 767px) */
@media (max-width: 767.98px) {
  .why-feature-grid {
    grid-template-columns: 1fr;
  }

  .proses-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-card {
    padding: 3rem 1.5rem;
    border-radius: 20px;
  }

  .estimator-card {
    padding: 2rem 1.5rem;
    border-radius: 18px;
  }

  /* Floating Buttons Mobile Size Adjustment */
  .btn-floating-wa {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    bottom: 20px;
    right: 20px;
  }

  .btn-back-to-top {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
    bottom: 78px;
    right: 23px;
  }
}

/* Small Mobile Phones (Extra Small < 576px) */
@media (max-width: 575.98px) {
  .proses-steps {
    grid-template-columns: 1fr;
  }

  .hero-badge-pill {
    font-size: 0.78rem;
    padding: 5px 12px;
  }

  .btn-hero-accent,
  .btn-hero-light,
  .btn-accent,
  .btn-maroon {
    width: 100%;
    justify-content: center;
  }

  .hero-location-tag {
    font-size: 0.78rem;
  }

  .swatch-card {
    padding: 1rem 0.5rem;
  }

  .swatch-circle {
    width: 45px;
    height: 45px;
  }

  .footer-alu {
    padding: 3.5rem 0 1.5rem 0;
    text-align: center;
  }

  .footer-brand,
  .footer-tagline,
  .footer-heading {
    text-align: center;
  }

  .footer-links li a {
    display: inline-block;
  }
}

/* --- 15. NEW UNIQUE LAYOUT COMPONENTS --- */
.quick-specs-bar {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(192, 125, 59, 0.25);
  border-radius: 20px;
  padding: 1.25rem 1.75rem;
  box-shadow: 0 15px 35px rgba(59, 11, 12, 0.08);
  margin-top: 2rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 10;
  backdrop-filter: blur(12px);
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.spec-icon-circle {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-primary-dark), #5c1214);
  color: var(--color-accent-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(59, 11, 12, 0.2);
}

.spec-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 2px;
}

.spec-subtitle {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* Technical Matrix Grid (Unique Alternative to Bento Grid) */
.tech-matrix-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.tech-matrix-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--color-border-subtle);
  border-left: 5px solid var(--color-accent-copper);
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: var(--box-shadow-card);
}

.tech-matrix-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--box-shadow-hover);
  border-left-color: var(--color-primary-dark);
}

.tech-badge-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent-copper);
  background: rgba(192, 125, 59, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 1rem;
}

/* Phase Workflow Cards (4-Phase Staggered Layout) */
.phase-flow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.phase-flow-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  border: 1px solid var(--color-border-subtle);
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: var(--box-shadow-card);
}

.phase-flow-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--box-shadow-hover);
  border-color: var(--color-accent-copper);
}

.phase-header-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.phase-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-accent-copper);
  background: #faf2e6;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phase-icon {
  font-size: 1.5rem;
  color: var(--color-primary-dark);
}

.phase-flow-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
}

.phase-flow-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Workshop Metrics Box */
.workshop-metric-box {
  background: linear-gradient(135deg, #FAF6E8, #F4EEE0);
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px dashed rgba(192, 125, 59, 0.4);
}

.metric-number {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  line-height: 1;
}

.metric-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-top: 4px;
}

/* Responsiveness for new components */
@media (max-width: 991.98px) {
  .quick-specs-bar {
    margin-top: 2rem;
  }

  .phase-flow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {

  .tech-matrix-grid,
  .phase-flow-grid {
    grid-template-columns: 1fr;
  }

  /* --- 16. TESTIMONIAL AUTOMATIC CAROUSEL STYLES (HARMONIZED WITH SITE THEME) --- */
  .testimonial-section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.3rem);
    font-weight: 800;
    color: var(--color-primary-dark);
    text-align: center;
    margin-bottom: 0.35rem;
  }

  .testimonial-title-underline {
    width: 55px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent-copper), var(--color-accent-gold));
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(192, 125, 59, 0.3);
  }

  .testimonial-section-subtitle {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: 0.5rem;
  }

  .testimonial-section-subtitle .highlight-accent {
    color: var(--color-accent-copper);
    font-weight: 800;
  }

  .testimonial-card-v2 {
    background: linear-gradient(145deg, #FAF6E8 0%, #FFFFFF 100%);
    border: 1px solid rgba(192, 125, 59, 0.22);
    border-radius: 20px;
    padding: 2.2rem 1.8rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 25px rgba(59, 11, 12, 0.05);
  }

  .testimonial-card-v2:hover {
    box-shadow: 0 16px 35px rgba(59, 11, 12, 0.12);
    border-color: var(--color-accent-gold);
    transform: translateY(-5px);
  }

  .testimonial-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
  }

  .testimonial-stars-v2 {
    color: var(--color-accent-gold);
    font-size: 1.1rem;
    display: flex;
    gap: 3px;
    filter: drop-shadow(0 2px 4px rgba(226, 155, 78, 0.3));
  }

  .testimonial-quote-icon {
    font-size: 2.6rem;
    font-family: Georgia, serif;
    line-height: 1;
    color: var(--color-accent-copper);
    opacity: 0.35;
  }

  .testimonial-quote-text {
    font-size: 0.92rem;
    font-style: italic;
    color: var(--color-text-dark);
    line-height: 1.65;
    margin-bottom: 1.75rem;
    flex: 1;
  }

  .testimonial-author-row {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px dashed rgba(192, 125, 59, 0.2);
    padding-top: 1.25rem;
  }

  .testimonial-author-avatar {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    flex-shrink: 0;
    border: 2px solid var(--color-accent-copper);
    box-shadow: 0 2px 8px rgba(192, 125, 59, 0.2);
  }

  .testimonial-author-name {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--color-primary-dark);
    margin-bottom: 1px;
  }

  .testimonial-author-role {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-accent-copper);
  }

  /* Swiper Dots Pagination Override */
  .testimonial-pagination {
    position: relative !important;
    bottom: 0 !important;
    margin-top: 1.75rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .testimonial-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: rgba(192, 125, 59, 0.3);
    opacity: 1;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin: 0 4px !important;
  }

  .testimonial-pagination .swiper-pagination-bullet-active {
    width: 26px;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--color-primary-dark), var(--color-accent-copper)) !important;
    box-shadow: 0 2px 8px rgba(59, 11, 12, 0.3);
  }

/* ==========================================
   BLOG DETAIL ARTICLE STYLES
   ========================================== */
.blog-detail-container {
  max-width: 860px;
  margin: 0 auto;
}

.article-header-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.article-badge-cat {
  background: linear-gradient(135deg, var(--color-primary-dark), #5c1417);
  color: #ffffff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.article-featured-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 2rem;
}

.article-featured-img-wrap img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.article-img-caption {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}

.blog-detail-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--color-text-dark);
}

.blog-detail-content h2 {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-top: 2.25rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-detail-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-accent-copper);
  margin-top: 1.75rem;
  margin-bottom: 0.85rem;
}

.blog-detail-content p {
  margin-bottom: 1.35rem;
}

.blog-detail-content ul, .blog-detail-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.35rem;
}

.blog-detail-content li {
  margin-bottom: 0.5rem;
}

/* Inline "Baca Juga" Card Callout */
.baca-juga-card {
  background: #fdf8f4;
  border-left: 4px solid var(--color-accent-gold);
  border-radius: 0 12px 12px 0;
  padding: 1.2rem 1.5rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.baca-juga-card:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  background: #fbf2e9;
}

.baca-juga-label {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary-dark);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.baca-juga-link {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  text-decoration: none;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.baca-juga-link:hover {
  color: var(--color-accent-copper);
}

/* Inline Package Recommendation Box (Dual Action Routes) */
.paket-rekomendasi-box {
  background: linear-gradient(135deg, #ffffff, #faf5f0);
  border: 2px solid var(--color-accent-gold);
  border-radius: 16px;
  padding: 2rem;
  margin: 2.5rem 0;
  box-shadow: 0 10px 30px rgba(59, 11, 12, 0.08);
  position: relative;
  overflow: hidden;
}

.paket-rekomendasi-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--color-primary-dark), var(--color-accent-gold), var(--color-accent-copper));
}

.paket-rec-badge {
  display: inline-block;
  background: rgba(226, 155, 78, 0.15);
  color: var(--color-primary-dark);
  border: 1px solid rgba(226, 155, 78, 0.4);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.paket-rec-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
}

.paket-rec-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.paket-rec-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-package-route {
  background: linear-gradient(135deg, var(--color-primary-dark), #5c1417);
  color: #ffffff !important;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(59, 11, 12, 0.2);
  transition: all 0.3s ease;
}

.btn-package-route:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(59, 11, 12, 0.3);
  background: var(--color-primary-dark);
}

.btn-portfolio-route {
  background: transparent;
  color: var(--color-primary-dark) !important;
  border: 2px solid var(--color-primary-dark);
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-portfolio-route:hover {
  background: var(--color-primary-dark);
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* ==========================================
   MAROON ARSITEK ADAPTATION STYLES (POLISHED)
   ========================================== */
/* ==========================================
   ARTICLE PAGE STYLES (MATCHING MAROON ARSITEK)
   ========================================== */

/* Main Article Page Top Clearance */
.blog-detail-section {
  padding-top: 130px !important;
  padding-bottom: 70px;
  background-color: var(--color-bg-light);
}

/* Article Card Container Wrapper */
.article-card-wrapper {
  background: #ffffff;
  border: 1px solid rgba(192, 125, 59, 0.2);
  border-radius: 20px;
  padding: 2.75rem 2.5rem;
  box-shadow: 0 12px 35px rgba(59, 11, 12, 0.06);
  position: relative;
}

@media (max-width: 991.98px) {
  .article-card-wrapper {
    padding: 1.5rem 1.25rem;
  }
  .blog-detail-section {
    padding-top: 130px !important;
    padding-bottom: 50px;
  }
}

/* Article Category Badge */
.article-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary-dark);
  background: rgba(192, 125, 59, 0.12);
  border: 1px solid rgba(192, 125, 59, 0.3);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  box-shadow: 0 2px 8px rgba(192, 125, 59, 0.1);
}

/* Article Title H1 inside main content */
.article-main-title {
  font-size: clamp(1.85rem, 3.8vw, 2.4rem);
  font-weight: 800;
  color: var(--color-primary-dark) !important;
  line-height: 1.28;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

/* Top Meta Bar (Author + Date + Time) */
.article-top-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(192, 125, 59, 0.18);
}

.meta-author {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--color-primary-dark);
}

.meta-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-accent-gold);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Featured Image Wrap */
.featured-image-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(59, 11, 12, 0.1);
  border: 1px solid rgba(192, 125, 59, 0.2);
  margin-bottom: 2.5rem;
}

.featured-image-wrap img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.featured-caption {
  background: #f8f3eb;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-align: center;
  padding: 12px 20px;
  font-style: italic;
  border-top: 1px solid rgba(192, 125, 59, 0.15);
}

/* Summary Box (Ringkasan Inti) */
.summary-box {
  background: #fffcf7;
  border: 1px solid rgba(192, 125, 59, 0.25);
  border-left: 5px solid var(--color-primary-dark);
  border-radius: 16px;
  padding: 1.85rem;
  margin: 2.25rem 0;
  box-shadow: 0 8px 24px rgba(59, 11, 12, 0.04);
}

.summary-box h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-bottom: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.summary-box p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text-dark);
  margin-bottom: 1.15rem;
}

.summary-box ul {
  margin-bottom: 0;
  padding-left: 1.25rem;
}

.summary-box li {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--color-text-dark);
  margin-bottom: 10px;
}

/* TOC Box */
.toc-box {
  background: #ffffff;
  border: 1px solid rgba(192, 125, 59, 0.22);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  margin: 2.25rem 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.toc-toggle {
  background: none;
  border: none;
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 0;
}

.toc-toggle i {
  transition: transform 0.3s ease;
  color: var(--color-accent-copper);
}

.toc-toggle.active i {
  transform: rotate(90deg);
}

.toc-content {
  display: none;
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(192, 125, 59, 0.25);
}

.toc-content.show {
  display: block;
}

.toc-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.toc-content li {
  margin-bottom: 12px;
  font-size: 0.96rem;
}

.toc-content a {
  color: var(--color-primary-dark) !important;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.toc-content a::before {
  content: '•';
  color: var(--color-accent-copper);
  font-size: 1.25rem;
}

.toc-content a:hover {
  color: var(--color-accent-copper) !important;
}

/* Blog Body Typography */
.blog-detail-content {
  font-size: 1.08rem;
  line-height: 1.88;
  color: #222222;
}

.blog-detail-content h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-primary-dark) !important;
  margin-top: 2.75rem;
  margin-bottom: 1.25rem;
  line-height: 1.3;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(192, 125, 59, 0.25);
}

.blog-detail-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-accent-copper) !important;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.blog-detail-content p {
  margin-bottom: 1.5rem;
}

.blog-detail-content a {
  color: var(--color-accent-copper) !important;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.blog-detail-content a:hover {
  color: var(--color-primary-dark) !important;
  text-decoration: none;
}

.blog-detail-content ul, .blog-detail-content ol {
  margin-bottom: 1.75rem;
  padding-left: 1.5rem;
}

.blog-detail-content li {
  margin-bottom: 0.75rem;
}

/* Body Figures */
.body-figure {
  margin: 2.5rem 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(59, 11, 12, 0.09);
  border: 1px solid rgba(192, 125, 59, 0.2);
}

.body-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.body-figure figcaption {
  background: #f8f3eb;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-align: center;
  padding: 12px 20px;
  font-style: italic;
}

/* Inline "Baca Juga" Box */
.baca-juga-box {
  background: #fff8f0;
  border-left: 4px solid var(--color-accent-gold);
  border-radius: 0 14px 14px 0;
  padding: 1.35rem 1.75rem;
  margin: 2.5rem 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 14px;
}

.baca-juga-box:hover {
  transform: translateX(6px);
  box-shadow: 0 10px 28px rgba(59, 11, 12, 0.1);
  background: #fef3e5;
}

.baca-juga-box i {
  color: var(--color-accent-gold);
  font-size: 1.3rem;
}

.baca-juga-box .label {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-primary-dark);
  flex-shrink: 0;
}

.baca-juga-box a {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--color-primary-dark) !important;
  text-decoration: none;
  line-height: 1.45;
  transition: color 0.2s ease;
}

.baca-juga-box a:hover {
  color: var(--color-accent-copper) !important;
}

/* Inline Promo Banner */
.paket-rekomendasi-box {
  background: linear-gradient(135deg, #ffffff, #fdf8f2);
  border: 2px solid var(--color-accent-gold);
  border-radius: 20px;
  padding: 2.5rem;
  margin: 3rem 0;
  box-shadow: 0 14px 40px rgba(59, 11, 12, 0.08);
  position: relative;
  overflow: hidden;
}

.paket-rekomendasi-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--color-primary-dark), var(--color-accent-gold), var(--color-accent-copper));
}

.paket-rec-badge {
  display: inline-block;
  background: rgba(226, 155, 78, 0.18);
  color: var(--color-primary-dark);
  border: 1px solid rgba(226, 155, 78, 0.45);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.84rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.paket-rec-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.paket-rec-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.paket-rec-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 575.98px) {
  .paket-rec-actions .btn-package-route,
  .paket-rec-actions .btn-portfolio-route {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .baca-juga-box {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.15rem 1.25rem;
  }
}

.btn-package-route {
  background: linear-gradient(135deg, var(--color-primary-dark), #5c1417);
  color: #ffffff !important;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 18px rgba(59, 11, 12, 0.22);
  transition: all 0.3s ease;
}

.btn-package-route:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(59, 11, 12, 0.35);
  background: var(--color-primary-dark);
}

.btn-portfolio-route {
  background: transparent;
  color: var(--color-primary-dark) !important;
  border: 2px solid var(--color-primary-dark);
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-portfolio-route:hover {
  background: var(--color-primary-dark);
  color: #ffffff !important;
  transform: translateY(-3px);
}

/* Article Quote */
.article-quote {
  background: #fff8f0;
  border-left: 5px solid var(--color-primary-dark);
  padding: 1.65rem 1.85rem;
  margin: 2.5rem 0;
  border-radius: 0 16px 16px 0;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-primary-dark);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
}

.article-quote p {
  margin-bottom: 0.5rem;
}

/* FAQ Mini */
.article-faq {
  background: #faf5f0;
  border: 1px solid rgba(192, 125, 59, 0.22);
  border-radius: 20px;
  padding: 2.25rem;
  margin: 3rem 0;
}

.article-faq h3 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-bottom: 1.5rem;
}

.faq-mini-item {
  background: #ffffff;
  border: 1px solid rgba(192, 125, 59, 0.2);
  border-radius: 14px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}

.faq-mini-item:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.faq-mini-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-mini-question i {
  transition: transform 0.3s ease;
  color: var(--color-accent-copper);
}

.faq-mini-item.active .faq-mini-question i {
  transform: rotate(45deg);
}

.faq-mini-answer {
  display: none;
  padding: 0 1.5rem 1.25rem 1.5rem;
  font-size: 0.98rem;
  color: var(--color-text-dark);
  line-height: 1.7;
  border-top: 1px dashed rgba(192, 125, 59, 0.2);
}

.faq-mini-item.active .faq-mini-answer {
  display: block;
}

/* Share & Tags */
.share-article-box {
  margin: 3rem 0 1.75rem 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(192, 125, 59, 0.2);
}

.share-article-box h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-bottom: 1.15rem;
}

.share-buttons-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: 25px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff !important;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.share-btn.whatsapp { background: #25d366; }
.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #000000; }
.share-btn.linkedin { background: #0a66c2; }

.article-tags-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.75rem;
}

.tag-pill {
  background: #f0e8df;
  color: var(--color-primary-dark) !important;
  padding: 7px 18px;
  border-radius: 20px;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}

.tag-pill:hover {
  background: var(--color-primary-dark);
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* Sidebar Styling & Sticky Fix */
.article-sidebar-sticky {
  position: sticky;
  top: 105px !important;
}

.sidebar-author-card {
  background: #ffffff;
  border: 1px solid rgba(192, 125, 59, 0.2);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(59, 11, 12, 0.05);
}

.sidebar-author-card img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid var(--color-accent-gold);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.sidebar-author-card h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-bottom: 0.65rem;
}

.sidebar-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 1rem;
}

.sidebar-social a {
  color: var(--color-primary-dark) !important;
  font-size: 1.2rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.sidebar-social a:hover {
  color: var(--color-accent-copper) !important;
  transform: translateY(-2px);
}

.sidebar-author-card .desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 0;
}

.sidebar-related {
  background: #ffffff;
  border: 1px solid rgba(192, 125, 59, 0.2);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  box-shadow: 0 10px 30px rgba(59, 11, 12, 0.05);
}

.sidebar-related h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  margin-bottom: 1.35rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-accent-gold);
}

.sidebar-related .related-item {
  display: flex;
  gap: 14px;
  align-items: center;
  text-decoration: none;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(192, 125, 59, 0.15);
  transition: transform 0.25s ease;
}

.sidebar-related .related-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.sidebar-related .related-item:hover {
  transform: translateX(5px);
}

.sidebar-related .related-item img {
  width: 80px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.sidebar-related .related-item:hover img {
  transform: scale(1.05);
}

.sidebar-related .related-item h5 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-primary-dark) !important;
  margin-bottom: 5px;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.sidebar-related .related-item:hover h5 {
  color: var(--color-accent-copper) !important;
}

.sidebar-related .related-item span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}