/* ================= GLOBAL ================= */
body {
    font-family: 'Poppins', sans-serif;
    background: #f7f9fc;
    color: #333;
}

h1, h2, h3, h4 {
    font-weight: 600;
    color: black;
    
}

a {
    text-decoration: none;
}

p,ul,li{
    color: black;
}

ul {
    padding-left: 20px;
}

/* ================= HERO ================= */
.hero {
    position: relative;
    padding: 80px 0;
    color: #fff;
    overflow: hidden;
}

.accent-top,
.accent-bottom {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.accent-top {
    top: -100px;
    left: -100px;
}

.accent-bottom {
    bottom: -120px;
    right: -120px;
}

.home-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* ================= INTRO ================= */
.home-intro {
    text-align: center;
    margin-bottom: 70px;
}

.home-intro h1 {
    font-size: 38px;
    margin-bottom: 15px;
}

.home-intro p {
    max-width: 700px;
    margin: auto;
    line-height: 1.7;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 28px;
    background: #ffb703;
    color: #000;
    font-weight: 600;
    border-radius: 30px;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #ffd166;
    transform: translateY(-2px);
}

/* ================= VISI MISI ================= */
.visi-misi {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 70px;
}

.visi, .misi {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    color: #333;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ================= LAYANAN ================= */
.layanan {
    margin-bottom: 70px;
}

.layanan h2 {
    text-align: center;
    margin-bottom: 35px;
}

.layanan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.layanan-card {
    background: whitesmoke;
    padding: 25px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.layanan-card:hover {
    transform: translateY(-6px);
    background-color: #ffffff;
}

/* ================= KEUNGGULAN ================= */
.keunggulan {
    background: #ffffff;
    padding: 40px;
    border-radius: 14px;
    margin-bottom: 70px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.keunggulan ul li {
    margin-bottom: 10px;
}

/* ================= ARMADA ================= */
.armada {
    margin-bottom: 70px;
}

.armada h2 {
    text-align: center;
    margin-bottom: 35px;
}

.armada-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.armada-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.armada-card i {
    font-size: 40px;
    color: #ffb703;
    margin-bottom: 15px;
}

/* ================= CARA SEWA ================= */
.cara-sewa {
    margin-bottom: 70px;
}

.cara-sewa h2 {
    text-align: center;
    margin-bottom: 35px;
}

.cara-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 25px;
}

.cara-step {
    background: #ffffff;
    padding: 25px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.cara-step span {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: #ffb703;
    color: #000;
    font-weight: 700;
    border-radius: 50%;
    line-height: 45px;
    margin-bottom: 10px;
}

/* ================= CTA ================= */
.cta-home {
    text-align: center;
    background: linear-gradient(135deg, #ffb703, #ffd166);
    padding: 50px 30px;
    border-radius: 18px;
    color: #000;
}

.slider {
    position: relative;
    max-width: 1020px;
    height: 574px;
    margin: 30px auto;
    overflow: hidden;
    margin-top: 20px;
    border-radius: 16px;
}

.slides {
    width: 100%;
    height: 100%;
}

.slide {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: none;
}

.slide.active {
    display: block;
}

/* BUTTON */
.nav-prev,
.nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    background: rgba(0,0,0,0.6);
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.nav-prev:hover,
.nav-next:hover {
    background: rgba(0,0,0,0.85);
}

.nav-prev {
    left: 20px;
}

.nav-next {
    right: 20px;
}