html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(to bottom, #fff5f7, #ffffff);
    font-family: 'Segoe UI', sans-serif;
}

/* NAVBAR */
.text-pink {
    color: #e94e77;
    font-weight: bold;
    transition: color 0.3s ease;
}
.text-pink:hover {
    color: #d63b66;
}

.navbar-nav .nav-link {
    color: #555;
    font-weight: 500;
    position: relative;
    padding: 8px 16px;
    transition: color 0.3s ease, transform 0.2s ease;
}

.navbar-nav .nav-link:hover {
    color: #e94e77;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #e94e77;
    transition: width 0.3s ease, left 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
    left: 10%;
}

.navbar-nav .nav-link.active {
    color: #e94e77 !important;
    font-weight: 600;
}

.navbar-nav .nav-link.active::after {
    width: 80%;
    left: 10%;
}

/* BUTTON */
.btn-pink {
    background: #e94e77 !important;
    color: white !important;
    border-radius: 30px;
    padding: 12px 25px;
    font-weight: 500;
    border: none;
}

.btn-pink:hover {
    background: #d63b66 !important;
}

/* HERO */
.hero-section {
    padding: 80px 0;
}

.hero-title {
    font-size: 44px;
    font-weight: 700;
}

.hero-desc {
    color: #666;
    margin: 20px 0;
    max-width: 500px;
}

.small-text {
    color: #999;
}

/* HERO IMAGE */
.hero-image-container {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    overflow: hidden;
    margin: auto;
    border: 8px solid #f8d7dc;
    box-shadow: 0 15px 35px rgba(233, 78, 119, 0.2);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.5s ease;
}

.hero-image-container:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 20px 45px rgba(233, 78, 119, 0.35);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-image-container:hover .hero-image {
    transform: scale(1.1);
}

/* FEATURES */
.features-section {
    margin-top: 50px;
}

/* CARD FIX */
.feature-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
    height: 100%;
}



.feature-card:hover {
    transform: translateY(-5px);
}


/* SIDEBAR */
.sidebar {
    background: #f8e6ea;
    min-height: 100vh;
    padding: 30px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    color: #e94e77;
    font-weight: bold;
    margin-bottom: 30px;
}

.menu {
    list-style: none;
    padding: 0;
}

.menu li {
    margin: 15px 0;
}

.menu li a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s ease;
}

.menu li a:hover {
    color: #e94e77;
    transform: translateX(5px);
}

.menu li.active {
    background: #f3c6cf;
    padding: 10px;
    border-radius: 10px;
}

.menu li.active a {
    color: #d63b66;
    font-weight: bold;
}

/* FORM CARD */
.form-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 500px;
    width: 100%;
}

/* STEP */
.step span {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: #ddd;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    margin-right: 10px;
}

.step-active {
    background: #e94e77 !important;
    color: white;
}

/* STEP CARDS (CARA KERJA) */
.step-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(233, 78, 119, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(233, 78, 119, 0.15);
    border-color: #e94e77;
}

.step-badge {
    width: 60px;
    height: 60px;
    background: #fdf0f2;
    color: #e94e77;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    border: 2px solid #fce4ec;
    transition: all 0.3s ease;
}

.step-card:hover .step-badge {
    background: #e94e77;
    color: white;
    transform: scale(1.1);
}

/* CONTACT CARD (KONTAK) */
.contact-card {
    background: white;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(233, 78, 119, 0.05);
}

.custom-input {
    border: 2px solid #eee;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.custom-input:focus {
    border-color: #e94e77;
    box-shadow: 0 0 10px rgba(233, 78, 119, 0.15);
    outline: none;
}

/* Hide HTML5 Up/Down arrows for number inputs */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type=number] {
    -moz-appearance: textfield;
}

/* OUTLINE PINK BUTTON */
.btn-outline-pink {
    border: 2px solid #e94e77 !important;
    color: #e94e77 !important;
    background: transparent !important;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-pink:hover {
    background: #e94e77 !important;
    color: white !important;
}

/* =================================== */
/* MOBILE & RESPONSIVE DESIGN MEDIA QUERIES */
/* =================================== */

@media (max-width: 991.98px) {
    .navbar-collapse {
        padding: 15px 0;
    }
    .navbar-nav .nav-link {
        padding: 10px 0;
    }
    .hero-title {
        font-size: 34px;
    }
    .hero-image-container {
        width: 320px;
        height: 320px;
        margin-top: 30px;
    }
}

@media (max-width: 767.98px) {
    /* Responsive Mobile Sidebar Top Header */
    .sidebar {
        min-height: auto !important;
        height: auto !important;
        padding: 15px 20px !important;
        position: relative !important;
        top: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: wrap !important;
        border-bottom: 1px solid #fce4ec;
        box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    }

    .logo {
        margin-bottom: 0 !important;
        font-size: 20px !important;
    }

    .menu {
        display: flex !important;
        gap: 6px !important;
        margin: 0 !important;
        align-items: center !important;
    }

    .menu li {
        margin: 0 !important;
    }

    .menu li a {
        font-size: 13px !important;
        padding: 5px 10px !important;
        border-radius: 8px;
    }

    .menu li a:hover {
        transform: none !important;
    }

    .menu li.active {
        padding: 5px 12px !important;
        border-radius: 20px !important;
    }

    /* Content Layout Padding */
    .col-md-9.p-5 {
        padding: 20px 15px !important;
    }

    .form-card {
        padding: 20px !important;
        border-radius: 16px !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    /* Hero section for mobile */
    .hero-section {
        padding: 30px 0 !important;
        text-align: center;
    }

    .hero-title {
        font-size: 26px !important;
        line-height: 1.3;
    }

    .hero-desc {
        margin: 15px auto !important;
        font-size: 14px;
    }

    .hero-image-container {
        width: 250px !important;
        height: 250px !important;
        max-width: 75vw !important;
        max-height: 75vw !important;
        margin: 25px auto !important;
        border-width: 6px !important;
    }

    /* Step indicator spacing */
    .step span {
        width: 28px !important;
        height: 28px !important;
        line-height: 28px !important;
        font-size: 12px !important;
        margin-right: 6px !important;
    }

    /* Buttons */
    .btn-pink, .btn-outline-pink {
        padding: 10px 20px !important;
        font-size: 14px !important;
    }

    /* Table adjustments */
    .table-responsive {
        border-radius: 12px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .table th, .table td {
        white-space: nowrap;
        font-size: 13px;
        padding: 10px 12px;
    }
}

@media (max-width: 480px) {
    .sidebar {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 10px;
    }

    .menu {
        width: 100% !important;
        justify-content: flex-start !important;
    }

    .hero-title {
        font-size: 22px !important;
    }

    .hero-image-container {
        width: 200px !important;
        height: 200px !important;
    }
}

/* PRINT MEDIA STYLES */
@media print {
    .no-print {
        display: none !important;
    }
    .col-md-9 {
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    body {
        background: white !important;
    }
    .form-card {
        box-shadow: none !important;
        border: none !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
}