/* about-style.css 
    Updated Revision: 28 April 2026
*/

:root {
    --bg-warm: #FFFCF3;
    --bg-page: #FDFDFB;
    --teal: #1A9F9F;
    --teal-bright: #1A9F9F; /* Cyan Color penanda aktif */
    --teal-dark: #126F6F;
    --text-dark: #1D2B2B;
    --accent-beige: #EFE9D9;
    --white: #FFFFFF;
    --logo-red: #C0392B;
    --footer-beige: #D8D0C1;
}

/* --- Global --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Inter', sans-serif; 
    color: var(--text-dark); 
    background-color: var(--bg-page); 
    line-height: 1.6; 
}

/* --- Navigation & Header FIX (Z-Index Tinggi) --- */
header { 
    background: var(--white); 
    position: sticky !important; 
    top: 0; 
    z-index: 10000 !important; /* Nilai super tinggi agar di depan Hero */
    box-shadow: 0 2px 15px rgba(0,0,0,0.04); 
}

.navbar { padding: 10px 0; }

.custom-nav .nav-link { 
    font-weight: 700 !important; 
    font-size: 1.05rem !important; 
    color: var(--text-dark) !important; 
    padding: 10px 18px !important; 
    transition: 0.3s; 
}

/* REVISI MART: Warna Active stay Cyan/Teal */
.custom-nav .nav-link.active, .custom-nav .nav-link:hover { 
    color: var(--teal-bright) !important; 
}

.btn-teal-nav { 
    background-color: var(--teal) !important; 
    border-radius: 50px; 
    font-weight: 800 !important; 
    color: white !important; 
    padding: 10px 25px !important;
}

/* --- Hero --- */
.about-hero {
    background: linear-gradient(rgba(255, 252, 243, 0.8), rgba(255, 252, 243, 0.9)), 
                url('foto/12.jpg') center/cover no-repeat;
    min-height: 75vh;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--accent-beige);
    position: relative;
    z-index: 1; /* Di bawah header */
}

.display-title { font-weight: 800; letter-spacing: -2px; line-height: 1.1; }
.dot-red { color: var(--logo-red); }
.tagline-hero { color: var(--teal-dark); opacity: 0.8; }

/* --- Utils --- */
.section-padding { padding: 100px 0; }
.section-title { font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--text-dark); }
.accent-line-center { width: 60px; height: 5px; background: var(--teal); margin: 35px auto 45px; border-radius: 2px; }
.accent-line-left { width: 50px; height: 5px; background: var(--teal); margin: 35px 0 45px; border-radius: 2px; }

/* --- Lists & Capabilities --- */
.why-list-v2 { list-style: none; padding: 0; }
.why-list-v2 li { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; font-weight: 600; }

.capability-list { list-style: none; padding: 0; }
.capability-list li { 
    background: white; 
    padding: 15px 20px; 
    border-radius: 8px; 
    margin-bottom: 10px; 
    font-weight: 600; 
    border-left: 4px solid var(--teal); 
    box-shadow: 0 2px 5px rgba(0,0,0,0.02); 
    transition: 0.3s;
}

/* --- Cards --- */
.diff-card-v2 { 
    padding: 35px 25px; 
    border-radius: 25px; 
    height: 100%; 
    background-color: var(--teal); 
    color: white; 
    transition: 0.3s; 
    border: none;
}
.diff-num { font-size: 1.8rem; font-weight: 800; opacity: 0.3; display: block; margin-bottom: 15px; color: white; }
.diff-card-v2:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(26, 159, 159, 0.25); }

/* --- Buttons --- */
.btn-teal-main { 
    background: var(--teal); color: white !important; padding: 15px 35px; border-radius: 50px; 
    text-decoration: none; font-weight: 700; transition: 0.3s; display: inline-block; border: none; 
}
.btn-teal-main:hover { background: var(--teal-dark); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(26, 159, 159, 0.2); }
.btn-outline-teal { border: 2px solid var(--teal); color: var(--teal); padding: 15px 35px; border-radius: 50px; text-decoration: none; font-weight: 700; display: inline-block; transition: 0.3s; }

/* --- Footer & Socials --- */
.footer-v2 { border-top: 1px solid var(--accent-beige); }
.social-links-ikova { display: flex; gap: 12px; justify-content: flex-start; }
.social-links-ikova a { 
    width: 38px; height: 38px; background: white; color: var(--text-dark); border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; border: 1px solid var(--accent-beige); 
    transition: 0.3s; text-decoration: none; 
}
.social-links-ikova a:hover { background: var(--teal) !important; color: white !important; transform: translateY(-3px); }

/* --- WhatsApp Floating (Ngikutin Scroll & Tanpa X) --- */
.wa-float-link {
    position: fixed; 
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wa-float-link:hover .wa-text-bubble {
    opacity: 1;
    transform: translateY(0);
}

.wa-float-link:hover .wa-icon-circle {
    transform: scale(1.1);
}

.wa-text-bubble {
    background-color: #25D366;
    color: white !important;
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-right: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease-out;
}

.wa-icon-circle {
    width: 60px; height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s ease;
}

.wa-icon-circle i { color: white; font-size: 32px; }

/* --- MASTER FONT SIZING --- */
.fs-hero-title { font-size: 5.5rem; }
.fs-hero-tagline { font-size: 2.2rem; }
.fs-hero-desc { font-size: 1.25rem; }
.fs-section-title { font-size: 2.8rem; }
.fs-section-desc { font-size: 1.25rem; }
.fs-card-title { font-size: 1.4rem; font-weight: 800; line-height: 1.2; }
.fs-card-desc { font-size: 1rem; line-height: 1.4; }

/* Responsif */
@media (max-width: 991px) {
    .fs-hero-title { font-size: 2.8rem; }
    .footer-v2 .row > div { text-align: left !important; }
}

@media (max-width: 768px) {
    .wa-text-bubble { display: none; }
    .diff-card-v2 { padding: 20px 15px !important; border-radius: 15px !important; }
}