/* contact-style.css */

:root {
    --bg-dark: #0A192F; 
    --navy-light: #112240;
    --teal: #1A9F9F;
    --teal-bright: #1A9F9F; 
    --accent-gold: #FFD700;
    --white: #FFFFFF;
    --bg-light: #F8FAFC;
    --text-dark: #1D2B2B;
}

/* --- Global Reset --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Inter', sans-serif; 
    color: var(--text-dark); 
    line-height: 1.7; 
    background-color: var(--white); 
    overflow-x: hidden; 
}

/* --- Navigation & Header Styling --- */
header { 
    background: var(--white); 
    padding: 15px 0; 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    box-shadow: 0 2px 15px rgba(0,0,0,0.04); 
}

.logo img { height: 45px; }

header nav { margin-left: auto; } 

.nav-list { 
    display: flex; 
    list-style: none; 
    gap: 5px; 
    margin: 0; 
    align-items: center; 
}

.nav-list a { 
    text-decoration: none; 
    color: var(--text-dark); 
    font-weight: 700; 
    padding: 10px 18px; 
    border-radius: 30px; 
    font-size: 1.05rem; 
    transition: 0.3s; 
}

.nav-list a.active { 
    color: var(--teal-bright) !important; 
    background: rgba(26, 159, 159, 0.15) !important; 
}

.nav-list a:hover { 
    color: var(--teal-bright); 
    background: rgba(26, 159, 159, 0.1); 
}

/* Dropdown Menu Styling */
.nav-dropdown { position: relative; }
.dropdown-menu-custom {
    position: absolute; 
    top: 100%; 
    right: 0; 
    background: var(--white); 
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
    border-radius: 12px; 
    padding: 10px 0;
    display: none; 
    list-style: none; 
    z-index: 1200; 
    margin-top: 5px;
}
.dropdown-menu-custom li a { border-radius: 0; padding: 10px 20px; display: block; font-size: 0.95rem; background: none; }
.nav-dropdown:hover .dropdown-menu-custom { display: block; animation: fadeInNav 0.3s ease; }

@keyframes fadeInNav {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Utils --- */
.section-padding { padding: 80px 0; }
.section-title { font-weight: 800; color: var(--navy-light); text-transform: uppercase; letter-spacing: 1px; }
.accent-line-center { width: 60px; height: 4px; background: var(--teal); margin: 15px auto 30px; border-radius: 2px; }
.accent-line-left { width: 50px; height: 4px; background: var(--teal); margin: 15px 0 25px; }

/* --- Hero (REVISI: FONT GEDE & BOLD) --- */
.contact-hero { padding-top: 120px !important; }
.display-title { 
    font-size: 5.5rem !important; /* Gedein paksa */
    font-weight: 800 !important; /* Bold abis */
    letter-spacing: -3px; 
    color: var(--bg-dark); 
    line-height: 1; 
}
.display-title span { color: var(--accent-gold); }
.subheadline-v2 { 
    font-size: 1.1rem !important; 
    font-weight: 700 !important; 
    text-transform: uppercase; 
    letter-spacing: 3px; 
    display: block; 
    color: var(--teal); 
    margin-bottom: 10px;
}

/* --- Support & Approach --- */
.support-list { list-style: none; padding: 0; }
.support-list li { margin-bottom: 15px; font-weight: 600; display: flex; align-items: center; gap: 12px; }
.support-list i { color: var(--teal); font-size: 1.2rem; }

.approach-vertical { border-left: 2px dashed #eee; padding-left: 30px; margin-left: 15px; }
.approach-item { position: relative; margin-bottom: 30px; }
.approach-icon { position: absolute; left: -46px; top: 0; width: 30px; height: 30px; background: var(--teal); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.8rem; }

/* --- Info & Form --- */
.info-card { background: var(--bg-dark); color: white; border: none; }
.info-item { display: flex; align-items: center; gap: 15px; }
.info-item i { width: 40px; height: 40px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; border-radius: 10px; color: var(--accent-gold); }

.form-control, .form-select { border-radius: 10px; padding: 12px 15px; border: 1px solid #eee; background: #fcfcfc; }
.form-control:focus, .form-select:focus { border-color: var(--teal); box-shadow: none; background: white; }

/* --- Buttons --- */
.btn-gold-action { background: var(--accent-gold); color: var(--bg-dark); font-weight: 700; padding: 14px 30px; border-radius: 50px; text-decoration: none; border: none; transition: 0.3s; display: inline-block; }
.btn-gold-action:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); background: #FFC800; color: var(--bg-dark); }
.btn-outline-dark-action { border: 2px solid var(--bg-dark); color: var(--bg-dark); font-weight: 600; padding: 14px 30px; border-radius: 50px; text-decoration: none; transition: 0.3s; display: inline-block; }

/* --- Footer --- */
.social-links-v2 { display: flex; gap: 15px; }
.social-links-v2 a { width: 45px; height: 45px; background: #f8fafc; color: var(--navy-light); display: flex; align-items: center; justify-content: center; border-radius: 50%; text-decoration: none; border: 1px solid #eee; transition: 0.3s; }
.social-links-v2 a:hover { background: var(--teal); color: white; transform: translateY(-5px); border-color: var(--teal); }

/* ============================================================ */
/* MASTER FONT SIZING (MART: ATUR DI SINI)                      */
/* ============================================================ */
.fs-hero-title { font-size: 5.5rem; font-weight: 800; }
.fs-hero-sub { font-size: 1.1rem; font-weight: 700; }
.fs-hero-desc { font-size: 1.25rem; }

.fs-section-title { font-size: 2.2rem; font-weight: 800; }
.fs-section-desc { font-size: 1rem; }

.fs-card-title { font-size: 1.25rem; font-weight: 700; }
.fs-card-desc { font-size: 0.9rem; }
/* ============================================================ */

/* --- REVISI RESPONSIVE (Taruh di paling bawah CSS lo) --- */
@media (max-width: 992px) {
    /* Header & Nav */
    .navbar-collapse { background: white; padding: 20px; box-shadow: 0 5px 10px rgba(0,0,0,0.1); }
    .nav-list { flex-direction: column !important; gap: 15px; }
    
    /* Hero/Intro Text Fix */
    .display-title { font-size: 3.5rem !important; letter-spacing: -1px; }
    .fs-hero-desc { font-size: 1rem !important; line-height: 1.6; }
    
    /* Footer Fix */
    footer .row { text-align: center; gap: 30px; }
    .social-links-v2 { justify-content: center; }
}

/* Biar dropdown menu gak off-screen di mobile */
@media (max-width: 992px) {
    .dropdown-menu-custom { position: relative; width: 100%; box-shadow: none; border: none; }
}