/* ===========================
   PT GOLDEN SENTOSA LINE
   PREMIUM LANDING PAGE
=========================== */

:root{
    --navy:#02142B;
    --navy-light:#0B2346;
    --gold:#D9A520;
    --white:#ffffff;
    --gray:#f5f7fa;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI',sans-serif;
    overflow-x:hidden;
    color:#333;
}

/* ===========================
   TOPBAR
=========================== */

.topbar{
    background:var(--navy);
    color:#fff;
    font-size:13px;
    padding:8px 0;
}

/* ===========================
   NAVBAR
=========================== */

.main-navbar{
    background:rgba(2,20,43,.90);
    backdrop-filter:blur(12px);
    transition:.4s;
    padding:15px 0;
}

.logo{
    height:50px;
    width:auto;
    object-fit:contain;
}

.navbar-brand h5{
    color:var(--gold);
    font-weight:700;
}

.navbar-brand small{
    color:#fff;
}

.nav-link{
    color:#fff !important;
    font-weight:500;
    margin-left:15px;
    transition:.3s;
}

.nav-link:hover{
    color:var(--gold) !important;
}

/* ===========================
   BUTTON
=========================== */

.btn-gold{
    background:var(--gold);
    color:#fff;
    border:none;
    padding:12px 25px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.btn-gold:hover{
    background:#c69214;
    color:#fff;
    transform:translateY(-2px);
}

.btn-outline-light{
    padding:12px 25px;
    border-radius:10px;
}

/* ===========================
   HERO
=========================== */

.hero{
    height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.hero-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        90deg,
        rgba(2,20,43,.95) 0%,
        rgba(2,20,43,.85) 50%,
        rgba(2,20,43,.30) 100%
    );
}

.hero-content{
    position:relative;
    z-index:10;
}

.hero-tag{
    color:var(--gold);
    font-weight:600;
    letter-spacing:2px;
}

.hero h1{
    font-size:75px;
    color:#fff;
    font-weight:800;
    line-height:1;
    margin-top:15px;
}

.hero h1 span{
    color:var(--gold);
    display:block;
}

.hero p{
    color:#fff;
    font-size:20px;
    max-width:600px;
    margin:30px 0;
}

.hero-buttons{
    display:flex;
    gap:15px;
}

/* ===========================
   QUICK SERVICE
=========================== */

.quick-service{
    background:var(--navy);
    color:#fff;
    padding:40px 0;
}

.quick-service i{
    color:var(--gold);
    font-size:40px;
    margin-bottom:15px;
}

.quick-service h6{
    font-weight:600;
}

/* ===========================
   SECTION
=========================== */

.section{
    padding:100px 0;
}

.section-subtitle{
    color:var(--gold);
    font-weight:700;
    letter-spacing:2px;
}

.section h2{
    color:var(--navy);
    font-size:42px;
    font-weight:800;
    margin-bottom:20px;
}

/* ===========================
   ABOUT
=========================== */

#about img{
    border-radius:20px;
}

/* ===========================
   STATS
=========================== */

.stats{
    background:var(--navy);
    color:#fff;
    padding:80px 0;
}

.stats h2{
    color:var(--gold);
    font-size:60px;
    font-weight:800;
}

.stats p{
    font-size:18px;
}

/* ===========================
   SERVICE CARD
=========================== */

.service-card{
    background:#fff;
    border-radius:20px;
    text-align:center;
    padding:40px 25px;
    transition:.4s;
    box-shadow:
    0 10px 30px rgba(0,0,0,.08);
    height:100%;
}

.service-card:hover{
    transform:translateY(-10px);
    border:2px solid var(--gold);
}

.service-card i{
    font-size:55px;
    color:var(--gold);
    margin-bottom:20px;
}

.service-card h5{
    font-weight:700;
}

/* ===========================
   GALLERY
=========================== */

.gallerySwiper img{
    border-radius:20px;
    width:100%;
    height:400px;
    object-fit:cover;
}

/* ===========================
   CONTACT
=========================== */

.contact-section{
    background:var(--gray);
}

.form-control{
    padding:14px;
    border-radius:10px;
}

.form-control:focus{
    box-shadow:none;
    border-color:var(--gold);
}

/* ===========================
   WHATSAPP FLOAT
=========================== */

.wa-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:32px;
    text-decoration:none;
    z-index:999;
    box-shadow:
    0 10px 25px rgba(0,0,0,.25);
}

.wa-float:hover{
    color:#fff;
    transform:scale(1.1);
}

/* ===========================
   FOOTER
=========================== */

footer{
    background:#01101f;
    color:#fff;
    padding:60px 0;
}

footer h5{
    margin-top:15px;
    font-weight:700;
}

footer p{
    color:#ccc;
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:991px){

    .hero{
        height:auto;
        padding:180px 0 120px;
    }

    .hero h1{
        font-size:45px;
    }

    .hero p{
        font-size:16px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .stats h2{
        font-size:40px;
    }

    .section{
        padding:70px 0;
    }
}

@media(max-width:576px){

    .logo{
        height:50px;
    }

    .hero h1{
        font-size:35px;
    }

    .section h2{
        font-size:30px;
    }

    .gallerySwiper img{
        height:250px;
    }

}