/* ========================================================== */
/* 1. RESET & VARIABEL UTAMA                                 */
/* ========================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    scroll-behavior: smooth;
}

:root {
    --bg-dark: #07070a;
    --red-neon: #ff1f3a;
    --red-glow: rgba(255, 31, 58, 0.6);
    --glass-bg: rgba(20, 20, 25, 0.45);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    background-color: var(--bg-dark);
    color: #ffffff;
    overflow-x: hidden;
}

.glow-bg {
    position: fixed;
    top: -20%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(255, 31, 58, 0.18) 0%, rgba(7, 7, 10, 0) 70%);
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
}

/* ========================================================== */
/* 2. FLOATING NAVBAR                                         */
/* ========================================================== */
.header {
    position: fixed;
    top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 10px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
}

.logo-img {
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 0 15px var(--red-glow);
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.neon-text {
    color: var(--red-neon);
    text-shadow: 0 0 10px var(--red-glow), 0 0 20px var(--red-neon);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: #a0a0b0;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--red-neon);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 10px var(--red-neon);
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active { color: #ffffff; }
.nav-link:hover::before, .nav-link.active::before { opacity: 1; }

.btn-glowing {
    background: linear-gradient(135deg, #ff1f3a, #cc001a);
    color: white;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 0 15px var(--red-glow);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    cursor: pointer;
}

.btn-glowing:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 0 25px var(--red-neon);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger div {
    width: 25px;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
}

/* ========================================================== */
/* 3. HERO SECTION & EFEK GELEMBUNG CAHAYA (BOKEH)            */
/* ========================================================== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
}

.hero-image-frame {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    perspective: 1200px;
}

.slideshow-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0; 
    animation: fadeInPhoto 1.5s ease forwards; 
}

@keyframes fadeInPhoto {
    100% { opacity: 1; }
}

.hero-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out, transform 8s ease;
    animation: liveBreathing 7s infinite alternate ease-in-out;
}

.hero-slide.active-slide {
    opacity: 1;
    transform: scale(1.05);
}

@keyframes liveBreathing {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.08) rotate(0.5deg); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(7, 7, 10, 0.2) 0%, rgba(7, 7, 10, 0.85) 85%);
    z-index: 2;
}

.bubbles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.light-bubble {
    position: absolute;
    bottom: -50px;
    border-radius: 50%;
    animation: floatUp infinite ease-in;
    mix-blend-mode: screen; 
}

@keyframes floatUp {
    0% {
        transform: translateY(0) scale(0.5);
        opacity: 0;
    }
    30% {
        opacity: 0.8;
    }
    80% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-400px) scale(2);
        opacity: 0;
    }
}

.slide-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 4;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.dot.active {
    width: 22px;
    background: var(--red-neon);
    border-radius: 10px;
    box-shadow: 0 0 10px var(--red-neon);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 850px;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.hero-content.show {
    opacity: 1;
    transform: translateY(0);
}

.hero-badge {
    display: inline-block;
    padding: 5px 16px;
    background: rgba(255, 31, 58, 0.15);
    border: 1px solid var(--red-neon);
    color: var(--red-neon);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    box-shadow: 0 0 10px rgba(255, 31, 58, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 15px;
    color: white;
}

.hero-desc {
    font-size: 1.1rem;
    color: #d0d0e0;
    margin-bottom: 30px;
    font-weight: 300;
    line-height: 1.5;
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* ========================================================== */
/* 4. SECTION LAYANAN                                         */
/* ========================================================== */
.services-section {
    padding: 100px 5%;
    position: relative;
    z-index: 5;
    background: var(--bg-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #a0a0b0;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 31, 58, 0.6);
    box-shadow: 0 15px 30px rgba(255, 31, 58, 0.15);
}

.service-icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px auto;
    background: rgba(255, 31, 58, 0.08);
    border: 1px solid rgba(255, 31, 58, 0.3);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 0 15px rgba(255, 31, 58, 0.1);
}

.service-svg {
    width: 32px;
    height: 32px;
    color: var(--red-neon);
    filter: drop-shadow(0 0 8px var(--red-glow));
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon-box {
    background: var(--red-neon);
    border-color: var(--red-neon);
    box-shadow: 0 0 25px var(--red-neon);
    transform: scale(1.08) rotate(3deg);
}

.service-card:hover .service-svg {
    color: #ffffff;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
}

.service-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.service-detail {
    color: #d0d0e0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================================== */
/* 5. SECTION ARMADA KAMI (SIDE-BY-SIDE DESAIN KEREN)         */
/* ========================================================== */
.fleet-section {
    padding: 100px 5%;
    position: relative;
    z-index: 5;
    background: rgba(10, 10, 15, 0.7);
}

.fleet-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.fleet-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 35px;
    backdrop-filter: blur(12px);
    transition: all 0.4s ease;
}

.fleet-card:hover {
    border-color: rgba(255, 31, 58, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.fleet-card.reverse {
    flex-direction: row-reverse;
}

.fleet-img-wrapper {
    flex: 1;
    position: relative;
    height: 320px;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.fleet-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fleet-img-wrapper:hover .fleet-img {
    transform: scale(1.08);
}

.img-zoom-hint {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(7, 7, 10, 0.85);
    backdrop-filter: blur(6px);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid var(--red-neon);
    box-shadow: 0 0 10px rgba(255, 31, 58, 0.4);
    pointer-events: none;
    transition: all 0.3s ease;
}

.fleet-img-wrapper:hover .img-zoom-hint {
    background: var(--red-neon);
    box-shadow: 0 0 15px var(--red-neon);
}

.fleet-info {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.fleet-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 31, 58, 0.12);
    border: 1px solid var(--red-neon);
    color: var(--red-neon);
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 15px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.fleet-badge.VIP {
    background: rgba(255, 215, 0, 0.12);
    border-color: #ffd700;
    color: #ffd700;
}

.fleet-badge.CARGO {
    background: rgba(0, 191, 255, 0.12);
    border-color: #00bfff;
    color: #00bfff;
}

.fleet-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}

.fleet-desc {
    color: #c0c0d0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ========================================================== */
/* 6. MODAL POPUP LIGHTBOX                                    */
/* ========================================================== */
.fleet-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.fleet-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 8, 0.88);
    backdrop-filter: blur(15px);
}

.modal-content {
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 950px;
    max-height: 90vh;
    background: rgba(18, 18, 24, 0.95);
    border: 1px solid var(--red-neon);
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 0 50px rgba(255, 31, 58, 0.3);
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fleet-modal.open .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2.2rem;
    color: #a0a0b0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover { color: var(--red-neon); }

.modal-body {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.modal-img-box {
    flex: 1.1;
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-details {
    flex: 1;
}

.modal-title {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    margin: 10px 0 15px 0;
}

.modal-desc {
    color: #d0d0e0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.modal-specs h4 {
    color: var(--red-neon);
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.modal-specs ul {
    list-style: none;
    margin-bottom: 25px;
}

.modal-specs li {
    color: #ffffff;
    font-size: 0.9rem;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ========================================================== */
/* 7. SCROLL REVEAL & SECTION MENGAPA MEMILIH KAMI            */
/* ========================================================== */
.reveal-left, .reveal-right, .reveal-bottom {
    opacity: 0;
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left { transform: translateX(-80px); }
.reveal-right { transform: translateX(80px); }
.reveal-bottom { transform: translateY(80px); }

.reveal-left.active, 
.reveal-right.active, 
.reveal-bottom.active {
    opacity: 1;
    transform: translate(0);
}

.why-section {
    padding: 100px 5%;
    position: relative;
    z-index: 5;
    background: var(--bg-dark);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 35px 30px;
    backdrop-filter: blur(10px);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.why-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255, 31, 58, 0.5);
    box-shadow: 0 15px 35px rgba(255, 31, 58, 0.15);
}

.why-icon-box {
    flex-shrink: 0;
    width: 65px;
    height: 65px;
    background: rgba(255, 31, 58, 0.08);
    border: 1px solid rgba(255, 31, 58, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red-neon);
    transition: transform 0.4s ease;
}

.why-card:hover .why-icon-box {
    background: var(--red-neon);
    color: white;
    box-shadow: 0 0 20px var(--red-neon);
    transform: scale(1.05) rotate(-5deg);
}

.why-icon-box svg {
    width: 30px;
    height: 30px;
    filter: drop-shadow(0 0 5px var(--red-glow));
}

.why-text h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    margin-top: 5px;
}

.why-text p {
    color: #c0c0d0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================================== */
/* 8. SECTION ARTIKEL & EDUKASI                               */
/* ========================================================== */
.article-section {
    padding: 100px 5%;
    position: relative;
    z-index: 5;
    background: rgba(10, 10, 15, 0.7);
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.article-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 31, 58, 0.5);
    box-shadow: 0 15px 30px rgba(255, 31, 58, 0.15);
}

.article-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .article-img { transform: scale(1.1); }

.article-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.article-date {
    font-size: 0.8rem;
    color: var(--red-neon);
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-title {
    font-size: 1.3rem;
    color: white;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.4;
}

.article-excerpt {
    color: #c0c0d0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.btn-read-more {
    background: transparent;
    border: none;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    text-align: left;
    transition: color 0.3s;
}

.btn-read-more:hover { color: var(--red-neon); }

.article-modal-content { max-width: 800px; padding: 40px; }
.article-modal-img { width: 100%; height: 350px; object-fit: cover; border-radius: 16px; margin-bottom: 25px; border: 1px solid rgba(255,255,255,0.1); }
.article-modal-body { max-height: 50vh; overflow-y: auto; padding-right: 15px; }
.article-modal-body p { color: #d0d0e0; font-size: 1.05rem; line-height: 1.8; margin-bottom: 18px; }
.article-modal-body strong { color: white; }

/* ========================================================== */
/* 9. SECTION TESTIMONI SLIDER                                */
/* ========================================================== */
.testimonial-section {
    padding: 100px 5%;
    position: relative;
    z-index: 5;
    background: var(--bg-dark);
}

.testimonial-slider-container {
    max-width: 750px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.testimonial-card {
    min-width: 100%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-sizing: border-box;
}

.testimonial-stars {
    color: #ffd700;
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.testimonial-text {
    color: #e0e0f0;
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.testimonial-info {
    color: var(--red-neon);
    font-size: 0.85rem;
    font-weight: 500;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.testi-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease;
}

.testi-dot.active {
    width: 22px;
    background: var(--red-neon);
    border-radius: 10px;
    box-shadow: 0 0 10px var(--red-neon);
}

/* ========================================================== */
/* 10. FOOTER SECTION                                         */
/* ========================================================== */
.footer-section {
    background: #050508;
    border-top: 1px solid rgba(255, 31, 58, 0.3);
    padding: 80px 5% 0 5%;
    position: relative;
    z-index: 5;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    margin-bottom: 20px;
}

.footer-desc {
    color: #a0a0b0;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-heading {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--red-neon);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--red-neon);
}

.footer-links, .footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a, .footer-contact a, .footer-contact li {
    color: #a0a0b0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover, .footer-contact a:hover {
    color: var(--red-neon);
    text-shadow: 0 0 8px rgba(255, 31, 58, 0.4);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 31, 58, 0.08);
    border: 1px solid rgba(255, 31, 58, 0.3);
    border-radius: 50%;
    color: white;
    transition: all 0.4s ease;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    background: var(--red-neon);
    box-shadow: 0 0 20px var(--red-neon);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    padding: 25px 0;
    color: #606070;
    font-size: 0.9rem;
}

/* ========================================================== */
/* 11. FLOATING WHATSAPP & SUN FLARE FIRE EFFECT              */
/* ========================================================== */
.floating-fire-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-fire-btn:hover {
    transform: scale(1.15);
}

.fire-aura {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, #ffcc00 10%, #ff3300 60%, transparent 80%);
    box-shadow: 
        0 0 20px #ff3300, 
        0 0 40px #ff0000, 
        0 0 60px rgba(255, 69, 0, 0.8),
        inset 0 0 15px rgba(255, 255, 0, 0.9);
    animation: pulse-core 1.5s infinite alternate ease-in-out;
}

@keyframes pulse-core {
    0% { transform: scale(0.95); box-shadow: 0 0 15px #ff3300, 0 0 30px #ff0000; }
    100% { transform: scale(1.05); box-shadow: 0 0 30px #ffcc00, 0 0 60px #ff3300, 0 0 90px #ff0000; }
}

.flame {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 75px;
    height: 75px;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
    pointer-events: none;
}

.flame-1 {
    background: linear-gradient(45deg, #ff0000, #ff6600, transparent);
    filter: blur(4px);
    animation: flicker-1 2.5s infinite linear;
}

.flame-2 {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffcc00, #ff3300, transparent);
    filter: blur(3px);
    animation: flicker-2 1.8s infinite linear reverse;
}

@keyframes flicker-1 {
    0% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
    33% { transform: translate(-52%, -48%) rotate(120deg) scale(1.1); border-radius: 50% 40% 30% 70% / 60% 40% 50% 40%; }
    66% { transform: translate(-48%, -52%) rotate(240deg) scale(0.9); border-radius: 30% 70% 60% 40% / 50% 60% 40% 50%; }
    100% { transform: translate(-50%, -50%) rotate(360deg) scale(1); }
}

@keyframes flicker-2 {
    0% { transform: translate(-50%, -50%) rotate(0deg) scale(1.05); }
    50% { transform: translate(-49%, -51%) rotate(-180deg) scale(0.95); border-radius: 60% 40% 50% 50% / 40% 60% 50% 50%; }
    100% { transform: translate(-50%, -50%) rotate(-360deg) scale(1.05); }
}

.wa-ball-core {
    position: relative;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #128C7E, #075E54);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
}

.wa-ball-core svg {
    width: 26px;
    height: 26px;
    fill: white;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.5));
}

.wa-tooltip {
    position: absolute;
    right: 85px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: rgba(10, 10, 15, 0.95);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    border: 1px solid #ff3300;
    box-shadow: 0 0 15px rgba(255, 51, 0, 0.6);
    transition: all 0.3s ease;
    z-index: 10;
}

.floating-fire-btn:hover .wa-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* ========================================================== */
/* 12. RESPONSIVE MOBILE FIX                                  */
/* ========================================================== */
@media (max-width: 960px) {
    .header .btn-glowing { display: none; }

    /* Navigasi Mobile Dari Atas ke Bawah */
    .nav-menu { 
        position: fixed; 
        top: -100vh; 
        left: 0; 
        width: 100%; 
        height: 100vh; 
        background: rgba(7, 7, 10, 0.98); 
        flex-direction: column; 
        justify-content: center; 
        align-items: center; 
        transition: top 0.4s cubic-bezier(0.16, 1, 0.3, 1); 
        z-index: 1000; 
    }
    
    .nav-menu.active { 
        top: 0; 
    }
    
    .hamburger { display: flex; z-index: 1001; }
    .hamburger.active .line1 { transform: rotate(-45deg) translate(-5px, 5px); }
    .hamburger.active .line2 { opacity: 0; }
    .hamburger.active .line3 { transform: rotate(45deg) translate(-5px, -5px); }

    .hero-section {
        height: 100vh;
        max-height: 100vh;
        padding-top: 75px;
        padding-bottom: 15px;
        flex-direction: column;
        justify-content: center;
        overflow: hidden;
    }

    .hero-image-frame {
        position: relative;
        width: 90%;
        height: 32vh;
        min-height: 200px;
        margin: 0 auto 12px auto;
        border-radius: 24px; 
        overflow: hidden; 
        border: 1.5px solid rgba(255, 31, 58, 0.5);
        box-shadow: 0 8px 25px rgba(255, 31, 58, 0.25);
    }

    .hero-content {
        padding: 0 5%;
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 3px 12px;
        margin-bottom: 6px;
    }

    .hero-title {
        font-size: 1.85rem;
        margin-bottom: 6px;
        line-height: 1.1;
    }

    .hero-desc {
        font-size: 0.8rem;
        margin-bottom: 14px;
        line-height: 1.35;
        text-align: center;
        padding: 0 5px;
    }

    .hero-btns {
        flex-direction: row; 
        gap: 10px;
        width: 92%;
    }

    .hero-btn {
        flex: 1;
        font-size: 0.78rem;
        padding: 10px 5px;
        text-align: center;
        border-radius: 25px;
    }

    .section-title { font-size: 2.2rem; }
    .services-section, .fleet-section { padding: 60px 5%; }
    .service-card { padding: 30px 20px; }

    .fleet-card, .fleet-card.reverse {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .fleet-img-wrapper {
        width: 100%;
        height: 200px;
    }

    .modal-body {
        flex-direction: column;
        gap: 20px;
    }

    .modal-img-box {
        width: 100%;
        height: 200px;
    }

    .modal-content {
        padding: 20px;
    }

    .why-section { padding: 60px 5%; }
    .why-grid { grid-template-columns: 1fr; }
    .why-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
        gap: 15px;
    }

    .article-section { padding: 60px 5%; }
    .article-grid { gap: 15px; }
    .article-card {
        flex-direction: row;
        align-items: center;
        padding: 12px;
        border-radius: 16px;
    }
    .article-img-wrapper {
        width: 100px;
        height: 100px;
        border-radius: 12px;
        flex-shrink: 0;
    }
    .article-content { padding: 0 0 0 15px; justify-content: center; }
    .article-title { font-size: 1rem; margin-bottom: 5px; line-height: 1.3; }
    .article-excerpt { display: none; }
    .article-date { font-size: 0.7rem; margin-bottom: 5px; }
    
    .article-modal-content { padding: 25px 20px; }
    .article-modal-img { height: 200px; margin-bottom: 15px; }
    .article-modal-body p { font-size: 0.95rem; }

    .testimonial-section { padding: 60px 5%; }
    .testimonial-card { padding: 25px 20px; border-radius: 16px; }
    .testimonial-text { font-size: 0.88rem; line-height: 1.5; margin-bottom: 15px; }
    .testimonial-author { font-size: 0.95rem; }
    .testimonial-info { font-size: 0.75rem; }
    .testimonial-stars { font-size: 1rem; margin-bottom: 10px; }
    .testimonial-dots { margin-top: 15px; }

    .footer-section { padding-top: 60px; }
    .footer-container { 
        grid-template-columns: 1fr;
        gap: 40px; 
        text-align: center;
    }
    .footer-logo { justify-content: center; }
    .footer-heading::after { left: 50%; transform: translateX(-50%); }
    .footer-links, .footer-contact { align-items: center; }
    .social-icons { justify-content: center; }

    .wa-tooltip { display: none; }
    .floating-fire-btn {
        bottom: 20px;
        right: 20px;
        transform: scale(0.9);
    }
}