:root {
    --primary-blue: #1A4A82;
    --accent-orange: #FB4729;
    --white: #ffffff;
    --light-gray: #f4f4f4;
    --dark-text: #333;
}

html {
    scroll-behavior: smooth; /* Membuat efek meluncur halus saat menu diklik */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    overflow-x: hidden;
}

/* --- Top Header --- */
.top-header {
    background-color: #1A4A82;
    padding: 10px 0;
    border-bottom: 1px solid #eeeeee;
    width: 100%;
}

.top-container {
    display: flex;
    justify-content: space-between !important;
    align-items: center;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.top-info span {
    margin-right: 20px;
    color: #FFFFFF;
}

.top-info,
.top-social,
i {
    color: var(--accent-orange);
    margin-right: 5px;
}

.top-social span {
    color: #FFFFFF;
    margin-left: 15px;
    text-decoration: none;
    transition: 0.3s;
}

.top-social a:hover {
    color: var(--accent-orange);
}

@media screen and (max-width: 768px) {
    .top-header {
        display: none;
    }
}

/* --- Navigation --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    padding: 20px 7%;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.navbar.scrolled {
    padding: 25px 6%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-container-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 45px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.navbar.scrolled .logo-img {
    height: 38px;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li a {
    color: #003366;
    text-decoration: none;
    padding: 10px 15px;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.nav-links li a:hover {
    color: var(--accent-orange);
}

.burger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--primary-blue);
    margin: 5px;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* --- Hero Slider --- */
.hero {
    position: relative;
    height: 90vh;
    width: 100%;
    overflow: hidden;
    background-color: #000;
}

.slider {
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transform: scale(1.1);
    transition: transform 6s ease;
}

.slide.active .slide-bg {
    transform: scale(1);
}

.container {
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    position: relative;
    z-index: 5;
}

.hero-content {
    text-align: left;
    max-width: 750px;
    color: white;
    margin-left: 0;
}

.title-wrapper {
    display: flex;
    align-items: stretch;
    margin-bottom: 20px;
}

.accent-line {
    width: 6px;
    background-color: var(--accent-orange);
    margin-right: 25px;
    display: block;
}

.hero-content h1 {
    font-size: 4.8rem;
    line-height: 1.1;
    font-weight: 800;
    margin: 0;
}

.hero-content p {
    font-size: 1.25rem;
    color: #e0e0e0;
    margin-bottom: 40px;
}

.anim-text {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.slide.active .anim-text {
    opacity: 1;
    transform: translateY(0);
}

.slide.active h1.anim-text {
    transition-delay: 0.4s;
}

.slide.active p.anim-text {
    transition-delay: 0.6s;
}

.slide.active .btn-group.anim-text {
    transition-delay: 0.8s;
}

.btn-group {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 35px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.btn-primary {
    background: var(--accent-orange);
    color: white;
    border: 2px solid var(--accent-orange);
}

.btn-primary:hover {
    background: transparent;
    color: var(--accent-orange);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-blue);
}

/* --- Hero Slider Navigation --- */
.slider-nav-vertical {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.2);
    padding: 30px 15px;
    border-radius: 8px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.nav-number {
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
    font-weight: 700;
    transition: 0.3s;
}

.nav-line {
    width: 2px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    margin-top: 5px;
    transition: 0.5s;
}

.nav-item.active .nav-number {
    color: var(--accent-orange);
    transform: scale(1.2);
}

.nav-item.active .nav-line {
    background: var(--accent-orange);
    height: 60px;
}

/* --- About Section --- */
.about-section {
    padding: 120px 0;
    background-color: #ffffff;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-tag {
    color: var(--accent-orange);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
}

.about-title {
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.about-title span {
    color: var(--accent-orange);
}

.about-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}

.about-stats {
    margin-bottom: 40px;
}

.stat-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.stat-icon {
    font-size: 24px;
    color: var(--accent-orange);
    background: #fff8f0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    flex-shrink: 0;
}

.stat-text h3 {
    font-size: 18px;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.stat-text p {
    font-size: 14px;
    color: #777;
}

.about-image-wrapper {
    position: relative;
}

.image-box {
    position: relative;
    padding-left: 20px;
}

.main-about-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 20px 20px 0px var(--primary-blue);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -20px;
    background: var(--accent-orange);
    color: white;
    padding: 25px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 10px 20px rgba(243, 156, 18, 0.3);
}

.badge-num {
    display: block;
    font-size: 24px;
    font-weight: 800;
}

.badge-text {
    font-size: 12px;
    letter-spacing: 1px;
}

.experience-badge i {
    color: white;
    font-size: 50px;
    margin-bottom: 10px;
}

@media screen and (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-title {
        font-size: 2.2rem;
    }

    .about-image-wrapper {
        order: -1;
    }
}

/* --- Partners Logo Trail --- */
.partners-section {
    padding: 60px 0;
    background-color: #ffffff;
    overflow: hidden;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.partners-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.partners-track {
    display: flex;
    width: calc(200px * 20); 
    animation: scrollContinuous 35s linear infinite;
}

.partner-logo {
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: 0.3s;
    padding: 0 40px;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-logo img {
    max-height: 80px;
    max-width: 100%;
    object-fit: contain;
}

.partners-tag {
    text-align: center;
    font-size: 24px;
    color: var(--primary-blue);
    margin-bottom: 50px;
    font-weight: 800;
    letter-spacing: 1px;
}

@keyframes scrollContinuous {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% + 100vw));
    }
}

@media screen and (max-width: 768px) {
    .partners-track {
        width: calc(140px * 20);
        animation: scrollContinuousMobile 25s linear infinite;
    }
    
    .partner-logo {
        width: 140px;
        padding: 0 15px;
    }

    .partner-logo img {
        max-height: 35px;
    }

    @keyframes scrollContinuousMobile {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-100% + 100vw));
        }
    }
}

/* --- Vision & Mission Section --- */
.vision-mission-section {
    background-color: var(--primary-blue);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    box-sizing: border-box;
}

#vision-mission .container {
    display: block;
}

.vm-top-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.vm-header-side {
    text-align: left;
}

.vm-header-side .section-title {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
}

.vm-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
}

.vision-card {
    background: var(--accent-orange);
    color: var(--white);
    padding: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.vision-icon {
    font-size: 60px;
    flex-shrink: 0;
}

.vision-icon i {
    color: var(--white) !important;
}

.vision-text h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.vision-text p {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.95;
}

.mission-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    width: 100%;
}

.mission-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-orange);
}

.mission-number {
    font-size: 45px;
    font-weight: 900;
    color: rgba(26, 74, 130, 0.10);
    position: absolute;
    top: 10px;
    right: 20px;
    transition: 0.3s;
}

.mission-card:hover .mission-number {
    color: rgba(251, 71, 41, 1);
    transform: scale(1.1);
}

.mission-card h3 {
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-size: 18px;
    position: relative;
}

.mission-card p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

@media screen and (max-width: 992px) {
    .vm-top-row {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .vm-header-side {
        text-align: center;
    }

    .vision-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
}

/* --- Services Section --- */
#services.container {
    display: block !important;
    padding: 120px 0;
    max-width: 1400px;
    margin: 0 auto;
    background-color: var(--white);
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
    width: 100%;
}

.section-header-center .section-tag {
    display: block;
    color: var(--accent-orange);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-header-center .section-title {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--primary-blue);
    margin-bottom: 20px;
    font-weight: 800;
}

.title-line-center {
    width: 70px;
    height: 5px;
    background: var(--accent-orange);
    margin: 0 auto;
}

.services-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-img-card {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
    cursor: pointer;
}

.card-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 74, 130, 0.9) 20%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
    transition: all 0.5s ease;
}

.card-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    width: 100%;
    transform: translateY(50px);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-content h3 {
    font-size: 26px;
    margin-bottom: 12px;
    font-weight: 700;
}

.card-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.8;
    transition: opacity 0.5s ease;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-selengkapnya {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--white);
    color: var(--dark-text);
    border: 2px solid var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    font-size: 14px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.btn-selengkapnya:hover {
    background-color: transparent !important;
    color: var(--white) !important;
    border-color: var(--white) !important;
}

.service-img-card:hover .card-bg-img {
    transform: scale(1.1);
}

.service-img-card:hover .card-overlay {
    background: linear-gradient(to top, rgba(251, 71, 41, 0.9) 10%, rgba(26, 74, 130, 0.3) 100%);
}

.service-img-card:hover .card-content {
    transform: translateY(0);
}

.service-img-card:hover .card-content p {
    opacity: 1;
}

.service-img-card:hover .btn-selengkapnya {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

@media screen and (max-width: 992px) {
    .services-image-grid {
        grid-template-columns: 1fr;
    }

    .service-img-card {
        height: 350px;
    }

    .card-content {
        transform: translateY(0);
    }

    .btn-selengkapnya {
        opacity: 1;
        transform: translateY(0);
        margin-top: 10px;
    }
}

/* --- Catalog Section --- */
.catalog-section {
    padding: 100px 0;
    background-color: var(--white);
}

#catalog.catalog-section .catalog-container {
    display: block !important;
    max-width: 1400px;
    margin: 0 auto;
    width: 90%;
}

.catalog-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    width: 100%;
}

.catalog-title-block {
    text-align: left;
}

.catalog-title-block .section-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    font-weight: 800;
    margin-top: 5px;
}

.title-line-left {
    width: 60px;
    height: 4px;
    background-color: var(--accent-orange);
    margin-top: 15px;
    border-radius: 2px;
}

.catalog-nav-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 5px;
}

.catalog-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    background-color: var(--white);
    color: var(--primary-blue);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.catalog-btn i {
    margin: 0 !important;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.catalog-btn:hover {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.catalog-btn:hover i {
    color: var(--white) !important;
}

.catalog-slider-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 10px 5px;
}

.product-catalog-grid {
    display: flex;
    gap: 30px;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.product-item-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    padding: 12px;
    border: 2px solid transparent;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                border-color 0.4s ease,
                box-shadow 0.4s ease;
    flex: 0 0 calc((100% - 60px) / 3); 
    box-sizing: border-box;
}

.product-item-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-blue);
    box-shadow: 0 12px 24px rgba(26, 74, 130, 0.1);
}

.product-img-box {
    width: 100%;
    height: 250px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    background-color: #fcfcfc;
}

.product-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-item-card:hover .product-img-box img {
    transform: scale(1.12);
}

@media screen and (max-width: 992px) {
    .product-catalog-grid {
        gap: 20px;
    }
    .product-item-card {
        flex: 0 0 calc((100% - 20px) / 2);
    }
    .product-img-box {
        height: 200px;
    }
}

@media screen and (max-width: 576px) {
    .catalog-header-wrapper {
        flex-direction: row;
        align-items: flex-end;
    }
    .catalog-title-block .section-title {
        font-size: 2rem;
    }
    .product-item-card {
        flex: 0 0 100%;
    }
    .catalog-btn {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}

/* --- Gallery Section --- */
.gallery-section {
    padding: 120px 0;
    background-color: var(--primary-blue);
}

#galeri.gallery-section .gallery-container {
    display: block !important;
    max-width: 1400px;
    margin: 0 auto;
    width: 90%;
}

#galeri .section-header-center .section-title {
    color: var(--white);
}

.gallery-regular-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-item {
    position: relative;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(251, 71, 41, 0.95) 0%, rgba(26, 74, 130, 0.4) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.gallery-item-text {
    text-align: center;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-item-text h3 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.gallery-item-text span {
    color: #ffd8d1;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-item-text {
    transform: translateY(0);
}

@media screen and (max-width: 992px) {
    .gallery-regular-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .gallery-item {
        height: 240px;
    }
}

@media screen and (max-width: 576px) {
    .gallery-regular-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 250px;
    }

    .gallery-item-overlay {
        opacity: 1;
        background: rgba(26, 74, 130, 0.75);
    }

    .gallery-item-text {
        transform: translateY(0);
    }
}

/* --- Footer Section --- */
.main-footer {
    background-color: #0b1a2d;
    color: #94a3b8;
    padding: 80px 0 0 0;
    font-size: 14px;
    border-top: 4px solid var(--accent-orange);
}

.main-footer .footer-container {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
    width: 90%;
    padding-bottom: 60px;
}

.footer-column h3 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    text-align: left;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-orange);
    border-radius: 2px;
}

.brand-info {
    text-align: left;
}

.brand-info .footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.brand-info .footer-desc {
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.04);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-socials a i {
    color: var(--white) !important;
    margin: 0 !important;
    font-size: 14px;
}

.footer-socials a:hover {
    background-color: var(--accent-orange);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(251, 71, 41, 0.3);
}

.footer-links {
    text-align: left;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list li {
    margin-bottom: 12px;
}

.footer-nav-list li a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-nav-list li a i {
    font-size: 10px;
    margin-right: 8px;
    color: #64748b !important;
    transition: transform 0.3s ease;
}

.footer-nav-list li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-nav-list li a:hover i {
    color: var(--accent-orange) !important;
}

.footer-contact {
    text-align: left;
}

.contact-item-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
}

.contact-item-box .c-icon i {
    color: var(--accent-orange) !important;
    font-size: 16px;
    margin-top: 3px;
    width: 16px;
    text-align: center;
}

.contact-item-box .c-text {
    color: #94a3b8;
    line-height: 1.5;
}

.footer-bottom {
    background-color: #06101e;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-container {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 90%;
}

.footer-bottom .copy {
    color: #64748b;
    margin: 0;
}

.footer-bottom .design-by {
    color: #475569;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

@media screen and (max-width: 992px) {
    .main-footer {
        padding: 60px 0 0 0;
    }

    .main-footer .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 40px;
    }
}

@media screen and (max-width: 576px) {
    .footer-bottom-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* --- Responsive Mobile & Navigation --- */
@media screen and (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .slider-nav-vertical {
        display: none;
    }

    .btn-group {
        flex-direction: column;
    }

    .navbar {
        padding: 25px;
    }

    .burger {
        display: block;
    }

    .nav-links {
        position: fixed;
        right: 0;
        top: 0;
        height: 100vh;
        background: var(--white);
        width: 70%;
        max-width: 300px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 30px 30px 30px;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .nav-links li {
        width: 100%;
        margin: 10px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-links li a {
        display: block;
        width: 100%;
        padding: 12px 0;
        font-size: 16px;
        color: var(--primary-blue);
    }

    .nav-active {
        transform: translateX(0%);
    }

    .toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
        background-color: var(--accent-orange);
    }

    .toggle .line2 {
        opacity: 0;
    }

    .toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
        background-color: var(--accent-orange);
    }
}

.nav-active {
    transform: translateX(0%);
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* --- Scroll Animation Reveals --- */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal-left.active,
.reveal-right.active,
.reveal-up.active {
    opacity: 1;
    transform: translate(0, 0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

/* --- Pop-up Modal Jasa / Layanan (Sistem Scroll & Batasan Mobile) --- */
/* --- Pop-up Modal Jasa / Layanan (Sticky Header & Scroll Body) --- */
.modal {
    display: none; 
    position: fixed; 
    z-index: 2000; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(11, 26, 45, 0);
    backdrop-filter: blur(0px);
    align-items: center;
    justify-content: center;
    transition: background-color 0.4s ease, backdrop-filter 0.4s ease;
    padding: 20px;
}

.modal.show {
    display: flex;
    background-color: rgba(11, 26, 45, 0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    padding: 30px; /* Padding merata untuk seluruh kontainer */
    border-radius: 16px;
    width: 100%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-top: 5px solid var(--accent-orange);
    
    max-height: 85vh;
    display: flex;
    flex-direction: column; /* Menyusun header dan body secara vertikal */
    
    opacity: 0;
    transform: scale(0.85) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease-in-out;
}

.modal.show .modal-content {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* --- BAGIAN ATAS: Terkunci/Sticky --- */
.modal-header {
    position: relative;
    width: 100%;
    padding-right: 40px; /* Beri ruang di kanan agar judul tidak menabrak tombol X */
    flex-shrink: 0; /* Mencegah header mengecil/terkompresi */
}

.modal-header h2 {
    color: var(--primary-blue);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
}

.modal-line {
    width: 50px;
    height: 4px;
    background-color: var(--accent-orange);
    margin-bottom: 20px;
    border-radius: 2px;
}

.close-modal {
    position: absolute;
    right: 0;
    top: -5px; /* Menyelaraskan posisi vertikal dengan judul */
    color: #a0aec0;
    font-size: 35px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    line-height: 1;
}

.close-modal:hover {
    color: var(--accent-orange);
    transform: rotate(90deg);
}

/* --- BAGIAN BAWAH: Area Scroll --- */
.modal-body {
    overflow-y: auto; /* Hanya area ini yang bisa di-scroll */
    padding-right: 10px; /* Jarak aman dari scrollbar */
    flex-grow: 1; /* Mengambil sisa ruang tinggi modal */
}

/* Kustomisasi Scrollbar Modal-Body */
.modal-body::-webkit-scrollbar {
    width: 6px;
}
.modal-body::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}
.modal-body::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}
.modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--accent-orange);
}

.modal-body p {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.7;
    white-space: pre-line;
}

/* --- Pengaturan Gambar --- */
.modal-img-container {
    width: 100%;
    height: auto;
    max-height: 240px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    background-color: #f8fafc;
}

.modal-img-container img {
    width: 100%;
    height: 100%;
    max-height: 240px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* --- RESPONSIVE MOBILE (HP) --- */
@media screen and (max-width: 576px) {
    .modal-content {
        padding: 20px;
        max-height: 80vh;
    }
    
    .modal-header {
        padding-right: 35px;
    }

    .modal-header h2 {
        font-size: 20px;
    }
    
    .close-modal {
        font-size: 30px;
        top: -3px;
    }
    
    .modal-img-container {
        max-height: 160px;
    }
    
    .modal-img-container img {
        max-height: 160px;
    }
    
    .modal-body p {
        font-size: 14px;
    }
}