/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #F4F7F9;
    color: #1A1A1A;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Re-use */
.main-header {
    background: white;
    padding: 15px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 14px;
}

.main-nav a.active {
    color: #FF7F00;
}

.btn-orange {
    background: #FF7F00;
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
}


/* --- Hamburger Menu (Default Sembunyi di Desktop) --- */
.hamburger-menu {
    display: none; /* Sembunyi di laptop */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1100;
    width: 40px;
    height: 40px;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333 !important;
    transition: 0.3s;
    border-radius: 2px;
}

/* --- Pengaturan Layar HP (Breakpoint 768px) --- */
@media (max-width: 768px) {
    /* 1. HEADER: PAKSA LOGO TENGAH & SLIM */
    .header-container {
        display: flex !important;
        justify-content: flex-start !important; /* Diubah biar nggak di tengah lagi */
        align-items: center !important;
        height: 55px !important; /* Sama kyk Galeri biar Slim */
        position: relative !important;
        background: white !important;
    }

    .logo {
        margin: 0 !important; /* Hapus auto biar geser ke kiri */
        z-index: 10;
    }

    .logo img {
        height: 35px !important; /* Ukuran logo biar pas di header slim */
    }

    /* 2. HAMBURGER: POSISI KANAN TETAP */
    .hamburger-menu {
        display: flex !important; 
        position: absolute !important;
        right: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 100000 !important;
        background: transparent;
        border: none;
        flex-direction: column;
        gap: 5px;
    }

    .hamburger-menu span {
        display: block;
        width: 24px;
        height: 3px;
        background-color: #333;
        border-radius: 5px;
        transition: 0.3s;
    }

    .header-cta.desktop-only {
        display: none !important;
    }

    /* 3. NAVIGASI: DROPDOWN GLASSMORPHISM */
    .main-nav ul {
        display: none; 
        position: absolute;
        top: 100%; 
        left: 0;
        width: 100%;
        
        background: rgba(255, 255, 255, 0.95); 
        backdrop-filter: blur(10px); 
        -webkit-backdrop-filter: blur(10px); 
        
        flex-direction: column;
        padding: 15px 0;
        gap: 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        border-top: 1px solid rgba(0,0,0,0.05);
        z-index: 99999 !important;
    }

    .main-nav ul.show {
        display: flex !important;
    }

    .main-nav ul li {
        width: 100%;
        text-align: center;
        list-style: none;
    }

    .main-nav ul li a {
        display: block;
        padding: 15px 0;
        width: 100%;
        font-size: 16px;
        font-weight: 700;
        color: #333 !important;
        text-transform: uppercase;
        text-decoration: none;
        transition: 0.2s ease-in-out; /* Biar animasi warnanya smooth */
    }

    /* --- 4. ANIMASI WARNA OREN PAS DISENTUH --- */
    .main-nav ul li a:hover,
    .main-nav ul li a:active,
    .main-nav ul li a.active {
        color: #FF7F00 !important; /* Warna Oren lo */
    }

    /* 5. ANIMASI X (SILANG) */
    .hamburger-menu.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .hamburger-menu.active span:nth-child(2) { opacity: 0; }
    .hamburger-menu.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -7px); }

    /* 6. UTILITAS VISIBILITY */
    .desktop-only { display: none !important; }
    .mobile-only { display: block !important; padding: 10px 20px; }
}

/* --- Utilitas Visibility --- */
.mobile-only { display: none !important; }
.desktop-only { display: block; }



/* Hero Section */
.testi-hero {
    background: white;
    padding: 80px 0 60px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
}

.highlight {
    color: #FF7F00;
}

.hero-subtitle {
    color: #666;
    margin: 15px auto 30px;
    max-width: 700px;
}

.btn-outline-orange {
    border: 2px solid #FF7F00;
    color: #FF7F00;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-outline-orange:hover {
    background: #FF7F00;
    color: white;
}

/* --- Section Testimoni --- */
.testi-section {
    padding: 80px 0;
    background-color: #fcfcfc; /* Background agak abu soft biar kartu putihnya "pop out" */
    overflow: hidden; /* Penting biar slider gak bikin web melebar ke samping */
}

.testi-header {
    text-align: center;
    margin-bottom: 50px;
}

.testi-header h2 {
    font-size: 32px;
    font-weight: 800;
}

/* --- Container & Wrapper Slider --- */
.testi-slider-container {
    position: relative;
    width: 100%;
}

.testi-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Default Desktop: 3 Kolom */
    gap: 25px;
    transition: transform 0.5s ease-in-out; /* Buat transisi halus pas gerak sendiri */
}

/* --- Card Style (Rombak ke Elegan) --- */
.testi-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03); /* Shadow super tipis biar elegan */
    border: 1px solid #f1f1f1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #FF7F00; /* Aksen brand lo */
}

.user-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-meta h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1a202c;
}

.user-meta span {
    font-size: 12px;
    color: #718096;
}

.card-body p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
    font-style: italic;
}

/* Foto Bukti Trip di Footer Card */
.card-footer {
    margin-top: 20px;
    border-top: 1px solid #f7fafc;
    padding-top: 15px;
}

.trip-proof {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
}



/* --- Responsive & Slider Logic (Mobile) --- */
@media (max-width: 768px) {
    .testi-wrapper {
        /* Balikin ke grid tapi 1 kolom biar numpuk ke bawah */
        display: grid;
        grid-template-columns: 1fr; 
        gap: 20px; /* Jarak antar kartu pas numpuk */
        padding: 0 20px; /* Kasih padding biar gak nempel tembok layar */
        cursor: default; /* Slider mati, cursor balik normal */
        transform: none !important; /* Paksa posisi diem, gak kegeser JS */
    }

    .testi-card {
        flex: none; /* Hapus flex slider */
        width: 100%; /* Kartu full lebar layar */
        min-height: auto;
    }

    /* Sembunyikan navigasi slider (dots) karena udah gak slide */
    .slider-dots {
        display: none !important;
    }
}

/* Sembunyikan dots di Desktop */
@media (min-width: 769px) {
    .slider-dots {
        display: none;
    }
}



/*LOGO2*/
.brand-section {
    padding: 96px 0;
    background-color: #ffffff;
    border-top: 1px solid #f8fafc;
    position: relative;
    overflow: hidden;
}

.top-divider {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, #f97316, transparent);
}

.container-center {
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding-left: 16px;
    padding-right: 16px;
    text-align: center;
}

.logo-box {
    position: relative;
    display: inline-block;
}

.logo-image {
    margin-left: auto;
    margin-right: auto;
    height: 128px; /* Mobile height (32) */
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
    .logo-image {
        height: 176px; /* Desktop height (44) */
    }
}

/* Hover Effects Logo */
.logo-box:hover .logo-image {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
}

.text-content {
    margin-top: 40px;
}

.slogan-title {
    font-size: 18px; /* lg */
    font-weight: 900;
    color: #cbd5e1; /* slate-300 */
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-style: italic;
    line-height: 1.625;
}

@media (min-width: 768px) {
    .slogan-title {
        font-size: 20px; /* xl */
    }
}

.accent-text {
    color: rgba(249, 115, 22, 0.5); /* orange-500/50 */
    transition: color 0.5s ease;
}

/* Hover Effects Text Accent */
.logo-box:hover ~ .text-content .accent-text {
    color: #f97316; /* orange-500 */
}

.bottom-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    opacity: 0.2;
}

.side-line {
    width: 48px;
    height: 1px;
    background-color: #0f172a; /* slate-900 */
}

.center-dot {
    width: 8px;
    height: 8px;
    border-radius: 9999px;
    background-color: #f97316; /* orange-500 */
}
/* --- Footer Section --- */
.site-footer {
    background-color: #030712;
    color: #ffffff;
    padding: 48px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .footer-container {
        padding: 0 48px;
    }
}

.footer-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

@media (min-width: 768px) {
    .footer-wrapper {
        flex-direction: row;
    }
}

.footer-info {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-info {
        text-align: left;
    }
}

.footer-logo {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-style: italic;
}

.footer-logo-accent {
    color: #f97316;
    font-size: 14px;
    letter-spacing: 0.1em;
    font-style: normal;
}

.footer-copyright {
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

@media (min-width: 768px) {
    .footer-status {
        justify-content: flex-start;
    }
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #f97316;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.company-tag {
    font-size: 10px;
    color: #475569;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.footer-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-btn {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background-color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s ease;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    color: inherit;
    text-decoration: none;
}

.footer-btn i {
    font-size: 20px;
    transition: all 0.5s ease;
}

/* Instagram Hover Effect */
.instagram:hover {
    border-color: rgba(236, 72, 153, 0.5);
    color: #ec4899;
}

.instagram:hover i {
    transform: scale(1.1) rotate(6deg);
}

/* Email Hover Effect */
.email:hover {
    border-color: rgba(249, 115, 22, 0.5);
    color: #f97316;
}

.email:hover i {
    transform: scale(1.1);
}



/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
}