
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@400;600;700;800&display=swap');

:root {
    --primary: #0A4D92; /* Executive Bus Royal Blue */
    --primary-light: #1E64B0; /* Electric Ocean Blue */
    --primary-dark: #062F5B; /* Deep Corporate Navy */
    --accent: #F15A24; /* Oranye Vibrant Accent */
    --accent-dark: #D94E1D;
    --bg: #FFFFFF;
    --bg-alt: #F0F4F8; /* Ice Blue Light Background */
    --text: #0F172A; /* Deep Navy Dark Text */
    --text-muted: #475569; /* Slate Grey Text */
    --white: #FFFFFF;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 30px rgba(10, 77, 146, 0.12);
    --container: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(74, 59, 50, 0.3);
}

.btn-accent {
    background-color: var(--accent);
    color: var(--white);
}

.btn-accent:hover {
    background-color: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 163, 115, 0.3);
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition);
}

nav.sticky {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    transition: var(--transition);
}

nav.sticky .logo, nav.subpage-nav .logo {
    color: var(--primary);
}

.logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    border-radius: 6px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.95); /* Latar belakang putih terang agar logo kontras */
    padding: 3px; /* Jarak aman di sekeliling logo */
    box-shadow: 0 2px 10px rgba(0,0,0,0.15); /* Bayangan halus */
}

nav.sticky .logo-img, nav.subpage-nav .logo-img {
    border-color: rgba(10, 77, 146, 0.15);
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.logo-text span {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--accent) !important;
}

@media (max-width: 768px) {
    .logo {
        gap: 0.6rem !important;
    }

    .logo-img {
        height: 48px !important; /* Diperbesar signifikan dari 35px agar brand jernih & kelihatan */
        padding: 3px !important; /* Memastikan padding tetap pas di mobile */
    }
    
    .logo-text {
        font-size: 1.1rem !important; /* Diperbesar sedikit agar seimbang dengan ukuran logo baru */
        letter-spacing: 0.2px !important;
    }
    
    .logo-text span {
        font-size: 0.65rem !important;
        letter-spacing: 1px !important;
    }
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--white); /* White on dark hero */
}

nav.sticky .nav-links a {
    color: var(--text); /* Back to text on white bg */
}

.nav-links a:hover, nav.sticky .nav-links a:hover {
    color: var(--accent);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: #000; /* Warna dasar hitam jika video gagal load */
    color: var(--white);
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Overlay gelap agar teks terbaca */
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0; /* Di belakang overlay dan teks */
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero .container {
    position: relative;
    z-index: 2; /* Di atas overlay dan video */
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(50px);
    animation: heroEntry 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: heroEntry 1s cubic-bezier(0.23, 1, 0.32, 1) 0.3s forwards;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0;
    transform: scale(0.9);
    animation: heroBtnEntry 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.6s forwards;
}

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

@keyframes heroBtnEntry {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes heroPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Scroll Down Indicator */
.scroll-down-btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--white);
    opacity: 0.8;
    transition: var(--transition);
}

.scroll-down-btn:hover {
    opacity: 1;
    color: var(--accent);
}

.mouse-wheel {
    width: 26px;
    height: 42px;
    border: 2px solid currentColor;
    border-radius: 20px;
    position: relative;
    display: flex;
    justify-content: center;
}

.mouse-wheel .wheel {
    width: 4px;
    height: 8px;
    background-color: currentColor;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    animation: scrollWheel 1.6s ease-in-out infinite;
}

.scroll-arrows {
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
}

.arrow-bounce {
    animation: arrowBounce 1.6s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    30% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(14px);
    }
}

@keyframes arrowBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(6px);
    }
}

/* Sections */
section {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--accent);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: 1fr; /* Desktop: Single Layer */
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    display: flex; /* Horizontal on Desktop */
    align-items: center;
    gap: 2rem;
    text-align: left;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(74, 59, 50, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
}

.service-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0; /* Don't shrink the icon */
    background: var(--bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--accent);
    color: var(--white);
}

/* About */
.about-flex {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-img {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.about-img img {
    transition: var(--transition);
}

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

.about-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(10, 77, 146, 0.2));
    opacity: 0;
    transition: var(--transition);
}

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

.about-content {
    flex: 1;
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

/* Features */
.features {
    background-color: var(--bg-alt);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
}

.feature-item h4 {
    margin: 1rem 0 0.5rem;
}

/* Contact */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h3 {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-icon {
    color: var(--accent);
    font-size: 1.5rem;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .about-flex, .contact-container {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    /* Mobile: Multi-column (2 columns) */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .service-card {
        flex-direction: column; /* Vertical on Mobile */
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #20ba5a;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    color: #FFF;
}

.whatsapp-float i {
    font-size: 1.8rem;
}

.whatsapp-float span {
    font-family: 'Outfit', sans-serif;
}

@media (max-width: 768px) {
    .whatsapp-float span {
        display: none;
    }
    .whatsapp-float {
        padding: 15px;
        border-radius: 50%;
        bottom: 20px;
        right: 20px;
    }
}

/* Testimonials */
.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-container {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 3rem;
    text-align: center;
    background: var(--bg-alt);
    border-radius: 20px;
    position: relative;
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--accent);
    opacity: 0.2;
    margin-bottom: 1.5rem;
}

.testimonial-card p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text);
    margin-bottom: 2rem;
}

.testimonial-author h4 {
    color: var(--primary);
    margin-bottom: 0.2rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

/* Fleet Gallery & Filters */
.filter-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.fleet-item {
    transition: var(--transition);
}

.fleet-item.hide {
    display: none;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 900px;
    border-radius: 10px;
    animation: zoom 0.6s;
}

@keyframes zoom {
    from {transform: scale(0.1)}
    to {transform: scale(1)}
}

.close-lightbox {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.close-lightbox:hover {
    color: var(--accent);
}

#lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    font-size: 1.2rem;
}

.lightbox-trigger {
    cursor: pointer;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--primary);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}
/* Client Logos */
.client-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 3rem 2rem;
    align-items: center;
    justify-items: center;
    padding: 2rem 1rem;
}

.client-item {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-item img {
    max-width: 150px;
    height: auto;
    max-height: 65px;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-item img.large-logo {
    max-width: 200px;
    max-height: 90px;
    transform: scale(1.15);
}

.client-item img:hover {
    filter: none;
    opacity: 1;
    transform: scale(1.1) translateY(-5px);
}

.client-item img.large-logo:hover {
    transform: scale(1.25) translateY(-5px);
}

@media (max-width: 768px) {
    .client-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1rem;
    }
    .client-item img {
        max-width: 110px;
        max-height: 50px;
    }
}

.back-to-top:hover {
    background: var(--accent);
    transform: translateY(-5px);
}

/* Form Feedback */
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10, 77, 146, 0.1);
}

#submitBtn {
    position: relative;
    overflow: hidden;
}

#submitBtn.loading .btn-text {
    opacity: 0;
}

#submitBtn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s infinite linear;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Direksi & Manajemen Section */
#direksi {
    position: relative;
    background-color: #F6F9F9;
    overflow: hidden;
    padding: 8rem 0;
    z-index: 1;
}

.direksi-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(10, 77, 146, 0.06) 0%, transparent 60%),
                radial-gradient(circle at 20% 80%, rgba(241, 90, 36, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

/* Add a very subtle mesh dot grid to the background */
#direksi::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(10, 77, 146, 0.07) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    opacity: 0.8;
    pointer-events: none;
    z-index: -1;
}

.direksi-container {
    max-width: 1050px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.direksi-row {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    flex-wrap: wrap;
}

.direksi-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(10, 77, 146, 0.06);
    border: 1px solid rgba(10, 77, 146, 0.08);
    padding: 3rem 2rem 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 420px;
    max-width: 100%;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

/* Card pattern banner */
.card-banner-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    z-index: 2;
}

.gold-banner {
    background: linear-gradient(90deg, #F9D976, #E9B646);
}

.teal-banner {
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.slate-banner {
    background: linear-gradient(90deg, #8A9A9A, #4A5F5F);
}

.direksi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 77, 146, 0.01) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.direksi-card:hover {
    transform: translateY(-12px) scale(1.015);
    box-shadow: 0 30px 60px rgba(10, 77, 146, 0.14);
    border-color: rgba(241, 90, 36, 0.3);
}

.direksi-card:hover::before {
    opacity: 1;
}

.featured-card {
    border: 2px solid rgba(10, 77, 146, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(10, 77, 146, 0.02) 100%);
}

.featured-card:hover {
    border-color: var(--accent);
    box-shadow: 0 30px 60px rgba(10, 77, 146, 0.18);
}

.direksi-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 6px 15px rgba(241, 90, 36, 0.3);
    z-index: 3;
}

/* Avatar Wrapper & Glowing Rings */
.direksi-avatar-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin-bottom: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-ring-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px dashed rgba(10, 77, 146, 0.15);
    transition: all 0.8s ease;
}

.ring-gold {
    border-color: rgba(233, 182, 70, 0.2);
}

.ring-teal-gold {
    border-color: rgba(10, 77, 146, 0.3);
    animation: spin 20s infinite linear;
}

.ring-slate {
    border-color: rgba(138, 154, 154, 0.2);
}

.direksi-card:hover .avatar-ring-glow {
    transform: scale(1.1) rotate(45deg);
    border-color: var(--accent);
    border-style: solid;
}

.direksi-avatar-container {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    position: relative;
    box-shadow: 0 10px 25px rgba(10, 77, 146, 0.15);
    border: 4px solid var(--white);
    z-index: 2;
    transition: all 0.4s ease;
}

.direksi-card:hover .direksi-avatar-container {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(10, 77, 146, 0.25);
}

/* Gradients */
.gold-grad {
    background: linear-gradient(135deg, #FFE082 0%, #E9B646 50%, #C79123 100%);
}

.teal-gold-grad {
    background: linear-gradient(135deg, #4DB6AC 0%, var(--primary) 50%, #E9B646 100%);
}

.slate-grad {
    background: linear-gradient(135deg, #CFD8DC 0%, #78909C 50%, #455A64 100%);
}

/* Badge Glows on Avatar */
.avatar-badge-glow {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    border: 2px solid var(--white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 3;
    transition: all 0.3s ease;
}

.direksi-card:hover .avatar-badge-glow {
    transform: scale(1.15) rotate(15deg);
}

.badge-gold {
    background-color: #E9B646;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(233, 182, 70, 0.4);
}

.badge-teal {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(10, 77, 146, 0.4);
}

.badge-slate {
    background-color: #546E7A;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(84, 110, 122, 0.4);
}

/* Text & Info */
.direksi-info {
    width: 100%;
    position: relative;
    z-index: 2;
}

.role-pre-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    opacity: 0.7;
    display: block;
    margin-bottom: 0.3rem;
}

.direksi-info h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.3rem;
    font-weight: 700;
    transition: var(--transition);
}

.direksi-card:hover .direksi-info h3 {
    color: var(--accent);
}

.direksi-role {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 1rem;
}

.direksi-role.text-accent {
    color: var(--accent);
}

.direksi-separator {
    width: 40px;
    height: 3px;
    background: rgba(10, 77, 146, 0.15);
    margin: 0 auto 1.2rem auto;
    border-radius: 5px;
    transition: all 0.4s ease;
}

.direksi-card:hover .direksi-separator {
    width: 70px;
    background: var(--accent);
}

.direksi-bio {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.8rem;
    min-height: 72px; /* Align text blocks nicely */
}

/* Social icons at bottom of card */
.direksi-socials {
    display: flex;
    justify-content: center;
    gap: 1rem;
    opacity: 0.8;
    transition: var(--transition);
}

.direksi-card:hover .direksi-socials {
    opacity: 1;
}

.social-icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-alt);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(10, 77, 146, 0.05);
}

.social-icon-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 6px 12px rgba(10, 77, 146, 0.2);
}

.featured-social:hover {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 6px 12px rgba(241, 90, 36, 0.2);
}

/* Responsiveness for Direksi */
@media (max-width: 992px) {
    .direksi-container {
        gap: 2.5rem;
    }
    .direksi-row {
        gap: 2.5rem;
    }
    .featured-card {
        transform: scale(1) !important;
    }
    .featured-card:hover {
        transform: translateY(-10px) scale(1.02) !important;
    }
}

@media (max-width: 768px) {
    #direksi {
        padding: 5rem 0;
    }
    .direksi-row {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .direksi-card {
        width: 100%;
        max-width: 380px;
        padding: 2.5rem 1.8rem 2rem 1.8rem;
    }
    .direksi-bio {
        min-height: auto;
    }
}

/* ==========================================================================
   INTERACTIVE MULTI-LAYER MAP STUDIO STYLES
   ========================================================================== */

.map-studio-container {
    position: relative;
    width: 100%;
}

.map-controls {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(10, 77, 146, 0.08);
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(10, 77, 146, 0.03);
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.control-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.5rem 0.9rem;
    border-radius: 30px;
    border: 1px solid rgba(10, 77, 146, 0.15);
    background: var(--white);
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.map-btn:hover {
    border-color: var(--primary-light);
    color: var(--primary);
    background: rgba(10, 77, 146, 0.02);
    transform: translateY(-1px);
}

/* Base layer active state (Teal theme) */
.map-btn.active {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: var(--white) !important;
    box-shadow: 0 4px 10px rgba(10, 77, 146, 0.25) !important;
}

/* Overlay active state (Orange Accent theme) */
.map-btn.active-overlay {
    background-color: var(--accent) !important;
    border-color: var(--accent) !important;
    color: var(--white) !important;
    box-shadow: 0 4px 10px rgba(241, 90, 36, 0.25) !important;
}

/* Floating map status indicator */
.map-indicator {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 6px 14px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(10, 77, 146, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: none;
    transition: var(--transition);
}

.map-indicator span {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #2ec4b6;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(46, 196, 182, 0.7);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 8px rgba(46, 196, 182, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(46, 196, 182, 0);
    }
}

/* Custom Leaflet Styling to blend into PHB Theme */
.leaflet-container {
    font-family: 'Inter', sans-serif !important;
}

.leaflet-bar {
    border: none !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
}

.leaflet-bar a {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    color: var(--text) !important;
    transition: var(--transition);
}

.leaflet-bar a:hover {
    background-color: var(--bg-alt) !important;
    color: var(--primary) !important;
}

.leaflet-popup-content-wrapper {
    border-radius: 12px !important;
    box-shadow: 0 10px 25px rgba(10, 77, 146, 0.15) !important;
    border: 1px solid rgba(10, 77, 146, 0.08);
}

.leaflet-popup-content {
    margin: 12px 16px !important;
}

.leaflet-popup-content h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    font-size: 0.95rem;
    margin-bottom: 4px;
    font-weight: 700;
}

.leaflet-popup-content p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

/* Responsive map overrides */
@media (max-width: 576px) {
    .btn-group {
        width: 100%;
    }
    
    .map-btn {
        flex: 1 1 calc(50% - 0.25rem); /* two column grid for buttons on very small screens */
        padding: 0.4rem 0.6rem;
        font-size: 0.72rem;
    }
    
    #interactive-map {
        height: 280px !important;
    }
}

/* Full-viewport absolute map mode (CSS-based Fullscreen) */
.map-studio-container.fullscreen-active {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 99999 !important;
    background: #F4F7F7 !important;
    padding: 1.5rem !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
    box-sizing: border-box !important;
}

.map-studio-container.fullscreen-active #interactive-map {
    flex-grow: 1 !important;
    height: 100% !important;
    border-radius: 15px !important;
    border: 2px solid rgba(10, 77, 146, 0.15) !important;
}

.map-studio-container.fullscreen-active .map-header {
    background: white !important;
    padding: 0.8rem 1.2rem !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
    border: 1px solid rgba(10, 77, 146, 0.05) !important;
}

.map-studio-container.fullscreen-active .map-controls {
    background: white !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
}

/* Fleet Card Facilities Icons styling */
.fleet-facilities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(10, 77, 146, 0.08);
    color: var(--primary);
    font-size: 1.15rem;
}

.fleet-facilities i {
    transition: var(--transition);
    cursor: pointer;
}

.fleet-facilities i:hover {
    color: var(--accent);
    transform: translateY(-3px) scale(1.2);
}

/* Direksi Avatar Image styling */
.direksi-avatar-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

/* ==========================================================================
   MOBILE RESPONSIVE NAVIGATION & LAYOUT STYLES
   ========================================================================== */

/* Menu Toggle Button (Hidden on Desktop) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1005;
    padding: 0;
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--white); /* White default on hero overlay */
    border-radius: 5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.sticky .menu-toggle .bar {
    background-color: var(--primary); /* Teal when sticky is active */
}

/* Active animation for hamburger into X */
.menu-toggle.active .bar {
    background-color: var(--primary) !important; /* Batang silang berubah menjadi hijau teal gelap agar terlihat jelas di atas background putih drawer */
}

.menu-toggle.active:hover .bar, .menu-toggle.active:active .bar {
    background-color: var(--accent) !important; /* Efek oranye aksen saat di-hover/ditekan */
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Responsive Media Queries (Mobile Viewport) */
@media (max-width: 768px) {
    /* Section paddings compression */
    section {
        padding: 4.5rem 0 !important;
    }

    /* Menu Toggle display */
    .menu-toggle {
        display: flex;
    }

    /* Nav Links Sidebar Drawer */
    .nav-links {
        display: flex !important;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        position: fixed;
        top: 0;
        right: -100%; /* Offscreen */
        width: 75%;
        max-width: 290px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 6.5rem 2rem 2.5rem 2rem;
        box-shadow: -8px 0 25px rgba(0, 0, 0, 0.08);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        gap: 1.5rem;
        box-sizing: border-box;
    }

    .nav-links.active {
        right: 0; /* Slide in drawer */
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        color: var(--text) !important;
        font-family: 'Outfit', sans-serif;
        font-size: 1.15rem;
        font-weight: 700;
        display: block;
        width: 100%;
        padding: 0.6rem 0;
        border-bottom: 1px solid rgba(10, 77, 146, 0.05);
        letter-spacing: 0.5px;
    }

    .nav-links a:hover {
        color: var(--accent) !important;
        border-bottom-color: var(--accent);
    }

    /* Logo Klien (Client Logos) Responsive - Bright & Large 3 Columns layout */
    .client-logos {
        grid-template-columns: repeat(3, 1fr) !important; /* Diubah dari 4 menjadi 3 kolom agar lebih besar */
        gap: 1.5rem 1rem !important;
        padding: 1rem 0.5rem !important;
    }

    .client-item img {
        max-width: 100px !important; /* Diperbesar dari 65px */
        max-height: 45px !important; /* Diperbesar dari 28px */
        opacity: 1 !important; /* Dibuat terang (opacity penuh) */
        filter: none !important; /* Menghilangkan grayscale agar warna aslinya muncul terang */
        transition: all 0.3s ease !important;
    }

    .client-item img.large-logo {
        max-width: 110px !important; /* Diperbesar dari 78px */
        max-height: 52px !important;
        transform: scale(1.0) !important;
    }

    .client-item img:hover, .client-item img:active {
        opacity: 1 !important;
        filter: none !important;
    }

    /* Hero section responsive tweaks */
    .hero {
        height: 100dvh !important; /* Full dynamic screen height on mobile */
    }

    .hero h1 {
        font-size: 2.1rem !important;
        line-height: 1.3 !important;
    }

    .hero p {
        font-size: 0.95rem !important;
        margin-bottom: 2rem !important;
        padding: 0 0.5rem;
    }

    .hero-btns {
        flex-direction: column !important;
        width: 100% !important;
        max-width: 260px !important;
        margin: 0 auto !important;
        gap: 0.8rem !important;
    }

    .hero-btns .btn {
        width: 100% !important;
        padding: 0.8rem 1.5rem !important;
        font-size: 0.8rem !important;
    }

    /* Amenities & Services Card Adjustments */
    .amenities-showcase {
        padding: 2.5rem 1.5rem !important;
        border-radius: 20px !important;
        margin-top: 3.5rem !important;
    }

    .amenities-showcase .section-header h3 {
        font-size: 1.4rem !important;
    }

    .nav-links a.active {
        border-bottom: none !important;
        border-left: 3px solid var(--accent) !important;
        padding-left: 0.8rem !important;
        color: var(--accent) !important;
    }

    .subpage-banner {
        padding: 7rem 0 3.5rem 0 !important;
    }

    .subpage-banner h1 {
        font-size: 1.8rem !important;
    }

    .subpage-banner p {
        font-size: 0.88rem !important;
        padding: 0 1.2rem;
    }

    /* Sejarah & Dedikasi Mobile Responsive Tweaks */
    .about-img {
        max-width: 340px !important;
        margin: 0 auto 1.5rem auto !important;
        border-radius: 16px !important;
    }
    
    .about-img img {
        height: 200px !important;
        width: 100% !important;
        object-fit: cover !important;
    }

    .about-content {
        text-align: center !important;
    }
    
    .about-content h3 {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .about-content p {
        font-size: 0.88rem !important;
        text-align: justify !important;
        text-align-last: center !important;
        line-height: 1.6 !important;
        margin-bottom: 1rem !important;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.5rem !important;
        margin: 1.5rem 0 !important;
    }

    .feature-item i {
        font-size: 1.2rem !important;
    }

    .feature-item h4 {
        font-size: 0.72rem !important;
        margin-top: 0.4rem !important;
    }

    /* Direksi Responsive Tweaks */
    .direksi-card {
        max-width: 320px !important;
        padding: 2rem 1.2rem 1.8rem 1.2rem !important;
        border-radius: 20px !important;
    }
    
    .direksi-avatar-wrapper {
        width: 100px !important;
        height: 100px !important;
        margin-bottom: 1.2rem !important;
    }
    
    .direksi-avatar-container {
        width: 90px !important;
        height: 90px !important;
        border-width: 3px !important;
    }
    
    .avatar-badge-glow {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.75rem !important;
    }
    
    .direksi-info h3 {
        font-size: 1.2rem !important;
    }
    
    .direksi-role {
        font-size: 0.75rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    .direksi-separator {
        margin-bottom: 0.8rem !important;
    }
    
    .direksi-bio {
        font-size: 0.8rem !important;
        margin-bottom: 1.2rem !important;
        line-height: 1.5 !important;
        min-height: auto !important;
    }
    
    .social-icon-btn {
        width: 34px !important;
        height: 34px !important;
        font-size: 0.85rem !important;
    }
}

/* ==========================================================================
   SUBPAGE NAVIGATION & PAGE BANNERS STYLES
   ========================================================================== */

/* Subpage Navigation (Force solid sticky style immediately) */
nav.subpage-nav {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    padding: 1rem 0 !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05) !important;
    position: fixed !important;
}

nav.subpage-nav .logo {
    color: var(--primary) !important;
}

nav.subpage-nav .nav-links a {
    color: var(--text) !important;
}

nav.subpage-nav .menu-toggle .bar {
    background-color: var(--primary) !important;
}

/* Active Nav Link Styling */
.nav-links a.active {
    color: var(--accent) !important;
    border-bottom: 2px solid var(--accent) !important;
    font-weight: 700 !important;
}

/* Subpage Banner Component */
.subpage-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #174241 100%);
    padding: 8.5rem 0 4.5rem 0; /* Extra top padding to clear fixed navbar */
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.subpage-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    opacity: 0.8;
    pointer-events: none;
    z-index: -1;
}

/* Add a dynamic light glow in the corner */
.subpage-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(241, 90, 36, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.subpage-banner h1 {
    font-size: 2.8rem;
    margin-bottom: 0.6rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.subpage-banner p {
    font-size: 1.05rem;
    opacity: 0.85;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Visi & Misi Premium Cards hover effects */
.vision-card {
    transition: var(--transition);
}

.mission-card {
    transition: var(--transition);
}

.vision-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary) !important;
    background-color: var(--white) !important;
    box-shadow: 0 20px 40px rgba(10, 77, 146, 0.12) !important;
}

.mission-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent) !important;
    background-color: var(--white) !important;
    box-shadow: 0 20px 40px rgba(241, 90, 36, 0.12) !important;
}

@media (max-width: 768px) {
    .visi-misi-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

/* ==========================================================================
   FOOTER PREMIUM OPTIMIZATIONS
   ========================================================================== */
.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr;
    gap: 3.5rem;
}

.footer-socials {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-socials a:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(241, 90, 36, 0.35);
    border-color: var(--accent);
}

footer ul li a {
    position: relative;
    transition: var(--transition);
    opacity: 0.75;
    display: inline-block;
}

footer ul li a:hover {
    opacity: 1;
    color: var(--accent) !important;
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 2.5rem 0 1.5rem !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        text-align: center !important;
    }
    
    .footer-grid > div h2 {
        font-size: 1.4rem !important;
        margin-bottom: 0.5rem !important;
    }

    .footer-grid > div p {
        margin-bottom: 1rem !important;
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
    }

    .footer-grid > div h4 {
        font-size: 0.95rem !important;
        margin-bottom: 0.6rem !important;
    }

    footer ul {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 0.5rem 1.2rem !important;
        padding: 0 !important;
    }

    footer ul li {
        margin-bottom: 0 !important;
        font-size: 0.85rem !important;
    }

    .footer-socials {
        justify-content: center !important;
        margin-top: 1rem !important;
        gap: 0.8rem !important;
    }

    .footer-socials a {
        width: 36px !important;
        height: 36px !important;
        font-size: 0.88rem !important;
    }

    footer ul li a:hover {
        transform: translateY(-2px) !important;
    }

    /* Compact Copyright Bar */
    footer div[style*="margin-top: 4rem"] {
        margin-top: 2rem !important;
        padding-top: 1.2rem !important;
        font-size: 0.78rem !important;
    }
}

/* ==========================================================================
   INTERACTIVE TIMELINE (tentang.html)
   ========================================================================== */
.timeline-section {
    padding: 5rem 0;
    position: relative;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary) 0%, var(--accent) 100%);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    right: -12px;
    background-color: var(--white);
    border: 4px solid var(--accent);
    top: 30px;
    border-radius: 50%;
    z-index: 1;
    transition: var(--transition);
    box-shadow: 0 0 10px rgba(241, 90, 36, 0.4);
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

.timeline-item.right::after {
    left: -12px;
}

.timeline-content {
    padding: 1.5rem;
    background-color: var(--white);
    position: relative;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(10, 77, 146, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(10, 77, 146, 0.1);
    border-color: rgba(241, 90, 36, 0.2);
}

.timeline-media {
    position: relative;
    width: 100%;
    height: 180px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(10, 77, 146, 0.1);
}

.timeline-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
    cursor: pointer;
}

.timeline-item.left .timeline-img {
    filter: sepia(0.2) contrast(1.05);
}

.timeline-content:hover .timeline-img {
    transform: scale(1.06);
    filter: sepia(0) contrast(1);
}

.timeline-photo-tag {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(10, 47, 92, 0.88);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.timeline-item:hover::after {
    background-color: var(--accent);
    transform: scale(1.2);
    box-shadow: 0 0 15px var(--accent);
}

.timeline-year {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .timeline::after {
        display: none !important; /* Hapus garis vertikal di mobile */
    }
    
    .timeline-item {
        width: 100% !important;
        left: 0 !important;
        padding: 0 !important;
        margin-bottom: 1.5rem !important;
    }
    
    .timeline-item::after {
        display: none !important; /* Hapus bulatan mengapung di mobile */
    }
    
    .timeline-item.right {
        left: 0 !important;
    }
    
    .timeline-content {
        padding: 1.8rem 1.4rem !important;
        border-radius: 18px !important;
        border-left: 4px solid var(--accent) !important; /* Aksen garis kiri yang rapi menggantikan bulatan */
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04) !important;
    }

    .timeline-year {
        background: rgba(241, 90, 36, 0.1) !important;
        color: var(--accent) !important;
        padding: 0.25rem 0.8rem !important;
        border-radius: 20px !important;
        font-size: 0.85rem !important;
        font-weight: 700 !important;
        display: inline-block !important;
        margin-bottom: 0.8rem !important;
    }

    .timeline-content h4 {
        font-size: 1.1rem !important;
        margin-bottom: 0.5rem !important;
    }

    .timeline-content p {
        font-size: 0.88rem !important;
        line-height: 1.6 !important;
    }
}

/* ==========================================================================
   SLEEK MODERN FLEET CARDS (armada.html & index.html)
   ========================================================================== */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.fleet-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(10, 77, 146, 0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.fleet-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(10, 77, 146, 0.14);
    border-color: var(--primary);
}

.fleet-card-img {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #0d1b1b;
}

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

.fleet-card:hover .fleet-card-img img {
    transform: scale(1.06);
}

.fleet-card-body {
    padding: 1.25rem 1.4rem;
    display: flex;
    flex-direction: column;
}

.fleet-card-body h3 {
    color: var(--primary);
    font-size: 1.15rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    margin: 0 0 0.25rem 0;
    transition: color 0.3s ease;
}

.fleet-card:hover .fleet-card-body h3 {
    color: var(--accent);
}

.fleet-card-sub {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
    margin: 0 0 0.6rem 0;
}

.fleet-facilities {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.fleet-facilities i {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-alt);
    color: var(--primary);
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(10, 77, 146, 0.08);
}

.fleet-card:hover .fleet-facilities i {
    background: rgba(10, 77, 146, 0.1);
    color: var(--accent);
}

/* ==========================================================================
   FLEET DETAIL MODAL STYLES (armada.html)
   ========================================================================== */
.fleet-modal {
    display: none;
    position: fixed;
    z-index: 10500;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(13, 27, 27, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 2rem 1rem;
    align-items: center;
    justify-content: center;
}

.fleet-modal.active {
    display: flex;
}

.fleet-modal-content {
    background: var(--white);
    width: 100%;
    max-width: 1100px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    animation: modalReveal 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.close-fleet-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

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

.fleet-modal-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    max-height: 85vh;
    overflow-y: auto;
}

@media (max-width: 992px) {
    .fleet-modal-grid {
        grid-template-columns: 1fr;
        max-height: 90vh;
    }
}

/* Left side gallery styles */
.fleet-modal-gallery {
    background: #0d1b1b;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.main-img-container {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

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

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.gallery-tab-btn {
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-tab-btn.active, .gallery-tab-btn:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(241, 90, 36, 0.3);
}

/* Right side info styles */
.fleet-modal-info {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.fleet-modal-info h2 {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    font-size: 2rem;
    margin: 0;
    font-weight: 800;
}

.fleet-modal-category {
    font-size: 0.95rem;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: -1.2rem;
}

.fleet-modal-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Specs styles */
.fleet-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    background: var(--bg-alt);
    padding: 1.2rem;
    border-radius: 16px;
    border: 1px solid rgba(10, 77, 146, 0.05);
}

.spec-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.spec-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-val {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
}

/* Facilities list */
.fleet-facilities-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.facility-list-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--text);
    font-weight: 500;
}

.facility-list-item i {
    color: var(--accent);
    font-size: 1rem;
}

/* Booking button */
.fleet-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: #25d366;
    color: var(--white);
    padding: 1rem;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.fleet-book-btn:hover {
    background: #20ba5a;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

@media (max-width: 576px) {
    .fleet-modal {
        padding: 0.5rem;
    }
    
    .fleet-modal-content {
        border-radius: 16px;
    }
    
    .fleet-modal-gallery {
        padding: 1.5rem 1rem;
    }
    
    .main-img-container {
        height: 250px;
    }
    
    .fleet-modal-info {
        padding: 2rem 1.2rem;
    }
    
    .fleet-specs, .fleet-facilities-list {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   LEGALITAS PERUSAHAAN & CORPORATE DECK STYLES
   ========================================================================== */
.legality-section {
    padding: 6rem 0;
    background: var(--bg-light);
    position: relative;
}

.legality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
    margin-top: 3rem;
}

.legality-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(10, 77, 146, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.legality-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent);
    transition: var(--transition);
}

.legality-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(10, 77, 146, 0.12);
    border-color: var(--primary-light);
}

.legality-card:hover::before {
    width: 6px;
    background: var(--primary);
}

.legality-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(10, 77, 146, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}

.legality-card h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #4b5563;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.legality-card .legality-value {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111827;
    font-family: 'Outfit', sans-serif;
    line-height: 1.4;
    word-break: break-word;
}

/* Directors & Leadership Cards */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.leadership-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(10, 77, 146, 0.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.leadership-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(10, 77, 146, 0.12);
}

.leadership-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 8px 20px rgba(10, 77, 146, 0.25);
    border: 3px solid var(--white);
}

.leadership-card h3 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.4rem;
}

.leadership-card p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Compro Download Banner */
.compro-banner {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    border-radius: 24px;
    padding: 3.5rem 2.5rem;
    color: var(--white);
    margin-top: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    box-shadow: 0 20px 40px rgba(27, 73, 72, 0.3);
    position: relative;
    overflow: hidden;
}

.compro-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.compro-banner-content h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 0.6rem;
}

.compro-banner-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    max-width: 600px;
}

/* ==========================================================================
   SIMULATED CUSTOMER TESTIMONIALS STYLES
   ========================================================================== */
.testimonials-section {
    padding: 6rem 0;
    background: var(--bg-alt);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.2rem;
    border: 1px solid rgba(10, 77, 146, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(10, 77, 146, 0.12);
    border-color: rgba(10, 77, 146, 0.2);
}

.quote-mark {
    display: none !important;
}

.testimonial-text {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 0.8rem;
    flex-grow: 1;
    order: 1;
}

.star-rating {
    display: flex;
    gap: 0.3rem;
    color: #ffc107;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    order: 2;
}

.reviewer-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    order: 3;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Outfit', sans-serif;
    flex-shrink: 0;
}

.reviewer-details h4 {
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 0.2rem;
}

.reviewer-details p {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVENESS ENHANCEMENTS
   ========================================================================== */
.visi-misi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

@media (max-width: 992px) {
    .visi-misi-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
    
    .legal-box-card {
        padding: 1.8rem 1.2rem !important;
        flex-direction: column !important;
        text-align: center !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .legal-box-card > div {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .legal-box-card a.btn {
        width: 100% !important;
        box-sizing: border-box !important;
        justify-content: center !important;
        font-size: 0.88rem !important;
        padding: 0.85rem 1rem !important;
    }
}

@media (max-width: 768px) {
    .subpage-banner {
        padding: 4rem 0 3rem 0;
        text-align: center;
    }

    .subpage-banner h1 {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }

    .subpage-banner p {
        font-size: 0.92rem !important;
    }

    .legality-grid {
        grid-template-columns: 1fr !important;
        gap: 1.2rem !important;
        margin-top: 2rem !important;
    }

    .legality-card {
        padding: 1.5rem 1.2rem !important;
        grid-column: span 1 !important;
    }

    .legality-card .legality-value {
        font-size: 1.05rem !important;
    }

    .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .testimonial-card {
        padding: 1.6rem 1.2rem !important;
    }

    /* Tampilkan hanya 1 ulasan di beranda pada mobile (pada windows/desktop tetap 3) */
    #testimonials .testimonials-grid .testimonial-card:nth-child(n+2) {
        display: none !important;
    }

    .amenities-showcase {
        padding: 2.5rem 1.2rem !important;
        border-radius: 20px !important;
    }

    .section-header h2 {
        font-size: 1.6rem !important;
    }

    .section-header p {
        font-size: 0.9rem !important;
    }

    .hero-content h1 {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 0.95rem !important;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }

    .leadership-card {
        padding: 1.8rem 1.2rem !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.2rem !important;
    }

    .legality-card h4 {
        font-size: 0.8rem !important;
    }

    .reviewer-profile {
        gap: 0.8rem;
    }

    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }
}

/* ==========================================================================
   ADMIN PORTAL & REVIEWS MANAGEMENT STYLES
   ========================================================================== */
.admin-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    background: rgba(241, 90, 36, 0.12);
    color: var(--accent);
    border: 1px solid rgba(241, 90, 36, 0.25);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.admin-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(10, 77, 146, 0.06);
    border: 1px solid rgba(10, 77, 146, 0.08);
    margin-bottom: 2rem;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.stat-box {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 1.5rem;
    border-radius: 14px;
    border: 1px solid rgba(10, 77, 146, 0.08);
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(10, 77, 146, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.stat-box.accent .stat-icon {
    background: rgba(241, 90, 36, 0.1);
    color: var(--accent);
}

.stat-info h3 {
    font-size: 1.6rem;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.admin-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.admin-table th {
    background: #0a4d92;
    color: #ffffff;
    padding: 1rem 1.2rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.admin-table td {
    padding: 1rem 1.2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
    vertical-align: middle;
}

.admin-table tr:hover {
    background: rgba(240, 244, 248, 0.5);
}

.btn-action-edit {
    background: #e0f2fe;
    color: #0369a1;
    border: none;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: var(--transition);
}

.btn-action-edit:hover {
    background: #0284c7;
    color: #ffffff;
}

.btn-action-delete {
    background: #ffe4e6;
    color: #e11d48;
    border: none;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: var(--transition);
}

.btn-action-delete:hover {
    background: #e11d48;
    color: #ffffff;
}

/* Toast notification */
.toast-msg {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #0a4d92;
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 9999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast-msg.show {
    transform: translateY(0);
    opacity: 1;
}

/* ==========================================================================
   ADMIN MOBILE TABS & FLEET/ACCESSORIES MANAGER STYLES
   ========================================================================== */
.admin-nav-tabs {
    display: flex;
    gap: 0.8rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(10, 77, 146, 0.1);
    -webkit-overflow-scrolling: touch;
}

.admin-nav-tab {
    padding: 0.85rem 1.5rem;
    border-radius: 12px;
    background: var(--white);
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    border: 1px solid rgba(10, 77, 146, 0.12);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    user-select: none;
}

.admin-nav-tab:hover {
    background: rgba(10, 77, 146, 0.05);
    color: var(--primary);
}

.admin-nav-tab.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(10, 77, 146, 0.25);
}

.admin-tab-pane {
    display: none;
}

.admin-tab-pane.active {
    display: block;
    animation: adminTabFade 0.3s ease-in-out;
}

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

@media (max-width: 768px) {
    .admin-nav-tabs {
        gap: 0.5rem;
    }
    .admin-nav-tab {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
    .admin-card {
        padding: 1.25rem !important;
        border-radius: 14px !important;
    }
}

/* ==========================================================================
   DRAG & DROP PHOTO UPLOAD ZONE (ADMIN PANEL)
   ========================================================================== */
.dropzone-container {
    position: relative;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-bottom: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 90px;
}

.dropzone-container:hover, .dropzone-container.dragover {
    border-color: var(--accent);
    background: rgba(241, 90, 36, 0.04);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(241, 90, 36, 0.12);
}

.dropzone-icon {
    font-size: 1.7rem;
    color: var(--accent);
    margin-bottom: 0.3rem;
    transition: transform 0.2s ease;
}

.dropzone-container:hover .dropzone-icon {
    transform: translateY(-3px) scale(1.1);
}

.dropzone-text {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.dropzone-text strong {
    color: var(--primary);
    text-decoration: underline;
}

.dropzone-preview-wrapper {
    position: relative;
    width: 100%;
    max-height: 150px;
    margin-top: 0.3rem;
    display: none;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.dropzone-preview-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
}

.dropzone-remove-btn {
    position: absolute;
    top: 6px;
    right: 6px;
    background: rgba(225, 29, 72, 0.88);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.2s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}


.dropzone-remove-btn:hover {
    background: #e11d48;
    transform: scale(1.1);
}

/* ============================================================
   HISTORY MULTI-PHOTO SLIDER
   ============================================================ */
.history-slider {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    user-select: none;
}

.hs-track {
    position: relative;
    width: 100%;
}

.hs-slide {
    display: none;
    width: 100%;
}

.hs-slide.active {
    display: block;
}

.hs-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    cursor: zoom-in;
    transition: opacity 0.3s ease;
}

/* Prev / Next arrow buttons */
.hs-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 77, 146, 0.75);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 0.8rem;
    transition: background 0.2s, transform 0.2s;
    backdrop-filter: blur(4px);
}

.hs-btn:hover {
    background: var(--accent);
    transform: translateY(-50%) scale(1.1);
}

.hs-prev { left: 8px; }
.hs-next { right: 8px; }

/* Photo counter badge */
.hs-counter {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    pointer-events: none;
    z-index: 10;
}

/* Dot indicators */
.hs-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 8px 0 4px;
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
}

.hs-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    border: none;
}

.hs-dot.active {
    background: #fff;
    transform: scale(1.3);
}

/* ============================================================
   HISTORY PHOTO LIGHTBOX (fullscreen)
   ============================================================ */
#historyLightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

#historyLightbox.open {
    display: flex;
}

.hlb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 15, 35, 0.92);
    cursor: pointer;
    backdrop-filter: blur(6px);
}

.hlb-box {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 92vw;
    max-height: 92vh;
    gap: 0.8rem;
}

.hlb-img {
    max-width: 88vw;
    max-height: 78vh;
    border-radius: 14px;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    transition: opacity 0.2s ease;
    display: block;
}

.hlb-close {
    position: fixed;
    top: 18px;
    right: 22px;
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    backdrop-filter: blur(4px);
    z-index: 2;
}

.hlb-close:hover { background: var(--accent); }

.hlb-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.12);
    border: none;
    color: #fff;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.25s;
    backdrop-filter: blur(4px);
    z-index: 2;
}

.hlb-prev { left: 16px; }
.hlb-next { right: 16px; }

.hlb-nav:hover {
    background: var(--accent);
    transform: translateY(-50%) scale(1.1);
}

.hlb-counter {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
}

@media (max-width: 600px) {
    .hs-img { height: 200px; }
    .hlb-nav { width: 40px; height: 40px; font-size: 1rem; }
    .hlb-prev { left: 6px; }
    .hlb-next { right: 6px; }
}
