/* Miscellaneous Styles */

/* Content wrapper */
.content-wrapper {
    min-height: 100vh;
    background-color: #fff;
    padding-top: 60px;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.wrapper > .content-wrapper {
    flex: 1;
}

/* Header styles */
.main-header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.navbar {
    min-height: 50px;
    margin-bottom: 0;
    border-radius: 0;
    background-color: #131926 !important;
    border: none;
}

.navbar-brand {
    padding: 10px;
}

.navbar-brand img {
    height: 50px;
    width: auto;
}

.navbar-header {
    background-color: #131926;
}

.navbar-toggle {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar-toggle:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.navbar-toggle .icon-bar {
    background-color: #fff;
}

/* Navbar menu */
.ul-nya {
    margin-right: 10px;
}

.link {
    color: #fff !important;
    transition: color 0.3s ease;
}

.link:hover {
    color: #FFA500 !important;
}

.dropdown-menu {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.dropdown-menu li a {
    color: #333;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: #f5f5f5;
    color: #8B0000;
}

.dropdown-menu .divider {
    margin: 5px 0;
}

/* Footer styles */
.main-footer {
    margin-top: auto;
    background-color: #1a1a1a;
    color: #fff;
    padding: 30px 0;
}

.main-footer a {
    color: #20c997;
    text-decoration: none;
}

.main-footer a:hover {
    text-decoration: underline;
}

.main-footer .text-putih {
    color: #fff;
}

.main-footer table {
    margin: 0;
}

.main-footer table td {
    padding: 0;
}

.main-footer .btn-social {
    display: inline-block;
    padding: 8px 15px;
    margin: 5px;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    font-size: 12px;
}

.main-footer .btn-facebook {
    background-color: #3b5998;
}

.main-footer .btn-instagram {
    background-color: #E1306C;
}

.main-footer .btn-youtube {
    background-color: #FF0000;
}

.main-footer .btn-tiktok {
    background-color: #25F4EE;
    color: #000;
}

.main-footer .btn-social:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* Button styles */
.btn {
    transition: all 0.3s ease;
    border-radius: 5px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.btn-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.btn-lg {
    padding: 12px 25px;
    font-size: 16px;
}

/* Color utilities */
.bg-maroon {
    background-color: #8B0000 !important;
}

.bg-olive {
    background-color: #556B2F !important;
}

.bg-orange {
    background-color: #FF8C00 !important;
}

.bg-navy {
    background-color: #000080 !important;
}

.text-maroon {
    color: #8B0000 !important;
}

.text-olive {
    color: #556B2F !important;
}

.text-orange {
    color: #FF8C00 !important;
}

.text-navy {
    color: #000080 !important;
}

.text-white,
.text-putih {
    color: #fff !important;
}

.text-teal {
    color: #20c997 !important;
}

/* Animation utilities */
.wow {
    visibility: hidden;
    animation-duration: 1s;
}

.wow.slideInLeft {
    animation-name: slideInLeft;
}

.wow.slideInRight {
    animation-name: slideInRight;
}

.wow.fadeInDown {
    animation-name: fadeInDown;
}

.wow.fadeInUp {
    animation-name: fadeInUp;
}

/* Responsive utilities */
@media (max-width: 768px) {
    .content-wrapper {
        padding-top: 50px;
    }

    .navbar-brand {
        padding: 5px;
    }

    .navbar-brand img {
        height: 40px;
    }

    .no-padding {
        padding: 0 !important;
    }
}

/* Service boxes */
.serviceBox {
    padding: 25px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.serviceBox:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.serviceBox.red {
    border-top: 3px solid #E74C3C;
}

.serviceBox.darkblue {
    border-top: 3px solid #2C3E50;
}

.serviceBox.yellow {
    border-top: 3px solid #F39C12;
}

.service-icon {
    font-size: 40px;
    color: #8B0000;
    margin-bottom: 15px;
}

.serviceBox.red .service-icon {
    color: #E74C3C;
}

.serviceBox.darkblue .service-icon {
    color: #2C3E50;
}

.serviceBox.yellow .service-icon {
    color: #F39C12;
}

.serviceBox .title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.serviceBox .description {
    font-size: 13px;
    color: #666;
    flex-grow: 1;
    line-height: 1.6;
}

/* Quick links */
.men-icon {
    text-align: center;
    padding: 20px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 20px;
}

.men-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.men-icon h4 {
    font-size: 16px;
    font-weight: bold;
    margin: 10px 0 5px 0;
}

.men-icon p {
    font-size: 13px;
    margin: 0;
}

.circle-icon {
    display: inline-block;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    line-height: 70px;
    text-align: center;
    font-size: 28px;
    color: #fff;
    margin-bottom: 15px;
}

/* Section styles */
.belang {
    background-color: #f5f5f5;
}

.kategori-img {
    padding: 20px;
    background-color: #fff;
    margin-bottom: 20px;
}

.p-judul {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.triangle-down {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-top: 30px solid #fff;
    margin: 0 auto -1px auto;
}

.isi {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

/* Video box */
.yvideo-box {
    background-color: #1d2d40;
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.yvideo-box iframe {
    border-radius: 5px;
}

/* Container adjustments */
.container {
    max-width: 1200px;
    margin: 0 auto;
}

.no-padding {
    padding: 0 !important;
}
