/* GLOBAL */
body {
    font-family: 'Poppins', sans-serif;
    background: #fff9fb;
    color: #444;
}

/* NAVBAR */
.navbar-custom {
    background: rgba(255, 230, 236, 0.6);
    backdrop-filter: blur(10px);
    padding: 12px 0;
}

.navbar-brand {
    font-size: 28px;
    font-weight: 700;
    color: #d27f9d !important;
}

.nav-link {
    color: #444 !important;
    margin-right: 20px;
    font-weight: 500;
}

.tombol-order {
    background: #d27f9d;
    color: white !important;
    border-radius: 30px;
    padding: 8px 20px;
}

/* HERO */
.hero {
    height: 90vh;
    background: url('../img/LANDPAGE.png') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero .overlay {
    background: rgba(0, 0, 0, 0.35);
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 48px;
    color: white;
    font-weight: 300;
}

.hero-title span {
    font-weight: 600;
}

.hero-subtitle {
    color: #ffe9ef;
    margin-bottom: 20px;
}

/* SECTIONS */
.section-title {
    font-size: 38px;
    font-weight: 600;
    color: #d27f9d;
}

.section-title span {
    color: #a95f7a;
}

.section-desc {
    color: #666;
}

.section-padding {
    padding: 80px 0;
}

.section-bg {
    background: #fff2f6;
}

/* ABOUT CARDS */
.card-about {
    background: white;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.card-about:hover {
    transform: translateY(-5px);
}

.icon-about {
    font-size: 40px;
    color: #d27f9d;
    margin-bottom: 15px;
}

/* SERVICES */
.service-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* PRICING */
.pricing-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.pricing-card.featured {
    background: linear-gradient(145deg, #d27f9d, #e8a7bf);
    color: white;
}

.price {
    font-size: 48px;
    margin: 20px 0;
}

/* FOOTER */
.footer {
    padding: 20px;
    background: #d27f9d;
    color: white;
    margin-top: 40px;
}
