/* Navbar */
.navbar-custom {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 12px 0;
}

.navbar-custom .navbar-brand {
    color: var(--primary-color) !important;
    font-weight: 700;
}

.navbar-custom .nav-link {
    color: var(--primary-color) !important;
    font-weight: 500;
}

/* Hero */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../images/service_detail.png") no-repeat center center/cover;
    /* padding: 100px 0; */
    min-height: 378px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.title_bg {
    /* background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../images/service_detail.png); */
    color: #ffffff;
    width: fit-content;
    background-position: center center;
    background-size: cover;
}

.breadcrumb-mini {
    color: #ffffff !important;
    font-size: 14px;
    opacity: 0.8;
}

.page-title {
    color: #ffffff;
    font-weight: 800;
    font-size: 48px;
    margin-top: 12px;
}

/* Overview */
.overview {
    padding: 64px 0;
}

.section-title {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 18px;
}

.muted {
    color: #383E42;
    font-size: 14px;
    line-height: 1.8;
}

/* Included / Accordion */
.included {
    padding: 60px 0;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0 !important;
    background-color: transparent;
}

.accordion-button {
    padding: 20px 0;
    font-weight: 700;
    color: #383E42;
    font-size: 16px;
    background: transparent;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: #383E42;
    background: transparent;
}

.accordion-body {
    padding: 0 0 20px 0;
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
}

.included-img-container {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.included-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 24px;
    }
}

/* Gallery Slider */
.gallery-section {
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
}

.gallery-title {
    text-align: center;
    color: #383E42;
    font-weight: 800;
    font-size: 36px;
    margin-bottom: 50px;
}

.gallery-viewport {
    position: relative;
    overflow: visible;
    width: 100%;
}

.gallery-track {
    display: flex;
    align-items: center;
    gap: 120px;
    transition: transform 500ms cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 20px 0;
}

.gallery-item {
    position: relative;
    flex: 0 0 auto;
    width: 480px;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    border: none;
    transform-origin: center center;
    transform: scale(0.78);
    transition: transform 500ms cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 500ms ease;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.65);
    transition: opacity 500ms ease;
    pointer-events: none;
    z-index: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item.active {
    transform: scale(1.12);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.gallery-item.active::after {
    opacity: 0;
}

.gallery-nav {
    display: none;
}

.gallery-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 200ms;
}

.gallery-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.accordion-button::after {
    background-image: url("../images/arrow_black.png") !important;
    background-size: 9px !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    transition: transform 0.2s ease;
    transform: rotate(0deg) !important;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-90deg) !important;
}