/* ===== Navigation Bar ===== */
.main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    z-index: 9999;
    transition: all 0.3s ease;
}

.main-navbar .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.navbar-content {
    display: flex;
    align-items: right;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.navbar-brand {
    flex-shrink: 0;
}

.navbar-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 70px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e3a8a;
    letter-spacing: -0.5px;
}

.logo-highlight {
    color: #f59e0b;
}

/* Desktop Menu */
.navbar-menu {
    flex: 1;
    display: flex;
    justify-content: right;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.nav-item {
    position: relative;
}

/* PENTING: Override Bootstrap dropdown jika ada */
.nav-item.dropdown {
    position: relative !important;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: #2c3e50;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0;
    cursor: pointer;
    position: relative;
    border-bottom: 3px solid transparent;
}

.nav-link:hover {
    color: #1e3a8a;
}

.nav-link.active {
    color: #1e3a8a;
    border-bottom: 3px solid #1e3a8a;
}

.nav-link i {
    margin-left: 3px;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.nav-item.dropdown {
    position: relative !important;
}

/* Invisible bridge to prevent dropdown from closing */
.nav-item.dropdown::after {
    content: '' !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    height: 15px !important;
    background: transparent !important;
    display: block !important;
}

.nav-item.dropdown .dropdown-menu {
    position: absolute !important;
    top: calc(100% + 5px) !important;
    left: 0 !important;
    background: #fff !important;
    min-width: 220px !important;
    border-radius: 8px !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
    list-style: none !important;
    padding: 10px 0 !important;
    margin: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-10px) !important;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease !important;
    z-index: 10000 !important;
    pointer-events: none !important;
    display: block !important;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
    transition-delay: 0s !important;
}

.dropdown-menu li {
    padding: 0 !important;
    list-style: none !important;
}

.dropdown-menu a {
    display: block !important;
    padding: 10px 20px !important;
    color: #2c3e50 !important;
    font-size: 0.9rem !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

.dropdown-menu a:hover {
    background: rgba(30, 58, 138, 0.05) !important;
    color: #1e3a8a !important;
    padding-left: 25px !important;
}

.dropdown-menu a.active {
    background: rgba(30, 58, 138, 0.1) !important;
    color: #1e3a8a !important;
    font-weight: 600 !important;
    border-left: 3px solid #1e3a8a !important;
}

/* Keep dropdown open when hovering over it */
.dropdown-menu:hover {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

/* CTA Button */
.navbar-actions {
    display: flex;
    align-items: center;
}

.btn-cta {
    padding: 12px 28px;
    background: #fcbe5f;
    color: #000;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(252, 190, 95, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 190, 95, 0.4);
    color: #000;
    background: #fdb94d;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    align-self: center;
    margin-top: 8px;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: #2c3e50;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    z-index: 10001;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
}

.mobile-logo img {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.mobile-logo .logo-text {
    font-size: 1.5rem;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #2c3e50;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(0, 0, 0, 0.05);
}

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

.mobile-nav-links > li {
    border-bottom: 1px solid #e9ecef;
}

.mobile-nav-links > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    color: #2c3e50;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-nav-links > li > a:hover {
    background: rgba(30, 58, 138, 0.05);
    color: #1e3a8a;
}

.mobile-nav-links > li > a.active,
.mobile-nav-links .has-submenu.active > a {
    background: rgba(30, 58, 138, 0.1);
    color: #1e3a8a;
    font-weight: 600;
}

.mobile-nav-links .submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #f8f9fa;
}

.mobile-nav-links .has-submenu.active .submenu {
    max-height: 500px;
}

.mobile-nav-links .submenu a {
    display: block;
    padding: 12px 20px 12px 40px;
    color: #6c757d;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-nav-links .submenu a:hover {
    background: rgba(30, 58, 138, 0.05);
    color: #1e3a8a;
}

.mobile-nav-links .submenu a.active {
    background: rgba(30, 58, 138, 0.1);
    color: #1e3a8a;
    font-weight: 600;
    border-left: 3px solid #1e3a8a;
}

.mobile-cta {
    padding: 20px;
}

.mobile-cta .btn-cta {
    display: block;
    text-align: center;
}

/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive */
@media (max-width: 992px) {
    .navbar-menu,
    .navbar-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .navbar-content {
        height: 70px;
    }

    .main-navbar .container-fluid {
        padding: 0 20px;
    }
    
    .logo-img {
        height: 45px;
        max-width: 150px;
    }
    
    .hero-slider {
        margin-top: 70px !important;
    }
}

@media (max-width: 576px) {
    .logo-img {
        height: 40px;
        max-width: 120px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .navbar-content {
        height: 65px;
    }
    
    .hero-slider {
        margin-top: 65px !important;
    }
}

/* Add padding to hero slider to compensate for fixed navbar */
.hero-slider {
    margin-top: 80px !important;
    position: relative;
}

/* ===== Hero Slider ===== */
.hero-slider {
    position: relative;
    height: 650px;
    overflow: hidden;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    background-color: #3369b3;
}

.hero-slider .carousel,
.hero-slider .carousel-inner,
.hero-slider .carousel-item {
    height: 100%;
    width: 100%;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.5) 40%,
        rgba(0, 0, 0, 0.2) 70%,
        transparent 100%
    ); */
}

/* Caption positioned at bottom left like the reference image */
.slide-caption {
    position: absolute;
    bottom: 120px;
    left: 0;
    right: 0;
    z-index: 10;
    padding: 0 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.slide-content {
    max-width: 700px;
}

.slide-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.5);
    margin-bottom: 0.8rem;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.slide-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Carousel Controls - Larger and positioned like the reference */
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-slider .carousel-control-prev {
    left: 0;
}

.hero-slider .carousel-control-next {
    right: 0;
}

.hero-slider .carousel-control-prev:hover,
.hero-slider .carousel-control-next:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-slider .carousel-control-prev i,
.hero-slider .carousel-control-next i {
    font-size: 1.5rem;
    color: #fff;
    line-height: 1;
}

/* Carousel Indicators - Bottom center like the reference */
.hero-slider .carousel-indicators {
    bottom: 20px;
    margin-bottom: 0;
    z-index: 15;
}

.hero-slider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    opacity: 0.5;
    background: #fff;
    border: none;
    transition: all 0.3s ease;
}

.hero-slider .carousel-indicators button.active {
    opacity: 1;
    width: 12px;
    height: 12px;
    background: #fff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* ===== About Section ===== */
.about-section-wrapper {
    background: linear-gradient(135deg, #3369b3 0%, #3369b3 100%);
    padding: 0;
    position: relative;
}

.about-section {
    background: #fff;
    padding: 80px 0;
    position: relative;
    border-radius: 50px 50px 0 0;
}

.about-content {
    padding-right: 30px;
}

.about-label {
    display: inline-block;
    color: #6c757d;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-title-highlight {
    display: block;
    background: linear-gradient(135deg, #fcbe5f 0%, #fcbe5f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 800;
}

.about-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #495057;
    text-align: justify;
    margin-bottom: 0;
}

.about-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    text-align: center;
    padding: 40px;
    min-height: 100%;
    /* background: #f8f9fa;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
}

.about-logo {
    max-width: 65%;
    height: auto;
    max-height: 280px;
    object-fit: contain;
    margin-bottom: 20px;
}

.about-logo-placeholder {
    padding: 60px 20px;
    margin-bottom: 20px;
}

.about-logo-placeholder .logo-text {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e3a8a;
    letter-spacing: -1px;
}

.about-logo-placeholder .logo-highlight {
    color: #f59e0b;
}

.about-logo-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    line-height: 1.4;
}

/* Mobile CTA Button in About Section */
.about-cta-mobile {
    display: flex;
    justify-content: center;
    width: 100%;
}

.btn-cta-about {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    border: none;
    white-space: nowrap;
    text-align: center;
}

.btn-cta-about:hover {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
    color: #fff;
}

/* ===== Visi & Misi Section ===== */
.visi-misi-section {
    background: linear-gradient(135deg, #3369b3 0%, #3369b3 100%);
    padding: 80px 0;
    position: relative;
    color: #fff;
}

.visi-content {
    padding-right: 30px;
}

.visi-label {
    display: inline-block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.visi-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.visi-description {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
}

.misi-cards {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.misi-card {
    background: #fff;
    border: 3px solid #f59e0b;
    border-radius: 20px;
    padding: 22px 25px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    min-height: 120px; /* Membuat semua card sama tingginya */
    height: 100%; /* Mengikuti tinggi container */
}

.misi-card:hover {
    border-color: #f97316;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.25);
    transform: translateY(-3px);
}

.misi-icon {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    background: #fff;
    border: 2px solid #f9f8f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.misi-icon::before {
    content: '';
    position: absolute;
    width: 35px;
    height: 35px;
    border: 2px solid #fafaf9;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.misi-icon i {
    font-size: 1.5rem;
    color: #f59e0b;
    z-index: 1;
}

.misi-icon-img {
    width: 70px;
    /* height: 32px; */
    object-fit: contain;
    z-index: 1;
}

.misi-text {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #5a5a5a;
    margin: 0;
}

/* ===== Kolaborasi & Bisnis Section ===== */
.kolaborasi-bisnis-section-wrapper {
    background: #3369b3;
    padding: 0;
    position: relative;
}

.kolaborasi-bisnis-section {
    background: #fff;
    padding: 80px 0 100px;
    border-radius: 0 0 50px 50px;
}

.kolaborasi-bisnis-section .section-header {
    max-width: 700px;
    margin-bottom: 50px;
}

.kolaborasi-bisnis-section .section-label {
    display: block;
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.kolaborasi-bisnis-section .section-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.kolaborasi-bisnis-section .highlight-text {
    background: linear-gradient(135deg, #FCBE5F 0%, #FCBE5F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.kolaborasi-bisnis-section .normal-text {
    color: #303536;
    font-weight: 800;
    display: inline;
}

.kolaborasi-bisnis-section .section-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 0;
}

.kolaborasi-bisnis-section .section-description em {
    font-style: italic;
    color: #6c757d;
}

/* Kolaborasi Cards */
.kolaborasi-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 240px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    background: #000;
}

.kolaborasi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.kolaborasi-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.kolaborasi-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #1a1a1a;
}

.kolaborasi-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.kolaborasi-card:hover .kolaborasi-image {
    transform: scale(1.08);
}

.kolaborasi-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(0, 0, 0, 0.75) 35%,
        rgba(0, 0, 0, 0.4) 60%,
        rgba(0, 0, 0, 0.15) 80%,
        transparent 100%
    );
    padding: 25px 22px 22px;
    min-height: 140px;
    display: flex;
    align-items: flex-end;
    transition: all 0.35s ease;
}

.kolaborasi-card:hover .kolaborasi-overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.96) 0%,
        rgba(0, 0, 0, 0.85) 35%,
        rgba(0, 0, 0, 0.5) 60%,
        rgba(0, 0, 0, 0.2) 80%,
        transparent 100%
    );
}

.kolaborasi-content {
    position: relative;
    z-index: 5;
    width: 100%;
}

.kolaborasi-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
}

.kolaborasi-meta {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    font-weight: 400;
}

.kolaborasi-meta .meta-brand {
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-size: 0.75rem;
}

.kolaborasi-meta .meta-date {
    font-weight: 400;
    font-size: 0.8125rem;
}

/* Responsive Kolaborasi Cards */
@media (max-width: 992px) {
    .kolaborasi-card {
        height: 300px;
    }
    
    .kolaborasi-bisnis-section .section-main-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .kolaborasi-card {
        height: 280px;
    }
    
    .kolaborasi-title {
        font-size: 1.05rem;
    }
    
    .kolaborasi-bisnis-section .section-main-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .kolaborasi-card {
        height: 260px;
        border-radius: 24px;
    }
    
    .kolaborasi-overlay {
        padding: 20px 18px 18px;
        min-height: 120px;
    }
    
    .kolaborasi-title {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    
    .kolaborasi-meta {
        font-size: 0.75rem;
    }
    
    .kolaborasi-bisnis-section {
        padding: 60px 0 80px;
    }
    
    .kolaborasi-bisnis-section .section-main-title {
        font-size: 1.75rem;
    }
}

/* ===== Partners Section ===== */
.partners-section {
    background: linear-gradient(135deg, #3369b3 0%, #3369b3 100%);
    padding: 70px 0;
    text-align: center;
}

.partners-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    letter-spacing: 0.5px;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.partner-logo {
    background: #ffffff;
    border-radius: 24px;
    padding: 20px 25px;
    width: 133px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%);
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.partner-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #6c757d;
    font-size: 0.85rem;
    text-align: center;
}

.partner-placeholder i {
    font-size: 32px;
    color: #dee2e6;
}

/* Responsive Partners Section */
@media (max-width: 1200px) {
    .partners-grid {
        gap: 22px;
    }
    
    .partner-logo {
        width: 150px;
    }
}

@media (max-width: 992px) {
    .partners-title {
        font-size: 1.75rem;
        margin-bottom: 40px;
    }
    
    .partners-grid {
        gap: 20px;
    }
    
    .partner-logo {
        width: 140px;
        height: 80px;
        padding: 18px 22px;
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 60px 0;
    }
    
    .partners-title {
        font-size: 1.5rem;
        margin-bottom: 35px;
    }
    
    .partners-grid {
        gap: 18px;
    }
    
    .partner-logo {
        width: 120px;
        height: 70px;
        padding: 15px 18px;
        border-radius: 20px;
    }
}

@media (max-width: 576px) {
    .partners-section {
        padding: 50px 0;
    }
    
    .partners-title {
        font-size: 1.3rem;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .partners-grid {
        gap: 15px;
        padding: 0 15px;
    }
    
    .partner-logo {
        width: 100px;
        height: 60px;
        padding: 12px 15px;
        border-radius: 16px;
    }
    
    .partner-placeholder {
        font-size: 0.75rem;
    }
    
    .partner-placeholder i {
        font-size: 24px;
    }
}

/* ===== Footer Section ===== */
.main-footer {
    background: #ffffff;
    padding: 80px 0 0;
    color: #2c3e50;
    border-top: 1px solid #e9ecef;
}

.footer-logo-img {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    max-width: 280px;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    position: relative;
}

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

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #1a1a1a;
    transform: translateX(3px);
}

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

.footer-contact li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.footer-contact i {
    font-size: 24px;
    color: #1a1a1a;
    margin-top: 0;
    flex-shrink: 0;
}

.footer-contact span,
.footer-contact a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.7;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #1a1a1a;
}

.footer-bottom {
    background: #ffffff;
    padding: 25px 0;
    margin-top: 60px;
    border-top: 1px solid #e9ecef;
}

.copyright {
    font-size: 1rem;
    /* color: #2c3e50; */
    font-weight: 400;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .main-footer {
        padding: 60px 0 0;
    }
    
    .footer-title {
        font-size: 1.15rem;
        margin-bottom: 20px;
    }
    
    .footer-bottom {
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 40px 0 0;
    }
    
    .footer-logo-img {
        max-width: 160px;
    }
    
    .footer-title {
        font-size: 1.05rem;
        margin-bottom: 18px;
    }
    
    .footer-links li {
        margin-bottom: 12px;
    }
    
    .footer-links a {
        font-size: 0.95rem;
    }
    
    .footer-contact li {
        margin-bottom: 15px;
    }
    
    .footer-contact i {
        font-size: 20px;
    }
    
    .footer-contact span,
    .footer-contact a {
        font-size: 0.95rem;
    }
    
    .footer-bottom {
        margin-top: 40px;
        padding: 20px 0;
    }
    
    .copyright {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .main-footer {
        padding: 35px 0 0;
    }
    
    .footer-logo-img {
        max-width: 140px;
    }
    
    .footer-tagline {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .footer-contact li {
        margin-bottom: 12px;
        gap: 10px;
    }
    
    .footer-contact i {
        font-size: 18px;
    }
    
    .footer-contact span,
    .footer-contact a {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        margin-top: 30px;
        padding: 18px 0;
    }
    
    .copyright {
        font-size: 0.85rem;
    }
}

/* ===== Latest News Section ===== */
.latest-news {
    background: #f8f9fa;
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    position: relative;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, #696cff, #8c90ff);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    margin-top: 20px;
    color: #6c757d;
}

/* News Card */
.news-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.news-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.news-image a {
    display: block;
    height: 100%;
}

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

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(105, 108, 255, 0.95);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.news-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.75rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.meta-item i {
    font-size: 1.1rem;
}

.news-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    flex-grow: 0;
}

.news-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-title a:hover {
    color: #696cff;
}

.news-excerpt {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-footer {
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
    margin-top: auto;
}

.read-more {
    color: #696cff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #5558dd;
    gap: 8px;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-slider {
        height: 550px;
    }

    .slide-title {
        font-size: 2.8rem;
    }

    .slide-caption {
        padding: 0 50px;
        bottom: 35px;
    }

    .slide-content {
        max-width: 600px;
    }

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

    .about-title-highlight {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-slider {
        height: 500px;
    }

    .slide-title {
        font-size: 2.5rem;
    }

    .slide-description {
        font-size: 1rem;
    }

    .slide-caption {
        bottom: 35px;
        padding: 0 35px;
    }

    .slide-content {
        max-width: 500px;
    }

    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
        width: 60px;
        height: 60px;
    }

    .hero-slider .carousel-control-prev i,
    .hero-slider .carousel-control-next i {
        font-size: 2rem;
    }

    .about-section {
        padding: 60px 0;
    }

    .about-content {
        padding-right: 0;
    }

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

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

    .about-logo-wrapper {
        margin-top: 30px;
        align-items: center;
    }
    
    .kolaborasi-bisnis-section .section-main-title {
        font-size: 2rem;
    }
    
    .kolaborasi-card {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 450px;
    }
    
    .slide-image {
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    .slide-title {
        font-size: 2rem;
    }

    .slide-description {
        font-size: 0.95rem;
        margin-bottom: 0;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .slide-caption {
        bottom: 25px;
        padding: 0 25px;
    }

    .slide-content {
        max-width: 100%;
    }

    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
        width: 50px;
        height: 50px;
    }

    .hero-slider .carousel-control-prev i,
    .hero-slider .carousel-control-next i {
        font-size: 1.5rem;
    }

    .about-section {
        padding: 50px 0;
    }

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

    .about-title-highlight {
        font-size: 2rem;
    }

    .about-description {
        font-size: 0.95rem;
    }

    .about-logo {
        max-height: 220px;
    }

    .about-logo-subtitle {
        font-size: 1rem;
    }

    .misi-card {
        padding: 18px 20px;
    }

    .misi-icon {
        width: 50px;
        height: 50px;
    }

    .misi-icon::before {
        width: 32px;
        height: 32px;
    }

    .misi-icon i {
        font-size: 1.3rem;
    }

    .misi-text {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .latest-news {
        padding: 60px 0;
    }

    .news-image {
        height: 200px;
    }
    
    .kolaborasi-bisnis-section {
        padding: 60px 0;
    }
    
    .kolaborasi-bisnis-section .section-main-title {
        font-size: 1.75rem;
    }
    
    .kolaborasi-bisnis-section .section-description {
        font-size: 0.95rem;
    }
    
    .kolaborasi-card {
        height: 320px;
    }
    
    .kolaborasi-title {
        font-size: 1.1rem;
    }
    
    .kolaborasi-meta {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 400px;
    }
    
    .slide-image {
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        /* Prevent image distortion on small screens */
        min-height: 100%;
        width: 100%;
    }

    .slide-title {
        font-size: 1.75rem;
    }

    .slide-description {
        font-size: 0.9rem;
        -webkit-line-clamp: 2;
    }

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

    .about-title-highlight {
        font-size: 1.75rem;
    }

    .about-description {
        font-size: 0.9rem;
    }

    .about-logo-wrapper {
        padding: 30px 20px;
    }

    .about-logo {
        max-height: 188px;
    }

    .about-logo-placeholder .logo-text {
        font-size: 2.5rem;
    }

    .about-logo-subtitle {
        font-size: 0.95rem;
    }

    .misi-card {
        padding: 16px 18px;
    }

    .misi-icon {
        width: 45px;
        height: 45px;
    }

    .misi-icon::before {
        width: 28px;
        height: 28px;
    }

    .misi-icon i {
        font-size: 1.2rem;
    }

    .misi-text {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .slide-caption {
        bottom: 20px;
        padding: 0 15px;
    }

    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
        width: 45px;
        height: 45px;
    }

    .hero-slider .carousel-control-prev i,
    .hero-slider .carousel-control-next i {
        font-size: 1.25rem;
    }

    .hero-slider .carousel-indicators button {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
    
    .kolaborasi-bisnis-section {
        padding: 50px 0;
    }
    
    .kolaborasi-bisnis-section .section-main-title {
        font-size: 1.5rem;
    }
    
    .kolaborasi-bisnis-section .section-description {
        font-size: 0.9rem;
    }
    
    .kolaborasi-card {
        height: 280px;
    }
    
    .kolaborasi-title {
        font-size: 1rem;
    }
    
    .kolaborasi-meta {
        font-size: 0.8rem;
    }
    
    .kolaborasi-overlay {
        padding: 20px 18px 18px;
    }
}

/* Extra Small Devices - Optimize slider image for very small screens */
@media (max-width: 480px) {
    .hero-slider {
        height: 350px;
    }
    
    .slide-image {
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        object-fit: cover;
    }
    
    .slide-caption {
        bottom: 20px;
        padding: 0 20px;
    }
    
    .slide-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .slide-description {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
    }
    
    .hero-slider .carousel-control-prev,
    .hero-slider .carousel-control-next {
        width: 45px;
        height: 45px;
    }
    
    .hero-slider .carousel-control-prev i,
    .hero-slider .carousel-control-next i {
        font-size: 1.3rem;
    }
}
