/* ==============================================
   ABOUT US PAGE STYLES - PT Green Solution Lestari
   Style: Organic, Calming, Professional 
   ============================================== */

/* -- Base / Typography -- */
:root {
    --gsl-primary: #8BBF36;
    --gsl-dark: #3a5a1a;
    --gsl-darker: #2d4514;
    --gsl-light: #f4f7f2;
    --gsl-text: #4b5563;
    --gsl-heading: #1f2937;
}

body {
    -webkit-font-smoothing: antialiased;
}

.about-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gsl-primary);
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.about-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background-color: var(--gsl-primary);
}

.about-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--gsl-heading);
    line-height: 1.2;
    margin-bottom: 2rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -0.02em;
}

/* -- Section 1: Profil & Komitmen (Asymmetric & Overlapping) -- */
.about-company-section {
    padding: 8rem 0;
    min-height: 80vh;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Subtle leaf pattern or dots in background */
.about-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#8BBF36 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.05;
    z-index: 0;
}

.about-asymmetric-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

/* Left: Text Content */
.about-text-content {
    position: relative;
    z-index: 2;
    padding-right: 2rem;
}

.about-lead-text {
    font-size: 1.15rem;
    color: var(--gsl-text);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-lead-text strong {
    color: var(--gsl-dark);
    font-weight: 700;
}

/* Styled Bullet Lists for Komitmen & Tujuan */
.about-bullet-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: #fdfdfd;
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(139, 191, 54, 0.1);
    transition: all 0.3s ease;
}

.bullet-item:hover {
    box-shadow: 0 10px 30px rgba(58, 90, 26, 0.05);
    border-color: rgba(139, 191, 54, 0.3);
    transform: translateX(5px);
}

.bullet-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0fdf4;
    color: var(--gsl-primary);
    font-size: 1.5rem;
    border-radius: 12px;
}

.bullet-content h5 {
    font-size: 1.15rem;
    color: var(--gsl-heading);
    font-weight: 800;
    margin-bottom: 0.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.bullet-content p {
    font-size: 0.95rem;
    color: var(--gsl-text);
    line-height: 1.6;
    margin: 0;
}

/* Right: Visual Content (Image & Floating Cards) */
.about-visual-content {
    position: relative;
    z-index: 2;
    height: 100%;
    min-height: 600px;
}

.about-main-image {
    position: absolute;
    top: 5%;
    right: 5%;
    width: 80%;
    height: 90%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(58, 90, 26, 0.15);
}

.about-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.about-main-image:hover img {
    transform: scale(1.05);
}

/* Soft gradient overlay to make image look premium */
.image-gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(13, 42, 31, 0.5) 0%, transparent 100%);
    z-index: 1;
}

/* Overlapping Floating Cards (Pill/Tag Style) */
.about-floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* Allow clicking through empty space */
    z-index: 3;
}

.float-card {
    position: absolute;
    pointer-events: auto;
    /* Re-enable hover for cards */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.8rem 1.75rem;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
}

.float-card:hover {
    transform: translateY(-5px) scale(1.05);
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(58, 90, 26, 0.12);
    border-color: var(--gsl-primary);
}

.float-card i {
    font-size: 1.25rem;
    color: var(--gsl-primary);
}

.float-card span {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gsl-heading);
}

/* Precise Positioning for Each Card */
.float-card:nth-child(1) {
    /* Sewa Tanaman: Bottom Left */
    bottom: 12%;
    left: 5%;
}

.float-card:nth-child(2) {
    /* Pertamanan: Top Right */
    top: 15%;
    right: -2%;
}

.float-card:nth-child(3) {
    /* Konsultasi: Center Left */
    top: 35%;
    left: -2%;
}

.float-card:nth-child(4) {
    /* Sustainability: Bottom Right */
    bottom: 25%;
    right: -5%;
}

/* -- Section 2: Visi & Misi (The Growth Journey) -- */
.about-vm-section {
    padding: 8rem 0;
    background-color: var(--gsl-light);
    position: relative;
    background-image: radial-gradient(circle at 100% 0%, rgba(139, 191, 54, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(58, 90, 26, 0.03) 0%, transparent 40%);
    /* Changed from overflow: hidden to allow the plant ornament to overlap vertically */
    overflow-x: clip;
    overflow-y: visible;
}

/* Visi Centerpiece */
.vision-centerpiece {
    max-width: 900px;
    margin: 0 auto 5rem;
    /* DIUBAH: Diberi margin-bottom 5rem untuk memberikan jarak lega dengan badge Misi */
    position: relative;
    z-index: 2;
    /* Di atas garis timeline */
    padding-bottom: 2rem;
    /* Ruang untuk garis penghubung */
}

/* Garis penghubung Visi ke Misi Timeline */
.vision-centerpiece::after {
    content: '';
    position: absolute;
    bottom: -9rem;
    /* DIUBAH: Turun lebih dalam untuk menjemput batang timeline yang menjauh */
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 11rem;
    /* DIUBAH: Garis diperpanjang agar tetap menyentuh batang bawah secara seamless */
    background: linear-gradient(to bottom, rgba(139, 191, 54, 0.6), rgba(139, 191, 54, 0.0));
    z-index: 1;
}

/* Premium Glass Card for Vision */
.vision-glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 30px;
    padding: 4rem 3rem;
    text-align: center;
    border: 1px solid rgba(139, 191, 54, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.9);
    border-left: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 25px 60px rgba(13, 42, 31, 0.05), inset 0 0 20px rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    /* Mengunci pendaran background, tapi membiarkan daun keluar sedikit */
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.vision-glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 70px rgba(139, 191, 54, 0.12), inset 0 0 25px rgba(255, 255, 255, 0.8);
}

/* Organic Transluscent Leaf Watermark */
.vision-watermark-icon {
    position: absolute;
    top: -30px;
    right: -40px;
    font-size: 16rem;
    color: var(--gsl-primary);
    opacity: 0.06;
    transform: rotate(-15deg);
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

/* Gradient Title */
.vision-title-gradient {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--gsl-dark), var(--gsl-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
}

/* Premium Text Typography */
.vision-text-premium {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #2c3e35;
    /* Dark greenish gray untuk readibility kelas atas */
    font-style: italic;
    font-weight: 500;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.9);
}

/* Misi Timeline Container */
/* Misi Timeline Container */
.mission-timeline-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding-top: 4rem;
    /* Ruang ekstra untuk letak badge bersinggungan di atas */
}

/* Glowing Transition Badge */
.mission-badge-wrapper {
    position: absolute;
    top: -4rem;
    /* Ditarik ke atas agar pas berada di persimpangan awal garis timeline */
    /* FIX: Kami menggunakan Flexbox absolute width 100% daripada translateX(-50%) 
       karena library animasi AOS mem-bypass dan merusak property transform saat fading berjalan */
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
}

.glowing-pill-badge {
    background: linear-gradient(135deg, var(--gsl-primary) 0%, var(--gsl-dark) 100%);
    color: white;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    /* Border tebal sewarna background (Light Gray) untuk efek ilusi optik memotong garis vertikal */
    border: 8px solid var(--gsl-light);
    box-shadow: 0 10px 25px rgba(139, 191, 54, 0.3), inset 0 2px 5px rgba(255, 255, 255, 0.3);
    position: relative;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.mission-timeline {
    position: relative;
    padding: 2rem 0;
    margin-top: 1rem;
}

/* The Stem (Vertical Line) */
.timeline-stem {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(139, 191, 54, 0.5), transparent);
    transform: translateX(-50%);
    z-index: 1;
}

/* Timeline Items */
.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    /* Default to pushing right side content to right */
    align-items: center;
    z-index: 2;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Left Item: Content goes to the left side */
.timeline-item.left {
    justify-content: flex-start;
}

/* Right Item: Content goes to the right side (default above, just for clarity) */
.timeline-item.right {
    justify-content: flex-end;
}

/* Leaf Nodes */
.timeline-leaf {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 2px solid var(--gsl-primary);
    border-radius: 50%;
    /* Leaf-like shape */
    border-top-right-radius: 5px;
    /* Leaf point */
    border-bottom-left-radius: 5px;
    /* Leaf point */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gsl-primary);
    font-size: 1.25rem;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.8), 0 5px 15px rgba(139, 191, 54, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 3;
}

/* Hover effect for leaf - "blooming" */
.timeline-item:hover .timeline-leaf {
    transform: translate(-50%, -50%) scale(1.15) rotate(15deg);
    background: var(--gsl-primary);
    color: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.8), 0 10px 25px rgba(139, 191, 54, 0.4);
}

/* Frosted Glass Content Card */
.timeline-content.glass-card {
    width: calc(50% - 3rem);
    /* Leave space for stem and leaf */
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    position: relative;
}

.timeline-item:hover .timeline-content.glass-card {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(58, 90, 26, 0.08);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(139, 191, 54, 0.3);
}

.timeline-item.left .timeline-content.glass-card {
    border-right: 4px solid transparent;
}

.timeline-item.right .timeline-content.glass-card {
    border-left: 4px solid transparent;
}

.timeline-item.left:hover .timeline-content.glass-card {
    border-right-color: var(--gsl-primary);
}

.timeline-item.right:hover .timeline-content.glass-card {
    border-left-color: var(--gsl-primary);
}

/* Timeline Ornament (Plant/Rock image) */
.timeline-ornament {
    position: absolute;
    left: calc(-50vw + 50%);
    /* Diturunkan kembali sedikit ke -180px agar overlap tumpang-tindihnya kembali muncul secara elegan */
    bottom: -208px;
    width: 50vw;
    /* Skala diperbesar menjadi 50% dari lebar layar */
    /* Diperbesar batas minimal dan maksimalnya */
    min-width: 600px;
    max-width: 950px;
    /* Allow it to be much wider on large screens */
    height: auto;
    object-fit: contain;
    z-index: 5;
    /* Ensure it stays above the dark background of the next section */
    opacity: 1;
    pointer-events: none;
    /* Static image, no hover animations */
}

/* Responsive adjustments for the ornament */
@media (max-width: 991px) {
    .timeline-ornament {
        width: 200px;
        bottom: 0px;
        opacity: 0.6;
    }
}

@media (max-width: 768px) {
    .timeline-ornament {
        display: none;
        /* Hide on small screens where layout stacks vertically */
    }
}

.mission-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(139, 191, 54, 0.15);
    line-height: 1;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-bottom: 0.5rem;
    transition: color 0.4s ease;
}

.timeline-item:hover .mission-number {
    color: var(--gsl-primary);
}

.timeline-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gsl-text);
    margin: 0;
    position: relative;
    z-index: 2;
}


/* -- Section 3: Core Values (Premium Dark) -- */
.about-values-section {
    position: relative;
    padding: 7rem 0 8rem;
    background-color: #0b1c14;
    /* Deep premium dark green to match map header */
    overflow: hidden;
}

/* Subtle texture to make it less flat */
.about-values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(rgba(139, 191, 54, 0.05) 1px, transparent 1px),
        radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-position: 0 0, 20px 20px;
    background-size: 40px 40px;
    opacity: 0.6;
    z-index: 0;
}

.about-values-section .container {
    position: relative;
    z-index: 10;
}

/* Override text colors for dark section */
.about-values-section .about-subtitle {
    color: var(--gsl-primary);
}

.about-values-section .about-title {
    color: #ffffff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

/* Glassmorphism Hover Card */
.value-card {
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    /* Extremely subtle white tint */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top-color: rgba(255, 255, 255, 0.15);
    /* Sleek top shine */
    border-left-color: rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Shine effect line gradient internally */
.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(139, 191, 54, 0.08), transparent);
    transform: skewX(-20deg);
    transition: 0.7s;
}

/* Organic Hover: Rise up, green glow, glass shine */
.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(139, 191, 54, 0.3);
    box-shadow: 0 20px 40px rgba(139, 191, 54, 0.15), inset 0 0 20px rgba(139, 191, 54, 0.05);
}

.value-card:hover::before {
    left: 200%;
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    color: var(--gsl-primary);
    /* Bright green icon */
    background: rgba(139, 191, 54, 0.1);
    /* Soft glow behind icon */
    border-radius: 50%;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 0 0 rgba(139, 191, 54, 0);
}

.value-card:hover .value-icon {
    background: var(--gsl-primary);
    color: #ffffff;
    transform: scale(1.15) rotate(8deg);
    /* Organic slight tilt & grow */
    box-shadow: 0 0 20px 5px rgba(139, 191, 54, 0.3);
}

.value-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    /* Crisp white titles */
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.value-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    /* Soft grey/white for readability */
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* -- Section 4: Lokasi Green House (Symmetric Twin Cards) -- */
.about-greenhouse-section {
    position: relative;
    padding: 8rem 0;
    background-color: #f7faf8;
    /* Very light, clean mint/grey background */
    overflow: hidden;
}

/* Subtle Organic Background Pattern */
.greenhouse-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    /* Background off-white dengan radial soft glow mint di tengah untuk efek sejuk dan luas */
    background: radial-gradient(circle at 50% 30%, #fafffc 0%, #f4f9f5 100%);
    position: relative;
    overflow: hidden;
}

/* The Signature Organics: Massive Faint Leaf Watermarks in Background */
.about-greenhouse-section::before,
.about-greenhouse-section::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f06c";
    /* fa-leaf */
    position: absolute;
    color: var(--gsl-primary);
    opacity: 0.025;
    /* Sangat transparan, seperti bayangan di kaca */
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.about-greenhouse-section::before {
    font-size: 60rem;
    top: -20%;
    left: -15%;
    transform: rotate(35deg);
}

.about-greenhouse-section::after {
    font-size: 45rem;
    bottom: -15%;
    right: -10%;
    transform: rotate(-120deg);
}

.greenhouse-header {
    max-width: 800px;
    margin: 0 auto 5rem;
    /* Ruang lebih lega */
    position: relative;
    z-index: 2;
}

/* Subtle change to text for light bg */
.greenhouse-header .about-subtitle {
    color: var(--gsl-primary);
    font-weight: 800;
    letter-spacing: 2px;
}

.greenhouse-header .about-title {
    color: var(--gsl-dark);
}

.greenhouse-intro {
    font-size: 1.15rem;
    color: #4a5d51;
    /* Dark grey-green elegan */
    line-height: 1.8;
    max-width: 800px;
}

/* Symmetric Cards Layout */
.twin-cards-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    /* Sedikit dilebarkan untuk efek melayang */
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* High-Elevation Floating Card */
.twin-card {
    background: #ffffff;
    border-radius: 30px;
    /* Lengkungan sangat lembut khas premium UI */
    overflow: hidden;
    /* Bayangan hijau mint zamrud super luas, memberi ilusi floating sangat tinggi */
    box-shadow: 0 25px 50px rgba(58, 90, 26, 0.06), 0 10px 20px rgba(139, 191, 54, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.5);
    /* Glowing edge effect */
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.5s ease;
    display: flex;
    flex-direction: column;
}

.twin-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 70px rgba(58, 90, 26, 0.1), 0 15px 30px rgba(139, 191, 54, 0.06);
}

/* Borderless Map Cover */
.card-map-cover {
    width: 100%;
    height: 220px;
    position: relative;
    /* Dihilangkan border-bottom nya agar mulus seperti tertanam */
}

/* Card Content Body (Below the map) */
.card-content-body {
    padding: 0 2.5rem 3rem;
    /* Top padding 0 karena badge menembus batas */
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: center;
    text-align: center;
    position: relative;
    background: #ffffff;
}

/* Sovereign Badge (Pin Penanda Overlap) */
.hub-card-header {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hub-icon-box {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #ffffff, #f4f9f5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gsl-primary);
    font-size: 1.8rem;
    /* Kunci Sovereign Effect: Menarik bujur ke atas batas peta */
    margin-top: -36px;
    margin-bottom: 1.5rem;
    /* Border tebal dan pendaran mewah layaknya emblem */
    border: 5px solid #ffffff;
    box-shadow: 0 8px 25px rgba(139, 191, 54, 0.25), inset 0 -3px 5px rgba(0, 0, 0, 0.02);
    position: relative;
    z-index: 10;
}

.hub-title-wrap h4 {
    color: var(--gsl-dark);
    font-size: 1.4rem;
    margin-bottom: 0.35rem;
    font-weight: 800;
}

.hub-title-wrap p {
    color: #637a6b;
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Stats (Premium Badge Style) */
.hub-stats {
    margin: 1.5rem 0;
    padding: 1.5rem 0;
    border-top: 1px dashed rgba(139, 191, 54, 0.2);
    border-bottom: 1px dashed rgba(139, 191, 54, 0.2);
    width: 100%;
}

.gh-number-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 191, 54, 0.1);
    /* Latar belakang mint lembut */
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    /* Pill shape */
    margin-bottom: 0.75rem;
    border: 1px solid rgba(139, 191, 54, 0.2);
}

.gh-counter,
.gh-plus {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gsl-primary);
    line-height: 1;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    color: var(--gsl-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Plant Tags (Pill Style) */
.hub-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    /* Perfect center */
    gap: 0.6rem;
    margin-bottom: 2rem;
    flex-grow: 1;
    /* Pushes the button to the bottom if content is short */
    width: 100%;
}

.plant-tag {
    background: #ffffff;
    border: 1px solid rgba(139, 191, 54, 0.2);
    color: var(--gsl-dark);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
}

.plant-tag i {
    color: var(--gsl-primary);
}

.twin-card:hover .plant-tag {
    background: #f0fdf4;
    border-color: rgba(139, 191, 54, 0.4);
}

/* CTA Button */
.btn-hub-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #ffffff;
    /* White text */
    font-weight: 500;
    /* Medium weight, not bold */
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    background: #000000;
    /* Black background */
}

.btn-hub-action i {
    transition: transform 0.3s ease;
    color: #ffffff;
    /* White icon to match text */
}

.btn-hub-action:hover {
    color: #ffffff;
    background: var(--gsl-primary);
    /* Keep the primary green hover effect */
    box-shadow: 0 10px 20px rgba(139, 191, 54, 0.2);
}

.btn-hub-action:hover i {
    transform: translateX(4px);
}


/* -- Responsive Styles -- */
/* -- Responsive Styles -- */
@media (max-width: 1024px) {
    .about-asymmetric-layout {
        gap: 2rem;
    }

    .about-main-image {
        width: 100%;
        right: 0;
        top: 0;
    }

    .float-card {
        padding: 0.6rem 1.2rem;
    }

    .float-card span {
        font-size: 0.85rem;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .green-hubs-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .twin-cards-layout {
        grid-template-columns: repeat(2, 1fr);
        max-width: 950px;
    }
}

@media (max-width: 768px) {
    .about-asymmetric-layout {
        grid-template-columns: 1fr;
    }

    .green-hubs-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .twin-cards-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-text-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .about-visual-content {
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-main-image {
        position: relative;
        width: 100%;
        height: 400px;
        top: auto;
        right: auto;
        margin-bottom: -2rem;
        /* Pull cards up over image */
    }

    .about-floating-cards {
        position: relative;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
        width: 100%;
        height: auto;
        left: auto;
        pointer-events: auto;
    }

    .float-card {
        position: relative;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    /* Responsive Visi Centerpiece */
    .vision-centerpiece {
        padding: 1rem;
        margin-bottom: 5rem;
    }

    .quote-watermark {
        font-size: 10rem;
        top: -40px;
    }

    .vision-text-premium {
        font-size: 1.25rem;
    }

    /* Responsive Timeline - Convert to single side */
    .timeline-stem {
        left: 20px;
    }

    .timeline-item {
        justify-content: flex-end;
        padding-left: 60px;
    }

    .timeline-item.left {
        justify-content: flex-end;
    }

    .timeline-leaf {
        left: 20px;
    }

    .timeline-item:hover .timeline-leaf {
        transform: translate(-50%, -50%) scale(1.1) rotate(10deg);
    }

    .timeline-content.glass-card {
        width: 100%;
    }

    .timeline-item.left .timeline-content.glass-card {
        border-right: 1px solid rgba(255, 255, 255, 0.6);
        border-left: 4px solid transparent;
    }

    .timeline-item.left:hover .timeline-content.glass-card {
        border-right-color: rgba(139, 191, 54, 0.3);
        border-left-color: var(--gsl-primary);
    }

    .mission-number {
        font-size: 2.5rem;
    }

    .greenhouse-bg-shape {
        width: 100%;
        border-top-left-radius: 100px;
        transform: translateY(20%);
    }

    .gh-stat-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .about-main-image {
        height: 300px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        margin-top: 3rem;
    }

    .value-card {
        padding: 2.5rem 1.5rem;
    }

    .value-title {
        font-size: 1.25rem;
    }

    .card-content-body {
        padding: 2rem 1.5rem;
    }

    .gh-counter {
        font-size: 2.5rem;
    }

    .hub-title-wrap h4 {
        font-size: 1.25rem;
    }
}

/* ==============================================
   Section 5: DOKUMEN PERUSAHAAN (Download Section)
   ============================================== */
.about-documents-section {
    position: relative;
    padding: 8rem 0;
    background-color: #ffffff;
    overflow: hidden;
}

/* Subtle dot pattern behind section */
.documents-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#8BBF36 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.04;
    z-index: 0;
}

/* Organic leaf watermark */
.about-documents-section::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f15c"; /* fa-file-alt */
    position: absolute;
    font-size: 40rem;
    color: var(--gsl-primary);
    opacity: 0.02;
    top: -10%;
    right: -10%;
    transform: rotate(-15deg);
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

/* Header */
.documents-header {
    max-width: 700px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 2;
}

.documents-intro {
    font-size: 1.1rem;
    color: var(--gsl-text);
    line-height: 1.8;
    max-width: 600px;
}

/* Grid: 3 columns desktop, 2 tablet, 1 mobile */
.doc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

/* Document Card */
.doc-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(139, 191, 54, 0.12);
    border-radius: 24px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

/* Subtle shine sweep on hover */
.doc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(139, 191, 54, 0.06), transparent);
    transform: skewX(-20deg);
    transition: 0.6s;
}

.doc-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 191, 54, 0.35);
    box-shadow: 0 20px 50px rgba(58, 90, 26, 0.1);
}

.doc-card:hover::before {
    left: 200%;
}

/* File Type Icon Area */
.doc-icon-wrap {
    position: relative;
    margin-bottom: 1.25rem;
}

.doc-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--doc-icon-color, #6B7280);
    background: #f3f4f6; /* fallback */
    background: color-mix(in srgb, var(--doc-icon-color, #6B7280) 8%, white);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin: 0 auto;
}

.doc-card:hover .doc-icon {
    transform: scale(1.1) rotate(-5deg);
    background: #e8ede3; /* fallback */
    background: color-mix(in srgb, var(--doc-icon-color, #6B7280) 14%, white);
    box-shadow: 0 8px 20px rgba(107, 114, 128, 0.2); /* fallback */
    box-shadow: 0 8px 20px color-mix(in srgb, var(--doc-icon-color, #6B7280) 20%, transparent);
}

/* Extension Badge (e.g. .PDF) */
.doc-ext-badge {
    position: absolute;
    bottom: -4px;
    right: calc(50% - 56px);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    background: var(--gsl-dark);
    color: #fff;
    padding: 0.15rem 0.5rem;
    border-radius: 6px;
    text-transform: uppercase;
}

/* Category Badge */
.doc-category {
    margin-bottom: 0.75rem;
}

.doc-category-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    text-transform: uppercase;
}

/* Category color variants */
.doc-cat-company_profile {
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
}

.doc-cat-catalog {
    background: rgba(245, 158, 11, 0.1);
    color: #D97706;
}

.doc-cat-brochure {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.doc-cat-other {
    background: rgba(107, 114, 128, 0.1);
    color: #6B7280;
}

/* Title */
.doc-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gsl-heading);
    margin-bottom: 0.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.4;
}

/* Description */
.doc-desc {
    font-size: 0.9rem;
    color: var(--gsl-text);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

/* File Meta (size + downloads) */
.doc-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
    font-size: 0.8rem;
    color: #9CA3AF;
    font-weight: 500;
}

.doc-meta i {
    margin-right: 0.3rem;
    font-size: 0.7rem;
}

/* Download Button */
.doc-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--gsl-primary), var(--gsl-dark));
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 191, 54, 0.25);
    margin-top: auto;
}

.doc-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 191, 54, 0.4);
    background: linear-gradient(135deg, #9ad03e, var(--gsl-primary));
    color: #ffffff;
}

.doc-download-btn i {
    font-size: 1rem;
}

/* ====== RESPONSIVE: Documents Section ====== */
@media (max-width: 991px) {
    .doc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-documents-section {
        padding: 5rem 0;
    }
}

@media (max-width: 768px) {
    .doc-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .about-documents-section {
        padding: 4rem 0;
    }

    .documents-header {
        margin-bottom: 2.5rem;
    }
}