/* Custom CSS untuk Company Profile Indoswiss International */

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #232241;
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    background: linear-gradient(135deg, #232241, #232241) !important;
    padding: 0.75rem 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    min-height: 70px;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: white !important;
}

.navbar-brand img {
    filter: brightness(1.1);
    height: 70px; /* sama seperti tinggi navbar */
    width: auto;
    object-fit: contain;
}

.nav-btn.btn-beranda {
    background: #ff000c;
    color: white !important;
    border: none;
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.nav-btn.btn-beranda:hover {
    background: #ff000c;
    transform: translateY(-2px);
    color: white !important;
}

.active-btn {
    background: #ff000c !important;
    color: white !important;
    border-radius: 25px;
    padding: 8px 20px;
}

.nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 8px;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover {
    color: #fbbf24 !important;
}

.navbar-nav {
    align-items: center;
}

.flag-icon {
    width: 24px;
    height: 16px;
    border-radius: 4px;
    object-fit: cover;
    display: block;
}




/*tombol ganti bahasa*/

    .language-dropdown .nav-link {
        padding: 5px 10px !important;
        display: flex;
        align-items: center;
        gap: 5px;
        text-decoration: none;
    }

    .language-dropdown .nav-link::after {
        margin-left: 5px;
        color: white;
    }

    .flag-icon {
        width: 20px;
        height: 15px;
        object-fit: cover;
        border-radius: 2px;
    }

    .language-dropdown .dropdown-menu {
        min-width: 100px;
        border-radius: 8px;
        border: 1px solid #ddd;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        padding: 5px 0;
    }

    .language-dropdown .dropdown-item {
        padding: 8px 15px;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px;
        transition: background-color 0.2s;
    }

    .language-dropdown .dropdown-item:hover {
        background-color: #f8f9fa;
    }

    .language-code {
        font-weight: 500;
        color: #333;
    }

.nav-item .nav-link {
    display: flex;
    align-items: center;
    padding: 0; /* Hilangkan padding default link */
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .navbar-nav {
        text-align: center;
        margin-top: 1rem;
    }

    .flag-icon {
        margin-top: 0.5rem;
    }

    .nav-btn.btn-beranda {
        margin-bottom: 0.5rem;
        display: inline-block;
        width: auto;
    }
}

/* Ensure navbar items are properly aligned */
.navbar-collapse {
    justify-content: flex-end;
}

.navbar-toggler {
    border: 1px solid rgba(255,255,255,0.3);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255,255,255,0.25);
}

/* Hero Section - Simple Slider */
.hero-section {
    margin-top: 70px; /* Account for fixed navbar */
    position: relative;
}

.hero-section .carousel-item {
    height: auto; /* biar menyesuaikan tinggi gambar */
    max-height: auto;
    overflow: hidden;
}

.hero-section .carousel-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

/* Carousel Controls Styling */
.carousel-control-prev,
.carousel-control-next {
    width: 8%;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 24px 24px;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
    background-color: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: 20px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: #ef4444;
    border-color: #ef4444;
    transform: scale(1.2);
}

.carousel-indicators button:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Fade transition effect (optional) */
.carousel-fade .carousel-item {
    opacity: 0;
    transition-duration: 0.6s;
    transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev {
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        margin-top: 60px;
    }

    .hero-section .carousel-item {
        height: 50vh;
        min-height: 400px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 12%;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 40px;
        height: 40px;
        background-size: 20px 20px;
    }

    .carousel-indicators button {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .hero-section .carousel-item {
        height: 40vh;
        min-height: 300px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 35px;
        height: 35px;
        background-size: 18px 18px;
    }
}



/* CTA Section - Siapa Indoswiss International */
.cta-section {
    background: linear-gradient(90deg, #ffffff, #ffffff);
    color: rgb(0, 0, 0);
    position: relative;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    margin-top: -20px; /* Overlay slightly with previous section */
    z-index: 2;
}

/* Alternative rounded style with more pronounced curves */


.cta-section h3 {
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 0;
}

.cta-section .btn {
    background: #ff000c;
    border: none;
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
    display: inline-block;
}

.cta-section .btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cta-section {
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
        text-align: center;
        padding: 2rem 0;
    }

    .cta-section::before {
        border-top-left-radius: 35px;
        border-top-right-radius: 35px;
    }

    .cta-section h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .cta-section .col-md-4 {
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .cta-section {
        border-top-left-radius: 25px;
        border-top-right-radius: 25px;
    }

    .cta-section::before {
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
    }

    .cta-section h3 {
        font-size: 1.3rem;
    }

    .cta-section .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}


/* About Section - Tentang Kami */
.about-section {
    background: linear-gradient(135deg, #232241, #232241);
    color: #232241;
    position: relative;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    margin-top: -20px;
    z-index: 2;
}

.text-justify {
    text-align: justify;
}

/* Enhanced curved effect */
.about-section::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(135deg, #232241, #232241);
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    z-index: -1;
}

.section-title-about {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: white;
}

.about-content {
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: justify;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* Image styling */
.about-image {
    position: relative;
}

.about-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(35,34,65,255);
    transition: transform 0.3s ease;
    width: 100%;
    height: auto;
}

.about-image:hover img {
    transform: scale(1.02);
}

/* Add subtle overlay effect to image */
.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(35,34,65,255,0.1)    , rgba(35,34,65,255,0.1)    );
    border-radius: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image:hover::after {
    opacity: 1;
}

/* Section header styling */
.section-header {
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .about-section {
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
    }

    .about-section::before {
        border-top-left-radius: 35px;
        border-top-right-radius: 35px;
    }

    .section-title {
        font-size: 2.2rem;
        text-align: center;
    }

    .about-content {
        text-align: center;
        margin-bottom: 2rem;
    }

    .about-content p {
        text-align: center;
    }

    .section-header::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .about-section {
        border-top-left-radius: 25px;
        border-top-right-radius: 25px;
        padding: 3rem 0;
    }

    .about-section::before {
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
    }

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

    .about-content {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .about-section {
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        padding: 2.5rem 0;
    }

    .about-section::before {
        border-top-left-radius: 25px;
        border-top-right-radius: 25px;
    }

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

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

    .about-content p {
        margin-bottom: 1.2rem;
    }
}

/* Animation for content reveal */
@media (prefers-reduced-motion: no-preference) {
    .about-content p {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.8s ease forwards;
    }

    .about-content p:nth-child(2) {
        animation-delay: 0.2s;
    }

    .about-image img {
        opacity: 0;
        transform: translateX(30px);
        animation: fadeInRight 0.8s ease forwards;
        animation-delay: 0.4s;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll reveal effect */
.about-section.reveal {
    animation: sectionReveal 1s ease forwards;
}

@keyframes sectionReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Mission Vision Section */
.mission-vision {
    background: url('../images/assets/background3.jpg') no-repeat center center;
    background-size: cover; /* gambar nutupin section */
    /*background-size: contain;  /*<- kalau mau full keliatan semua */
    padding: 80px 0;
    position: relative;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    margin-top: -20px;
    z-index: 2;

}

/* Curved top mengikuti lebar container */


.mission-vision-tabs {
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}

/* Add subtle background pattern */
.mission-vision-tabs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.02), rgba(155, 89, 182, 0.02));
    z-index: 1;
}

.mission-vision-tabs > * {
    position: relative;
    z-index: 2;
}

/* Tab buttons styling */
.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.tab-btn {
    background: #000000;
    border: none;
    border-radius: 30px;
    padding: 15px 40px;
    font-weight: 600;
    font-size: 1.1rem;
    color: rgb(255, 255, 255);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 120px;
}

/* Button hover and active states */
.tab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.tab-btn:hover::before {
    left: 100%;
}

.tab-btn.active, .tab-btn:hover {
    background: #ff000c;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.tab-btn:active {
    transform: translateY(-1px);
}

/* Tab content styling */
.tab-content {
    min-height: 150px;
    display: flex;
    align-items: justify;
    justify-content: justify;
}

.tab-pane {
    display: none;
    font-size: 1rem;
    line-height: 1.8;
    color: #ffffff;
    text-align: justify;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.tab-pane.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease forwards;
}

.tab-pane p {
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Animation for tab content */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mission-vision {
        padding: 60px 0;
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
    }

    .mission-vision::before {
        border-top-left-radius: 35px;
        border-top-right-radius: 35px;
    }

    .mission-vision-tabs {
        padding: 40px 25px;
        border-radius: 15px;
    }

    .tab-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .tab-btn {
        width: 200px;
        padding: 12px 30px;
        font-size: 1rem;
    }

    .tab-pane {
        font-size: 1.1rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .mission-vision {
        padding: 40px 0;
        border-top-left-radius: 25px;
        border-top-right-radius: 25px;
    }

    .mission-vision::before {
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
    }

    .mission-vision-tabs {
        padding: 30px 20px;
        border-radius: 12px;
    }

    .tab-btn {
        width: 180px;
        padding: 10px 25px;
        font-size: 0.95rem;
    }

    .tab-pane {
        font-size: 1rem;
        line-height: 1.6;
    }

    .tab-content {
        min-height: 100px;
    }
}

/* Additional interactive effects */
@media (hover: hover) {
    .mission-vision-tabs:hover {
        transform: translateY(-2px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    }
}

/* Focus states for accessibility */
.tab-btn:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

.tab-btn:focus:not(:focus-visible) {
    outline: none;
}

/* Loading animation for smooth transitions */
.tab-pane.loading {
    opacity: 0.5;
    pointer-events: none;
}

.tab-pane.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Companies Section */
/* Companies Section Styles */
.companies-section {
    background-color: #ffffff;
    padding: 0;
    position: relative;
    margin: 60px auto;
    max-width: auto;
    border-radius: 40px 40px 20px 20px;
    overflow: hidden;
    margin-top: -20px;
    z-index: 2;
}

.section-header {
    position: relative;
    text-align: center;
    margin-bottom: 0;
    z-index: 10;
}

.section-title-badge {
    background: linear-gradient(135deg, #ff000c, #ff000c);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    display: inline-block;
    margin: 0;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
    position: relative;
    top: 30px;
    transform: translateY(-50%);
}

.companies-container {
    background-color: #ffffff;
    padding: 80px 40px 60px 40px;
    position: relative;
}

.companies-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px 30px;
    align-items: center;
    justify-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.company-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
}

.company-item:hover {
    transform: translateY(-8px) scale(1.05);
}

.company-item img {
    max-width: 250px;
    max-height: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(1.1) contrast(1.1);
    opacity: 0.9;
}

.company-item:hover img {
    opacity: 1;
    filter: brightness(1.2) contrast(1.2);
    transform: scale(1.02);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .companies-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 35px 25px;
    }

    .company-item img {
        max-width: 160px;
        max-height: 100px;
    }
}

@media (max-width: 768px) {
    .companies-container {
        padding: 80px 20px 40px 20px;
    }

    .companies-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 30px 20px;
    }

    .company-item img {
        max-width: 140px;
        max-height: 90px;
    }
}

@media (max-width: 480px) {
    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 15px;
    }

    .company-item img {
        max-width: 120px;
        max-height: 80px;
    }

    .section-title-badge {
        font-size: 1.3rem;
        padding: 12px 30px;
    }
}

/* Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    z-index: 5;
    backdrop-filter: blur(10px);
    opacity: 0.8;
}

.slider-nav:hover {
    background: rgba(233, 30, 99, 0.2);
    border-color: rgba(233, 30, 99, 0.5);
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
}

.slider-nav.prev {
    left: -25px;
}

.slider-nav.next {
    right: -25px;
}

.slider-nav svg {
    width: 24px;
    height: 24px;
    fill: white;
}



/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
}

.slider-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: #e91e63;
    transition: all 0.3s ease;
}

.slider-dot.active::after {
    width: 100%;
    height: 100%;
}

.slider-dot:hover {
    transform: scale(1.2);
}

/* Loading state */
.slider-slide.loading {
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slider-container {
        margin: 0 50px;
    }

    .company-card {
        width: 160px;
        height: 120px;
        padding: 25px 15px;
    }

    .company-card img {
        max-height: 65px;
    }
}

@media (max-width: 768px) {
    .companies-container {
        padding: 70px 20px 40px 20px;
    }

    .slider-container {
        margin: 0 40px;
    }

    .company-card {
        width: 140px;
        height: 110px;
        padding: 20px 12px;
    }

    .company-card img {
        max-height: 55px;
    }

    .section-title-badge {
        font-size: 1.3rem;
        padding: 12px 30px;
    }

    .slider-slide {
        gap: 15px;
    }

    .slider-nav {
        width: 45px;
        height: 45px;
    }

    .slider-nav svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 576px) {
    .companies-section {
        margin: 30px 10px;
        border-radius: 30px;
    }

    .companies-container {
        padding: 60px 15px 30px 15px;
    }

    .slider-container {
        margin: 0 30px;
    }

    .company-card {
        width: 120px;
        height: 100px;
        padding: 15px 10px;
    }

    .company-card img {
        max-height: 45px;
    }

    .section-title-badge {
        font-size: 1.1rem;
        padding: 10px 25px;
    }

    .slider-slide {
        gap: 12px;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
    }

    .slider-nav.prev {
        left: -20px;
    }

    .slider-nav.next {
        right: -20px;
    }
}

@media (max-width: 480px) {
    .slider-slide {
        flex-wrap: wrap;
        justify-content: center;
    }

    .company-card {
        width: 110px;
        height: 90px;
        margin: 5px;
    }

    .slider-nav {
        display: none;
    }
}

/* Accessibility improvements */
.slider-nav:focus,
.slider-dot:focus {
    outline: 2px solid #e91e63;
    outline-offset: 2px;
}

/* Smooth scroll behavior */
@media (prefers-reduced-motion: reduce) {
    .slider-wrapper {
        transition: none;
    }

    .company-card,
    .slider-nav,
    .slider-dot {
        transition: none;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .company-card {
        border: 2px solid #000;
    }

    .slider-nav {
        border: 3px solid #fff;
        background: #000;
    }
}

/* Working Hours Section */
.working-hours {
    background: url('../images/assets/background.jpg') no-repeat center center;
    background-size: cover;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
}

.working-hours h3 {
    color: #000000;
    font-weight: bold;
    margin-bottom: 20px;
}

.working-hours h4 {
    color: #000000;
    font-weight: bold;
    margin-bottom: 15px;
}

.sitemap-list {
    list-style: none;
    padding: 0;
}

.sitemap-list li {
    margin-bottom: 8px;
}

.sitemap-list a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sitemap-list a:hover {
    color: #e74c3c;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #232241, #232241);
    color: white;
    padding: 20px 0 10px;
    text-align: center;
    position: relative;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    margin-top: -20px; /* Overlay slightly with previous section */
    z-index: 2;
}

.footer p {
    margin: 0;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .warehouse-title, .warehouse-subtitle {
        font-size: 1.2rem;
    }

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

    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-badge {
        max-width: 150px;
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 100px;
    }

    .warehouse-badge {
        position: static;
        margin: 20px auto;
        max-width: 250px;
    }

    .companies-section .col-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}



/*bagian produk company*/
 /* Container utama dengan background */
 .product-container {
    background: url('../images/assets/background.jpg') no-repeat center center;
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 50px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: auto;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.product-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.05) 0%, rgba(103, 126, 234, 0.05) 100%);
    z-index: -1;
}

/* Brand section di kiri - desktop */
.brand-section {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    min-width: 200px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 25px;
    justify-content: center;
}

.brand-option {
    font-size: 28px;
    font-weight: 700;
    color: #2d3748;
    cursor: pointer;
    text-transform: uppercase;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    padding: 15px 0;
    letter-spacing: 1px;
}

.brand-option::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff000c, #ff000c);
    transition: width 0.4s ease;
    border-radius: 2px;
}

.brand-option:hover {
    color: #ff000c;
    transform: translateX(10px);
}

.brand-option:hover::before {
    width: 15px;
}

.brand-option.active {
    background: linear-gradient(135deg, #ff000c, #ff000c);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    transform: translateX(0);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.3);
}

.brand-option.active::before {
    display: none;
}

/* Slider container */
.slider-container {
    flex: 1;
    position: relative;
    overflow: hidden;
}

/* Slider produk */
.products-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 20px 0;
}

/* Card produk */
.product-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    flex: 0 0 280px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid transparent;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff000c, #ff000c);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 25px;
    z-index: -1;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-color: rgba(233, 30, 99, 0.3);
}

.product-card:hover::before {
    opacity: 0.05;
}

/* Gambar produk */
.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-bottom: 20px;
    position: relative;
}

.product-image img.brand-img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card:hover .brand-img {
    transform: scale(1.1) rotate(2deg);
}

/* Brand name dan product name */
.brand-name {
    font-size: 22px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-name {
    font-size: 16px;
    font-weight: 500;
    color: #718096;
    margin-bottom: 15px;
    text-transform: capitalize;
}


/* Tombol Shop Now */
.shop-btn {
    background: linear-gradient(135deg, #ff000c 0%, #ff000c 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.shop-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.shop-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.shop-btn:hover::before {
    left: 100%;
}

.shop-btn:active {
    transform: translateY(-1px);
}

/* Tombol Next */
.nav-button {
    background: linear-gradient(135deg, #ff000c, #ff000c);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.3);
}

.nav-button:hover {
    transform: translateY(-50%) scale(1.1) rotate(90deg);
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.4);
}

.nav-button:active {
    transform: translateY(-50%) scale(0.95);
}

/* Collection visibility */
.tech-innovators-collection,
.luxury-brands-collection,
.health-wellness-collection {
    display: none;
    opacity: 0;
    transform: translateY(20px);
}

.tech-innovators-collection.active,
.luxury-brands-collection.active,
.health-wellness-collection.active {
    display: flex;
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

/* ------------------- MOBILE ------------------- */
@media (max-width: 768px) {
    .product-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        padding: 30px 20px;
        border-radius: 20px;
    }

    .brand-section {
        width: 100%;
        justify-content: center;
    }

    .brand-text {
        flex-direction: row;
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .brand-option {
        font-size: 16px;
        padding: 12px 20px;
    }

    .brand-option.active {
        padding: 12px 20px;
    }

    .slider-container {
        width: 100%;
    }

    .products-slider {
        gap: 20px;
        overflow-x: auto;
        scroll-behavior: smooth;
        padding: 20px 10px;
    }

    .products-slider::-webkit-scrollbar {
        display: none;
    }

    .product-card {
        flex: 0 0 220px;
        padding: 20px;
    }

    .product-image {
        height: 160px;
    }

    .brand-name {
        font-size: 18px;
    }

    .product-name {
        font-size: 14px;
    }

    .shop-btn {
        font-size: 12px;
        padding: 10px 20px;
    }

    .nav-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
        right: 10px;
    }
}

/* Loading animation */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}



/*detail section*/


.detail-company-section {
    background: url('../images/assets/background.jpg') no-repeat center center;
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
}

.container {
    max-width: auto;
    margin: 0 auto;
    padding: 0 20px;
}

.content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.logo-container {
    flex: 0 0 auto;
    margin-right: 0px;
}


.logo {
    width: 300px;
    height: 200px;

    display: flex;
    align-items: justify;
    justify-content: justify;
    position: relative;
    overflow: hidden;
}

.logo::before {
    content: 'IMI';
    color: white;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 1px;
}

.logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.content-area {
    flex: 1;
    min-width: 300px;
}

.section-title-detail {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.section-title-detail::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    border-radius: 2px;
}

.description {
    color: #5a6c7d;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
    transition: color 0.3s ease;
}

.description:hover {
    color: #2c3e50;
}

.highlight-text {
    color: #007bff;
    font-weight: 600;
}


@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo-container {
        margin-right: 0;
        margin-bottom: 30px;
    }

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

    .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .description {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .indoswiss-international-section {
        padding: 50px 0;
    }

    .container {
        padding: 0 15px;
        flex-direction: column;
        align-items: center;
    }

    .logo-box {
        width: 100px;
        height: 100px;
    }

    .logo {
        width: 70px;
        height: 70px;
    }

    .logo::before {
        font-size: 14px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .description {
        font-size: 1rem;
        line-height: 1.6;
    }
}


.bg-image {
    width: 100%;
    height: 500px; /* desktop */
    overflow: hidden;
    border-radius: 20px;
}

.bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* 🔹 Mobile responsive */
@media (max-width: 768px) {
    .bg-image {
        height: 300px; /* tablet & hp */
        border-radius: 12px; /* lebih kecil biar proporsional */
    }
}

@media (max-width: 480px) {
    .bg-image {
        height: 220px; /* hp kecil */
        border-radius: 8px;
    }
}



/* Section besar dengan background putih */
.about-mission-section-about {
    background: url('../images/assets/background.jpg') no-repeat center center;
    border-radius: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    padding: 50px;
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

/* Flex dua kolom penuh */
.about-mission-wrapper-about {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

/* Kolom About */
.about-content-wrapper-about {
    flex: 0 0 50%;
}

.section-title-about-2 {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    text-align: left;
}

.about-content-about {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    text-align: justify;
}

/* Kolom Visi Misi */
.mission-content-wrapper-about {
    flex: 0 0 45%;
    text-align: right;
}

/* Tab Buttons */
.tab-buttons-about {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 20px;
}

.tab-btn-about {
    padding: 10px 25px;
    border-radius: 25px;
    border: none;
    background: #f1f1f1;
    color: #333;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn-about.active {
    background: #E60023;
    color: #fff;
}

/* Tab Content */
.tab-content-about {
    display: flex;
    justify-content: flex-end;
}

.tab-pane-about {
    display: none;
    width: 100%;
}

.tab-pane-about.active {
    display: block;
}

.tab-card-about {
    background: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    text-align: justify;
    font-size: 15px;
    color: #444;
}

/* Responsif */
@media (max-width: 992px) {
    .about-mission-wrapper-about {
        flex-direction: column;
    }
    .about-content-wrapper-about,
    .mission-content-wrapper-about {
        flex: 0 0 100%;
        text-align: left;
    }
    .tab-buttons-about {
        justify-content: flex-start;
    }
}



.contact-section {
    padding: auto;
    max-width: auto;
    margin: 0 auto;
}

.contact-container {
    background: url('../images/assets/background.jpg') no-repeat center center;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-title {
    background-color: #e91e63;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 24px;
    font-weight: bold;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: #333;
}

.contact-icon {
    width: 24px;
    height: 24px;
}

.contact-content {
    width: 100%;
}

.form-container {
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #e91e63;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    border-radius: 20px;
}

.send-btn {
    background-color: #e91e63;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    float: right;
    margin-top: 20px;
    margin-bottom: 0;
}

.form-container::after {
    content: "";
    display: table;
    clear: both;
}

.send-btn:hover {
    background-color: #c2185b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 400px;
    margin-top: 40px;
    width: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info {
        justify-content: center;
    }

    .contact-item {
        font-size: 16px;
    }

    .send-btn {
        float: none;
        width: 100%;
    }

    .contact-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .contact-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}




/* journey */
.container-journey {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    min-height: 100vh;
    align-items: flex-start;
}

.left-section {
    flex: 0 0 500px;
    padding-right: 100px;
    position: sticky;
    top: 60px;
}

.logo-journey {
    width: 300px;
    height: 300px;
    background: url('../images/logo/logo_journey.png') no-repeat center center;
    background-size: contain;
    margin-bottom: 30px;
}

.company-name-journey {
    color: white;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.title-journey {
    color: white;
    font-size: 48px;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.title-journey span {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.title-journey span:nth-child(1) { animation-delay: 0.2s; }
.title-journey span:nth-child(2) { animation-delay: 0.4s; }
.title-journey span:nth-child(3) { animation-delay: 0.6s; }
.title-journey span:nth-child(4) { animation-delay: 0.8s; }

.right-section {
    flex: 1;
    position: relative;
    padding-left: 40px;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #e74c3c, #c0392b);
    border-radius: 1px;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 40px;
    opacity: 0;
    transform: translateX(50px);
    animation: slideInFromRight 0.8s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.15s; }
.timeline-item:nth-child(3) { animation-delay: 0.2s; }
.timeline-item:nth-child(4) { animation-delay: 0.25s; }
.timeline-item:nth-child(5) { animation-delay: 0.3s; }
.timeline-item:nth-child(6) { animation-delay: 0.35s; }
.timeline-item:nth-child(7) { animation-delay: 0.4s; }
.timeline-item:nth-child(8) { animation-delay: 0.45s; }
.timeline-item:nth-child(9) { animation-delay: 0.5s; }
.timeline-item:nth-child(10) { animation-delay: 0.55s; }
.timeline-item:nth-child(11) { animation-delay: 0.6s; }
.timeline-item:nth-child(12) { animation-delay: 0.65s; }
.timeline-item:nth-child(13) { animation-delay: 0.7s; }
.timeline-item:nth-child(14) { animation-delay: 0.75s; }
.timeline-item:nth-child(15) { animation-delay: 0.8s; }
.timeline-item:nth-child(16) { animation-delay: 0.85s; }
.timeline-item:nth-child(17) { animation-delay: 0.9s; }
.timeline-item:nth-child(18) { animation-delay: 0.95s; }

.timeline-dot {
    position: absolute;
    left: -55px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #e74c3c;
    border-radius: 50%;
    border: 3px solid #1a1a2e;
    box-shadow: 0 0 0 3px #e74c3c, 0 4px 12px rgba(231, 76, 60, 0.4);
    z-index: 2;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 25px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.timeline-year {
    font-size: 22px;
    font-weight: bold;
    color: #e74c3c;
    min-width: 60px;
    text-align: center;
}

.timeline-event {
    font-size: 16px;
    color: white;
    line-height: 1.4;
    font-weight: 500;
    flex: 1;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Geometric decorative elements */
.geometric-bg {
    background: url('../images/assets/bg_journey1.jpg') no-repeat center center;
    background-size: cover;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: -2;
}


/* Responsive Design */
@media (max-width: 1200px) {
    .container-journey {
        padding: 40px 30px;
    }

    .left-section {
        flex: 0 0 400px;
        padding-right: 40px;
    }

    .title-journey{
        font-size: 40px;
    }
}

@media (max-width: 968px) {
    .container-journey {
        flex-direction: column;
        padding: 40px 20px;
    }

    .left-section {
        flex: none;
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
        position: static;
    }

    .right-section {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .timeline-item {
        padding-left: 30px;
    }

    .timeline-dot {
        left: -45px;
    }

    .timeline-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .timeline-year {
        min-width: auto;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .timeline-content {
        padding: 15px 20px;
    }

    .timeline-year {
        font-size: 18px;
    }

    .timeline-event {
        font-size: 14px;
    }
}


/* pbisnis section */

.pbisnis-section {
    background: url('../images/assets/bg_pillarbisnis.jpg') no-repeat center center;
    background-size: cover; /* biar fit section */
    position: relative;
    margin: 60px auto;
    width: 100%;
    border-radius: 40px 40px 20px 20px;
    overflow: hidden;
    margin-top: -20px;
    z-index: 2;
    padding: 60px 40px;
}

.section-header-pbisnis {
    text-align: center;
    margin-bottom: 40px;
    z-index: 10;
}

.section-title-badge-pbisnis {
    background: linear-gradient(135deg, #ff000c, #ff000c);
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    display: inline-block;
    margin: 0;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

.pbisnis-container {
    position: relative;
    padding: 40px;
}

.pbisnis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* grid beneran */
    gap: 40px 30px;
    align-items: center;
    justify-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.pbisnis-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
}

.pbisnis-item:hover {
    transform: translateY(-8px) scale(1.05);
}

.pbisnis-item img {
    max-width: 250px;
    max-height: 150px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(1.1) contrast(1.1);
    opacity: 0.9;
}

.pbisnis-item:hover img {
    opacity: 1;
    filter: brightness(1.2) contrast(1.2);
    transform: scale(1.02);
}

/* Responsive */
@media (max-width: 1200px) {
    .pbisnis-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 35px 25px;
    }

    .pbisnis-item img {
        max-width: 200px;
        max-height: 120px;
    }
}

@media (max-width: 768px) {
    .pbisnis-container {
        padding: 20px;
    }

    .pbisnis-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 30px 20px;
    }

    .pbisnis-item img {
        max-width: 140px;
        max-height: 90px;
    }
}

@media (max-width: 480px) {
    .pbisnis-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 15px;
    }

    .pbisnis-item img {
        max-width: 120px;
        max-height: 80px;
    }

    .section-title-badge-pbisnis {
        font-size: 1.3rem;
        padding: 12px 30px;
    }
}


.partner-section {
    background: #ffffff;
    background-size: cover;
    position: relative;
    margin: 60px auto;
    width: 100%;
    border-radius: 40px 40px 20px 20px;
    overflow: hidden;
    margin-top: -20px;
    z-index: 2;
    padding: 60px 40px;
}

.section-header-partner {
    text-align: center;
    margin-bottom: 40px;
    z-index: 10;
}

.section-title-badge-partner {
    background: linear-gradient(135deg, #ff000c, #ff000c);
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    display: inline-block;
    margin: 0;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

.partner-container {
    position: relative;
    padding: 40px;
}

.partner-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px 30px;
    align-items: center;
    justify-items: center;
    max-width: 1400px;
    margin: 0 auto;
}



.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
}

.partner-item:hover {
    transform: translateY(-8px) scale(1.05);
}

.partner-item img {
    max-width: 400px;
    max-height: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(1.1) contrast(1.1);
    opacity: 0.9;
}

.partner-item:hover img {
    opacity: 1;
    filter: brightness(1.2) contrast(1.2);
    transform: scale(1.02);
}

/* Responsive */
@media (max-width: 1200px) {
    .partner-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 35px 25px;
    }

    .partner-item img {
        max-width: 200px;
        max-height: 120px;
    }
}

@media (max-width: 768px) {
    .partner-container {
        padding: 20px;
    }

    .partner-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 30px 20px;
    }

    .partner-item img {
        max-width: 140px;
        max-height: 90px;
    }
}

@media (max-width: 480px) {
    .partner-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 15px;
    }

    .partner-item img {
        max-width: 120px;
        max-height: 80px;
    }

    .section-title-badge-partner {
        font-size: 1.3rem;
        padding: 12px 30px;
    }
}




/* =========================
   ARTICLE PAGE STYLING
   ========================= */

   .article-wrapper {
    position: relative;
    z-index: 10;
    background-color: #f8f9fa;
    min-height: 100vh;
}

.article-wrapper::before,
.article-wrapper::after {
    content: none !important;
}

/* Hero Section */
.article-hero {
    background: url('../images/assets/background.jpg') no-repeat center center;
    padding: 80px 0 60px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.article-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.05) 0%, transparent 50%);
}

.article-hero h1 {
    color: #000000;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.article-hero p {
    color: rgba(0, 0, 0, 0.8);
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.article-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #dc3545 0%, #ffc107 100%);
}

/* Search Box */
.search-wrapper {
    max-width: 800px;
    margin: -30px auto 40px;
    position: relative;
    z-index: 2;
}

.search-box {
    background: white;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

.search-box input {
    border: none;
    padding: 18px 30px;
    font-size: 16px;
}

.search-box input:focus {
    outline: none;
    box-shadow: none;
}

.search-box button {
    background: #dc3545;
    color: white;
    border: none;
    padding: 18px 40px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.search-box button:hover {
    background: #c82333;
}

/* Filter Tabs */
.filter-tabs {
    margin-bottom: 40px;
}

.filter-tabs .nav-link {
    color: #6c757d;
    font-weight: 600;
    padding: 12px 30px;
    border: none;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.filter-tabs .nav-link:hover {
    color: #2c3e50;
}

.filter-tabs .nav-link.active {
    color: #dc3545;
    border-bottom-color: #dc3545;
    background: transparent;
}

/* Sort Dropdown */
.sort-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.sort-wrapper select {
    border: 1px solid #000000;
    border-radius: 8px;
    padding: 8px 40px 8px 16px;
    font-size: 14px;
    cursor: pointer;
}

/* Article Card */
.article-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.article-card .card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;

}

.article-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    object-fit: contain;
}

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

.article-card .badge-type {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ffc107;
    color: #2c3e50;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 1;
}

.article-card .card-body {
    padding: 25px;
}

.article-card .date {
    color: #6c757d;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.article-card .card-title {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card .card-text {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
}

.article-card .btn-share {
    background: transparent;
    border: none;
    color: #6c757d;
    padding: 8px;
    font-size: 18px;
    transition: color 0.3s ease;
}

.article-card .btn-share:hover {
    color: #dc3545;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state i {
    font-size: 80px;
    color: #dee2e6;
    margin-bottom: 20px;
}

.empty-state h5 {
    color: #6c757d;
    font-weight: 600;
}

/* Pagination */
.pagination {
    gap: 5px;
}

.pagination .page-link {
    border: 1px solid #dee2e6;
    color: #2c3e50;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background: #dc3545;
    color: white;
    border-color: #dc3545;
}

.pagination .page-item.active .page-link {
    background: #dc3545;
    border-color: #dc3545;
}

/* Responsive */
@media (max-width: 768px) {
    .article-hero h1 {
        font-size: 2rem;
    }

    .filter-tabs .nav-link {
        padding: 10px 20px;
        font-size: 14px;
    }

    .sort-wrapper {
        justify-content: center;
    }
}



/* css detail artikel dan berita */

.article-detail-page {
    background-color: #f8f9fa;
    min-height: 100vh;
}

.article-detail-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.article-detail-header {
    margin-bottom: 2rem;
}

.article-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.article-detail-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    color: #6c757d;
    font-size: 0.95rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #dee2e6;
}

.article-detail-meta-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.article-detail-meta-separator {
    color: #dee2e6;
}

.article-detail-thumbnail {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.article-detail-content {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    line-height: 1.8;
    color: #333;
    font-size: 1.1rem;
}

.article-detail-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.article-detail-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2a2a2a;
}

.article-detail-content p {
    margin-bottom: 1.2rem;
}

.article-detail-content img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.article-detail-content ul,
.article-detail-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.article-detail-content li {
    margin-bottom: 0.5rem;
}

.article-detail-content blockquote {
    border-left: 4px solid #007bff;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #555;
}

.article-detail-content a {
    color: #007bff;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.article-detail-content a:hover {
    border-bottom-color: #007bff;
}

.article-detail-content pre {
    background: #f5f5f5;
    padding: 1rem;
    border-radius: 6px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.article-detail-content code {
    background: #f5f5f5;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

@media (max-width: 768px) {
    .article-detail-title {
        font-size: 1.8rem;
    }

    .article-detail-content {
        padding: 1.5rem;
        font-size: 1rem;
    }

    .article-detail-container {
        padding: 2rem 1rem;
    }
}

.article-detail-img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 10px;
    background: #ffffff;
}

.article-detail-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;   /* INI KUNCINYA */
}

@media (max-width: 768px) {
    .article-detail-img-wrapper {
        aspect-ratio: 4 / 3;
    }
}



.management-section {
    background: #ffffff;
    background-size: cover;
    position: relative;
    margin: 60px auto;
    width: 100%;
    border-radius: 40px 40px 20px 20px;
    overflow: hidden;
    margin-top: -20px;
    z-index: 2;
    padding: 60px 40px;
}

.section-header-management {
    text-align: center;
    margin-bottom: 50px;
    z-index: 10;
}

.section-title-badge-management {
    background: linear-gradient(135deg, #ff000c, #ff000c);
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    display: inline-block;
    margin: 0;
    box-shadow: 0 8px 25px rgba(255, 0, 12, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.management-container {
    position: relative;
    padding: 40px;
}

.management-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px 80px;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
}

.management-item {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
    position: relative;
}

.management-item:hover {
    transform: translateY(-8px) scale(1.02);
}

.management-card {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.management-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.management-card img {
    max-width: 400px;
    max-height: 400px;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    transition: all 0.3s ease;
    filter: brightness(1.05) contrast(1.05);
    margin-bottom: 20px;
}

.management-card:hover img {
    filter: brightness(1.1) contrast(1.1);
    transform: scale(1.02);
}

.management-position {
    color: #7a7a7a;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.management-name {
    color: #2c3e50;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 1200px) {
    .management-grid {
        gap: 50px 60px;
    }

    .management-card img {
        max-width: 220px;
        max-height: 220px;
    }

    .management-name {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .management-section {
        padding: 40px 20px;
        margin: 40px auto;
    }

    .management-container {
        padding: 20px;
    }

    .management-grid {
        gap: 40px 30px;
    }

    .management-card {
        padding: 20px;
    }

    .management-card img {
        max-width: 180px;
        max-height: 180px;
    }

    .management-name {
        font-size: 1.1rem;
    }

    .management-position {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .management-section {
        padding: 30px 15px;
        border-radius: 30px 30px 15px 15px;
    }

    .management-grid {
        gap: 30px 20px;
        flex-direction: column;
    }

    .management-card img {
        max-width: 160px;
        max-height: 160px;
    }

    .section-title-badge-management {
        font-size: 1.3rem;
        padding: 12px 30px;
        letter-spacing: 1.5px;
    }

    .management-name {
        font-size: 1rem;
    }

    .management-position {
        font-size: 0.75rem;
    }
}



/*     csss untuk halaman career   */

/* Career Page Styles */
.career-page {
    min-height: 100vh;
    background-color: #f5f7fa;
}

/* Hero Section */
.career-hero {
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    color: white;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 30px 30px;
}

.career-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.03) 10px, rgba(255,255,255,0.03) 20px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(255,255,255,0.03) 10px, rgba(255,255,255,0.03) 20px);
    border-radius: 50%;
}

.career-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.career-hero-divider {
    width: 80px;
    height: 4px;
    background-color: white;
    margin-bottom: 20px;
    border-radius: 10px;
}

.career-hero-description {
    font-size: 16px;
    line-height: 1.6;
    max-width: 800px;
    opacity: 0.95;
}

/* Filter Section */
.career-filter-section {
    background: white;
    padding: 30px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    border-radius: 0 0 20px 20px;
}

.career-filter-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr auto;
    gap: 15px;
    align-items: center;
}

.career-search-box {
    position: relative;
}

.career-search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.career-search-box input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.career-search-box input:focus {
    outline: none;
    border-color: #0056b3;
    box-shadow: 0 0 0 3px rgba(0,86,179,0.1);
}

.career-search-box input::placeholder {
    color: #999;
    font-style: italic;
}

.career-select {
    width: 100%;
    padding: 12px 35px 12px 15px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 14px;
    background-color: white;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.career-select:focus {
    outline: none;
    border-color: #0056b3;
    box-shadow: 0 0 0 3px rgba(0,86,179,0.1);
}

.career-search-btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.career-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,86,179,0.3);
}

/* Listing Section */
.career-listing-section {
    padding: 40px 0 80px;
}

.career-listing-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.career-listing-count {
    font-size: 24px;
    font-weight: 700;
    color: #0056b3;
}

.career-profile-filter {
    display: flex;
    align-items: center;
    gap: 12px;
}

.career-toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.career-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.career-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 26px;
}

.career-toggle-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

.career-toggle-switch input:checked + .career-toggle-slider {
    background-color: #0056b3;
}

.career-toggle-switch input:checked + .career-toggle-slider:before {
    transform: translateX(24px);
}

.career-toggle-label {
    font-size: 14px;
    color: #555;
}

.career-view-toggle {
    padding: 10px 15px;
    background: #0056b3;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.career-view-toggle:hover {
    background: #003d82;
}

/* Jobs Grid */
.career-jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.career-job-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.career-job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,86,179,0.15);
}

.career-job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.career-company-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 12px;
}

.career-company-logo-placeholder {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    border-radius: 12px;
}

.career-job-actions {
    display: flex;
    gap: 10px;
}

.career-bookmark-btn,
.career-share-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.career-bookmark-btn:hover,
.career-share-btn:hover {
    background: #f8f9fa;
    color: #0056b3;
    border-color: #0056b3;
}

.career-job-content {
    margin-bottom: 20px;
}

.career-job-title {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
    line-height: 1.4;
}

.career-job-company {
    font-size: 14px;
    color: #0056b3;
    margin-bottom: 15px;
}

.career-job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 12px;
}

.career-job-meta-item {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f8f9fa;
    padding: 6px 12px;
    border-radius: 20px;
}

.career-job-meta-item i {
    color: #999;
    font-size: 12px;
}

.career-job-deadline {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px;
    border-top: 1px solid #f0f0f0;
    background: #f8f9fa;
    border-radius: 10px;
    margin-top: 12px;
}

.career-job-deadline i {
    color: #999;
}

.career-job-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.career-detail-btn,
.career-apply-btn {
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.career-detail-btn {
    background: transparent;
    color: #0056b3;
    border: 2px solid #0056b3;
}

.career-detail-btn:hover {
    background: #f8f9fa;
}

.career-apply-btn {
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    color: white;
    border: none;
}

.career-apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,86,179,0.3);
}

.career-no-jobs {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #999;
    background: white;
    border-radius: 16px;
}

.career-no-jobs i {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.career-no-jobs p {
    font-size: 18px;
}

/* Pagination */
.career-pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.career-pagination nav {
    border-radius: 12px;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 1024px) {
    .career-filter-wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .career-search-box {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .career-hero {
        border-radius: 0 0 20px 20px;
    }

    .career-hero-title {
        font-size: 36px;
    }

    .career-filter-wrapper {
        grid-template-columns: 1fr;
    }

    .career-jobs-grid {
        grid-template-columns: 1fr;
    }

    .career-listing-header {
        flex-direction: column;
        align-items: flex-start;
    }
}


.career-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.career-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.career-modal-container {
    background: white;
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.career-modal-overlay.active .career-modal-container {
    transform: scale(1) translateY(0);
}

.career-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 2px solid #f0f0f0;
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    border-radius: 20px 20px 0 0;
}

.career-modal-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0;
}

.career-modal-close {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.career-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.career-modal-job-info {
    padding: 20px 30px;
    background: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
}

.career-modal-job-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin: 0 0 5px 0;
}

.career-modal-job-info p {
    font-size: 14px;
    color: #0056b3;
    margin: 0;
}

.career-modal-form {
    padding: 30px;
}

.career-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.career-form-group {
    margin-bottom: 20px;
}

.career-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.career-required {
    color: #dc3545;
}

.career-form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
}

.career-form-control:focus {
    outline: none;
    border-color: #0056b3;
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

.career-form-control::placeholder {
    color: #999;
}

textarea.career-form-control {
    resize: vertical;
    min-height: 120px;
}

.career-file-upload {
    position: relative;
}

.career-file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.career-file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    border: 2px dashed #ddd;
    border-radius: 10px;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.career-file-label:hover {
    border-color: #0056b3;
    background: #e8f1f8;
}

.career-file-label i {
    font-size: 32px;
    color: #0056b3;
    margin-bottom: 10px;
}

.career-file-label span {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.career-file-label small {
    font-size: 12px;
    color: #999;
    margin-top: 5px;
    display: block;
}

.career-file-label.has-file {
    border-color: #28a745;
    background: #e8f5e9;
}

.career-file-label.has-file i {
    color: #28a745;
}

.career-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: #555;
}

.career-checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.career-checkbox-label a {
    color: #0056b3;
    text-decoration: none;
}

.career-checkbox-label a:hover {
    text-decoration: underline;
}

.career-error-message {
    display: block;
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
}

.career-modal-footer {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.career-btn-cancel,
.career-btn-submit {
    padding: 12px 25px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.career-btn-cancel {
    background: #f0f0f0;
    color: #666;
}

.career-btn-cancel:hover {
    background: #e0e0e0;
}

.career-btn-submit {
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
}

.career-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3);
}

.career-btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Loading State */
.career-btn-submit.loading {
    pointer-events: none;
}

.career-btn-submit.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Modal */
@media (max-width: 768px) {
    .career-modal-container {
        max-height: 95vh;
    }

    .career-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .career-modal-header,
    .career-modal-form {
        padding: 20px;
    }

    .career-modal-footer {
        flex-direction: column;
    }

    .career-btn-cancel,
    .career-btn-submit {
        width: 100%;
        justify-content: center;
    }
}


/* RTL MODE */
.journey-section.rtl {
    direction: rtl;
    text-align: right;
}

/* Balik posisi left-section & right-section */
.journey-section.rtl .container-journey {
    display: flex;
    flex-direction: row-reverse;
}

/* Timeline item RTL */
.journey-section.rtl .timeline-item {
    flex-direction: row-reverse;
}

.journey-section.rtl .timeline-content {
    text-align: right;
}

.journey-section.rtl .timeline-dot {
    margin-left: 0;
    margin-right: 15px; /* kebalikan dari LTR */
}
