body {
    font-family: 'Poppins', sans-serif;
}


/*--------------------------------------------------------------
# navbar
--------------------------------------------------------------*/
.navbar-logo {
    height: 36px;
}

.navbar {
    background-color: #0f1c2e;
    padding: 12px 0;
    transition: 0.4s;
}

.navbar-brand {
    font-size: 18px;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar.scrolled {
    background-color: #0f1c2e !important;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background-color: #0f1c2e;
        padding: 15px;
        border-radius: 8px;
        margin-top: 10px;
    }

    .nav-link {
        padding: 10px 0;
    }
}



.section {
    padding: 80px 0;
}

.btn-gold {
    background: #c8a24d;
    color: #000;
    font-weight: 600;
}

.footer {
    background: #0a1422;
    color: #aaa;
    padding: 30px 0;
}

.card {
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-6px);
}

@media (max-width: 768px) {
    .card {
        margin-bottom: 20px;
    }
}



/*--------------------------------------------------------------
# hero
--------------------------------------------------------------*/
.hero {
    height: 70vh;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero-dark {
    background: linear-gradient(rgba(15,28,46,0.85), rgba(15,28,46,0.85)),
    url('../img/background.png') center/cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
}

.btn-gold {
    background: #c8a24d;
    color: #000;
    font-weight: 600;
    border: none;
}

.btn-gold:hover {
    background: #e0b85c;
}

.hero-small {
    height: 50vh;
    padding-top: 120px; /* supaya tidak ketutup navbar */
}

@media (max-width: 768px) {

    .hero-title {
        font-size: 26px;
        line-height: 1.4;
    }

    .hero-sub {
        font-size: 14px;
    }

    .btn-gold {
        font-size: 14px;
        padding: 8px 18px;
    }
}

.hero-logo {
    height: 80px;
    filter: brightness(0) invert(1);
}

.hero-slider {
    position: relative;
}

.hero-slider .carousel-item {
    height: 100vh;
}

.hero-slider img {
    object-fit: cover;
    height: 100vh;
}

.slider-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 28, 46, 0.75);
}

.carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
    text-align: center;
}

.carousel-caption h1 {
    font-size: 48px;
    font-weight: 700;
}

.carousel-caption p {
    font-size: 18px;
}

@media (max-width: 768px) {

.hero-slider .carousel-item,
.hero-slider img {
    height: 80vh;
}

.carousel-caption h1 {
    font-size: 24px;
}

.carousel-caption p {
    font-size: 14px;
}

}
.carousel-fade .carousel-item {
    transition: opacity 0.8s ease-in-out;
}



/*--------------------------------------------------------------
# wa
--------------------------------------------------------------*/
.wa-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    z-index: 999;
    transition: 0.3s;
}

.wa-float:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .wa-float {
        padding: 10px 14px;
        font-size: 13px;
        bottom: 15px;
        right: 15px;
    }
}


/*--------------------------------------------------------------
# loader
--------------------------------------------------------------*/
#loader {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #0f1c2e;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-logo {
    font-size: 28px;
    font-weight: 700;
    color: #c8a24d;
    letter-spacing: 3px;
}

/*--------------------------------------------------------------
# parallax
--------------------------------------------------------------*/
.parallax {
    background: url('../img/parallax.jpg') center/cover no-repeat;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .parallax {
        background-attachment: scroll;
        height: 250px;
        padding: 40px 20px;
        text-align: center;
    }
}


/*--------------------------------------------------------------
# counter
--------------------------------------------------------------*/
.counter {
    font-size: 42px;
    font-weight: 700;
    color: #c8a24d;
}

@media (max-width: 768px) {
    .counter {
        font-size: 32px;
    }

    .section {
        padding: 60px 15px;
    }
}

/*--------------------------------------------------------------
# footer
--------------------------------------------------------------*/
.footer-premium {
    background: linear-gradient(135deg, #0f1c2e, #0a1422);
    color: #cbd5e1;
    padding: 80px 0 40px 0;
    font-size: 14px;
}

.footer-title {
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    text-transform: uppercase;
}

.footer-title::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #c8a24d;
    display: block;
    margin-top: 8px;
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    margin-bottom: 8px;
}

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin-bottom: 20px;
}

.footer-bottom {
    font-size: 13px;
    color: #94a3b8;
    letter-spacing: 0.5px;
}

.footer-logo {
    height: 50px;
    filter: brightness(0) invert(1);
}


/*--------------------------------------------------------------
# about. html | NILAI PERUSAHAAN
--------------------------------------------------------------*/
.values-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc, #ffffff);
}

.section-title {
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
}

.section-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #c8a24d;
    display: block;
    margin: 15px auto 0 auto;
}

.value-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 12px;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.value-card h6 {
    font-weight: 600;
    margin-top: 15px;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: #0f1c2e;
    color: #c8a24d;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px auto;
    transition: 0.3s ease;
}

.value-card:hover .value-icon {
    background: #c8a24d;
    color: #0f1c2e;
}



/*--------------------------------------------------------------
# about. html | ARAH STRATEGIS
--------------------------------------------------------------*/
.strategy-section {
    padding: 100px 0;
    background: #0f1c2e;
    color: #ffffff;
}

.strategy-card {
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    transition: 0.3s ease;
}

.strategy-card:hover {
    background: rgba(255,255,255,0.1);
}

/*--------------------------------------------------------------
# about. html | PROFIL
--------------------------------------------------------------*/
.profile-logo {
    height: 300px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/*--------------------------------------------------------------
# index.html |
--------------------------------------------------------------*/
.corporate-intro {
    padding: 100px 0;
    background: #ffffff;
}

.division-card {
    background: #ffffff;
    padding: 35px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.division-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.strengths-section {
    padding: 100px 0;
    background: #0f1c2e;
    color: #ffffff;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f1c2e, #1c2e4a);
    color: #ffffff;
}
