html,
body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

body>.container {
    flex: 1;
}

footer {
    margin-top: auto;
}

.cursor-pointer {
    cursor: pointer;
}

.cursor-nodrop {
    cursor: no-drop !important;
}

.cursor-default {
    cursor: default !important;
}

button:disabled {
    cursor: no-drop !important;
}

.text-bold {
    font-weight: bold;
}

.nowrap {
    white-space: nowrap;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #20BA5A;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
    transform: scale(1.1);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-float,
.whatsapp-float:hover,
.whatsapp-float:focus {
    color: white !important;
    text-decoration: none !important;
}

.nav-link {
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #0d6efd;
    font-weight: 500;
}

.nav-link.active {
    color: #0d6efd;
    font-weight: bold;
    /* border-bottom: 2px solid #0d6efd; */
}

/* class section-title tampil lebih menarik */
.section-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #0d6efd;
}

body.body-marketing {
    background: radial-gradient(ellipse at center, #ffffff 0%, #ebeef3 50%, #d4e0ec 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

header.navbar {
    background: linear-gradient(135deg, #0b4783 0%, #1484b6 100%) !important;
    box-shadow: 0 2px 8px rgba(11, 71, 131, 0.15);
}

header.navbar.navbar-transparent {
    background: linear-gradient(135deg, rgba(11, 71, 131, 0.95) 0%, rgba(20, 132, 182, 0.95) 100%) !important;
    backdrop-filter: blur(10px);
}

header.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(120deg, rgba(20, 132, 182, 0.05) 0%, rgba(53, 187, 224, 0.05) 100%);
    pointer-events: none;
    z-index: -1;
}

section.section.bg-light {
    background: linear-gradient(180deg, #f8f9fa 0%, #ebeef3 50%, #f8f9fa 100%) !important;
}

.btn-primary {
    background: linear-gradient(135deg, #1484b6 0%, #35bbe0 100%) !important;
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0b4783 0%, #1484b6 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 132, 182, 0.3);
}

@media (max-width: 991px) {

    /* Navbar solid background */
    header.navbar {
        background: linear-gradient(135deg, #0b4783 0%, #1484b6 100%) !important;
        position: sticky;
        top: 0;
        z-index: 1030;
    }

    /* Menu collapse - SOLID BACKGROUND (tidak transparan) */
    header.navbar .navbar-collapse {
        background: linear-gradient(135deg, #0b4783 0%, #1484b6 100%) !important;
        padding: 20px;
        margin: 15px -15px 0 -15px;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 8px 24px rgba(11, 71, 131, 0.4);
        z-index: 1031;
    }

    /* Nav links styling */
    header.navbar .navbar-nav .nav-link {
        padding: 14px 16px !important;
        border-radius: 8px;
    }

    header.navbar .navbar-nav .nav-link:hover {
        background: rgba(255, 255, 255, 0.2) !important;
    }

    /* Button full width */
    header.navbar .btn-info {
        width: 100%;
        margin-top: 15px;
    }
}