/* ========================================
   SMOOTH SCROLL BEHAVIOR
   ======================================== */
html {
    scroll-behavior: smooth;
}

/* Offset untuk fixed navbar (agar tidak tertutup navbar saat scroll) */
section {
    scroll-margin-top: 90px;
}

/* Global */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

/* Layout utama */
main {
    padding-top: 0px;
}

/* ========================================
   NAVBAR (INVISIBLE → BLUE SOLID)
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 20px 40px;
    background: transparent;
    color: #fff;
    transition: all 0.4s ease;
    box-shadow: none;
}

/* Navbar saat di-scroll (BLUE SOLID) */
.navbar.scrolled {
    background: #004080;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    padding: 12px 40px;
}

/* Logo styling - GESER KE KANAN */
.logo {
    display: flex;
    align-items: center;
    margin-left: 60px; /* GESER KE KANAN */
}

.logo-img {
    height: 100px;
    transition: height 0.4s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.navbar.scrolled .logo-img {
    height: 45px;
    filter: none;
}

/* Nav links - PENTOKIN KE KANAN */
.navbar .nav-links {
    display: flex;
    gap: 35px;
    margin: 0 auto;
}

.navbar .nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Remove text shadow saat scrolled */
.navbar.scrolled .nav-links a {
    text-shadow: none;
}

/* Hover effect */
.navbar .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f59e0b;
    transition: width 0.3s ease;
}

.navbar .nav-links a:hover::after {
    width: 100%;
}

.navbar .nav-links a:hover {
    color: #f59e0b;
}

/* Active link */
.nav-links a.active {
    color: #f59e0b;
    font-weight: 600;
}

.nav-links a.active::after {
    width: 100%;
    opacity: 1;
}

/* ========================================
   HERO SECTION (IMPROVED VERSION)
   ======================================== */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
    background: #1e3a8a;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #1e3a8a; /* Warna biru fallback saat loading */
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    width: 100%; /* ✅ TAMBAH INI */
    height: 100%; /* ✅ TAMBAH INI */
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

/* Darker Gradient Overlay for Better Contrast */
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(30, 58, 138, 0.7) 50%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 20px;
    color: white;
}

/* Title with Better Shadow */
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0 0 20px 0;
    line-height: 1.2;
    color: white;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.3rem;
    margin: 0 0 30px 0;
    max-width: 700px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease-out 0.2s;
    animation-fill-mode: backwards;
}

/* Premium Button */
.btn-booking {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    padding: 16px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
    animation: fadeInUp 1s ease-out 0.4s;
    animation-fill-mode: backwards;
    border: 2px solid transparent;
}

.btn-booking:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.7);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-booking i {
    font-size: 1.4rem;
}

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

/* Konten umum */
.container {
    max-width: 1100px;
    margin: 30px auto;
    padding: 0 15px;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    background: #fff;
    padding: 15px;
    border-radius: 6px;
    flex: 1 1 250px;
}

.card img {
    width: 100%;
    border-radius: 4px;
}

.price {
    color: #e67e22;
    font-weight: bold;
}

/* ========================================
   RESPONSIVE - NAVBAR & HERO
   ======================================== */

/* Tablet (900px) */
@media (max-width: 900px) {
    .navbar {
        padding: 15px 20px;
    }
    
    .logo {
        margin-left: 20px;
    }
    
    .logo-img {
        height: 75px; /* ✅ Dari 70px jadi 75px */
    }
    
    .navbar.scrolled {
        padding: 10px 20px;
    }
    
    .navbar.scrolled .logo-img {
        height: 50px; /* ✅ Dari 40px jadi 50px */
    }
    
    .navbar .nav-links {
        gap: 20px;
    }
}

/* Tablet & Mobile (768px) */
@media (max-width: 768px) {
    /* Navbar */
    .navbar {
        padding: 12px 15px !important;
        justify-content: space-between;
    }
    
    .logo {
        margin-left: 0 !important;
        padding-right: 0;
    }
    
    /* ✅ LOGO DIPERBESAR! */
    .logo-img {
        height: 85px !important; /* ✅ Dari 60px jadi 85px */
    }
    
    .navbar.scrolled .logo-img {
        height: 55px !important; /* ✅ Dari 35px jadi 55px */
    }
    
    .navbar .nav-links {
        gap: 15px;
    }
    
    .navbar .nav-links a {
        font-size: 0.9rem;
    }
    
    /* ✅ HERO DIPERBESAR! */
    .hero-content h1 {
        font-size: 2.8rem !important; /* ✅ Dari 2.2rem jadi 2.8rem */
        font-weight: 900 !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
    }
    
    .hero-content p {
        font-size: 1.25rem !important; /* ✅ Dari 1.1rem jadi 1.25rem */
        margin-bottom: 28px !important;
        line-height: 1.6 !important;
    }
    
    /* ✅ BUTTON DIPERBESAR! */
    .btn-booking {
        padding: 18px 42px !important; /* ✅ Dari 14px 35px jadi 18px 42px */
        font-size: 1.15rem !important; /* ✅ Dari 1rem jadi 1.15rem */
        gap: 12px !important;
    }
    
    .btn-booking i {
        font-size: 1.4rem !important;
    }
    
    .hero-stats {
        gap: 15px;
        margin-top: 35px;
    }
    
    .stat-item {
        padding: 12px 20px;
        min-width: 120px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}

/* Mobile (576px) */
@media (max-width: 576px) {
    /* ✅ LOGO MOBILE TETAP BESAR */
    .logo-img {
        height: 80px !important;
    }
    
    .navbar.scrolled .logo-img {
        height: 52px !important;
    }
    
    /* ✅ HERO SUPER BESAR DI MOBILE! */
    .hero-content h1 {
        font-size: 3rem !important; /* ✅ EXTRA BESAR! */
        margin-bottom: 22px !important;
        font-weight: 900 !important;
    }
    
    .hero-content p {
        font-size: 1.3rem !important; /* ✅ EXTRA BESAR! */
        margin-bottom: 30px !important;
        line-height: 1.65 !important;
        max-width: 90% !important;
    }
    
    .btn-booking {
        padding: 20px 45px !important; /* ✅ EXTRA BESAR! */
        font-size: 1.2rem !important;
        gap: 14px !important;
    }
    
    .btn-booking i {
        font-size: 1.5rem !important;
    }
}

/* Mobile Extra Small (400px) */
@media (max-width: 400px) {
    .logo-img {
        height: 75px !important;
    }
    
    .navbar.scrolled .logo-img {
        height: 48px !important;
    }
    
    .hero-content h1 {
        font-size: 2.7rem !important;
        margin-bottom: 20px !important;
    }
    
    .hero-content p {
        font-size: 1.2rem !important;
        margin-bottom: 28px !important;
    }
    
    .btn-booking {
        padding: 18px 40px !important;
        font-size: 1.1rem !important;
    }
}

/* ========================================
   ABOUT - TWO COLUMN LAYOUT (CLEAN) ✅
   ======================================== */
.about-wrapper-new {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);  /* ✅ GANTI INI */
    padding: 80px 20px;  /* ✅ Padding lebih konsisten */
    scroll-margin-top: 90px;
}

/* Two Column Layout */
.about-two-column {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 70px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 90px auto;
}

/* Left: Image Side */
.about-image-side {
    position: relative;
}

.about-image-side img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.about-image-side img:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

/* Right: Content Side */
.about-content-side {
    padding: 0;
}

.about-label {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #f59e0b;
    margin-bottom: 25px;
    position: relative;
}

.about-label::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #f59e0b 0%, #f97316 100%);
    border-radius: 2px;
}

.about-content-side p {
    font-size: 1.1rem;
    line-height: 2;
    color: #334155;
    margin: 0 0 20px 0;
    text-align: justify;
    word-spacing: 0.1em;
    letter-spacing: 0.02em;
}

.about-content-side p:first-of-type {
    margin-top: 15px;
}

.about-content-side p:last-of-type {
    margin-bottom: 0;
}

/* 3 Sections Grid (Vision, Mission, Values) */
.about-sections-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-section-card {
    background: white;
    border-radius: 20px;
    padding: 40px 32px; /* ✅ Padding lebih kecil */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    min-height: 400px; /* ✅ SAMA RATA TINGGI */
    display: flex;
    flex-direction: column;
}

.about-section-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Section Icons */
.section-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 22px auto;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    color: white;
}

.section-icon.vision {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

.section-icon.mission {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
}

.section-icon.values {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
}

.about-section-card h3 {
    font-size: 1.7rem;
    color: #1e3a8a;
    font-weight: 700;
    margin: 0 0 22px 0;
}

/* ✅ VISION TEXT (Paragraf Biasa, TANPA Centang) */
.about-section-card p.vision-text {
    font-size: 1.05rem;
    line-height: 1.95;
    color: #475569;
    margin: 0;
    text-align: center; /* ✅ Center aligned untuk Vision */
}

/* Mission & Values (Dengan Centang) */
.about-section-card p {
    font-size: 1.05rem;
    line-height: 1.95;
    color: #475569;
    margin: 0;
    text-align: justify;
}

.about-section-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    flex: 1; /* ✅ Isi sisa ruang */
}

.about-section-card li {
    font-size: 1.02rem;
    line-height: 1.85;
    color: #475569;
    margin-bottom: 13px;
    padding-left: 28px;
    position: relative;
}

.about-section-card li:last-child {
    margin-bottom: 0;
}

.about-section-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 1px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

/* ========================================
   ABOUT SECTION - PERFECT MOBILE (FINAL)
   ======================================== */

@media (max-width: 768px) {
    .about-wrapper-new {
        padding: 30px 25px 70px 25px !important;
    }
    
    .about-two-column {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        margin-bottom: 55px !important;
    }
    
    .about-image-side {
        text-align: center !important;
    }
    
    .about-image-side img {
        max-height: 280px !important;
        max-width: 100% !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
        margin: 0 auto !important;
        display: block !important;
    }
    
    .about-label {
        font-size: 0.85rem !important;
        letter-spacing: 2.5px !important;
        margin-bottom: 20px !important;
        text-align: center !important;
    }
    
    .about-label::after {
        width: 50px !important;
        height: 2.5px !important;
    }
    
    .about-content-side {
        padding: 0 !important;
    }
    
    .about-content-side p {
        font-size: 1rem !important;
        line-height: 1.9 !important;
        margin-bottom: 20px !important;
        text-align: justify !important;
        padding: 0 15px !important;
    }
    
    /* Vision, Mission, Values Grid */
    .about-sections-grid-3 {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        padding: 0 10px !important;
    }
    
    .about-section-card {
        background: white !important;
        background-color: #ffffff !important;
        padding: 35px 30px !important;
        text-align: center !important;
        margin: 0 auto !important;
        width: 100% !important; /* ✅ TAMBAH INI */
        max-width: 100% !important;
        border-radius: 20px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
        min-height: auto !important; /* ✅ GANTI dari "auto" jadi "420px" */
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important; /* ✅ TAMBAH INI */
        box-sizing: border-box !important; /* ✅ TAMBAH INI */
    }
    
    /* Icon Styling */
    .section-icon {
        width: 70px !important;
        height: 70px !important;
        font-size: 1.8rem !important;
        margin: 0 auto 20px auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 18px !important;
    }
    
    /* Icon Colors */
    .section-icon.vision {
        background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%) !important;
        color: white !important;
    }
    
    .section-icon.mission {
        background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%) !important;
        color: white !important;
    }
    
    .section-icon.values {
        background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%) !important;
        color: white !important;
    }
    
    /* Title */
    .about-section-card h3 {
        font-size: 1.5rem !important;
        margin-bottom: 15px !important;
        text-align: center !important;
        color: #1e3a8a !important;
    }
    
    /* Paragraph */
    .about-section-card p,
    .about-section-card p.vision-text {
        font-size: 0.98rem !important;
        line-height: 1.8 !important;
        margin-bottom: 10px !important;
        text-align: center !important;
        color: #475569 !important;
    }
    
    /* List */
    .about-section-card ul {
        text-align: left !important;
        padding-left: 25px !important;
        margin: 0 !important;
        max-width: 100% !important;
        list-style: none !important;
        flex: 1 !important;
    }
    
    .about-section-card li {
        font-size: 0.98rem !important;
        line-height: 1.8 !important;
        margin-bottom: 10px !important;
        text-align: left !important;
        color: #475569 !important;
        padding-left: 28px !important;
        position: relative !important;
    }
    
    /* Checkmark icon */
    .about-section-card li::before {
        content: '✓' !important;
        position: absolute !important;
        left: 0 !important;
        top: 1px !important;
        width: 20px !important;
        height: 20px !important;
        background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%) !important;
        color: white !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 0.75rem !important;
        font-weight: bold !important;
    }
}

/* Small Mobile - Extra Polish */
@media (max-width: 576px) {
    .about-wrapper-new {
        padding: 25px 20px 60px 20px !important;
    }
    
    .about-two-column {
        gap: 30px !important;
        margin-bottom: 45px !important;
    }
    
    .about-image-side img {
        max-height: 220px !important;
        max-width: 90% !important;
    }
    
    .about-label {
        font-size: 0.8rem !important;
        letter-spacing: 2px !important;
        margin-bottom: 18px !important;
    }
    
    .about-label::after {
        width: 40px !important;
        height: 2px !important;
    }
    
    .about-content-side p {
        font-size: 0.95rem !important;
        line-height: 1.8 !important;
        padding: 0 10px !important;
        margin-bottom: 15px !important;
    }
    
    .about-sections-grid-3 {
        gap: 20px !important;
        padding: 0 5px !important;
    }
    
    .about-section-card {
        padding: 30px 25px !important;
        background: white !important;
        background-color: #ffffff !important;
        width: 100% !important; /* ✅ TAMBAH INI */
        max-width: 100% !important; /* ✅ TAMBAH INI */
        box-sizing: border-box !important; /* ✅ TAMBAH INI */
    }
    
    .section-icon {
        width: 65px !important;
        height: 65px !important;
        font-size: 1.7rem !important;
        margin-bottom: 15px !important;
    }
    
    .about-section-card h3 {
        font-size: 1.3rem !important;
        margin-bottom: 12px !important;
    }
    
    .about-section-card p,
    .about-section-card p.vision-text {
        font-size: 0.9rem !important;
        line-height: 1.65 !important;
    }
    
    .about-section-card ul {
        max-width: 95% !important;
        padding-left: 20px !important;
    }
    
    .about-section-card li {
        font-size: 0.9rem !important;
        line-height: 1.65 !important;
        margin-bottom: 8px !important;
    }
}

/* ========================================
   SERVICES SECTION - LIGHTER FONT
   ======================================== */
#services {
    scroll-margin-top: 90px; /* ✅ Offset untuk fixed navbar */
}

.services-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);  /* ✅ Soft Light Blue */
    scroll-margin-top: 90px;
}

/* ✅ Section Title - Medium weight (seperti About) */
.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: #f59e0b; /* ✅ KUNING/ORANGE seperti About Us */
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.5px;
    text-transform: uppercase; /* ✅ Uppercase seperti ABOUT US */
}

/* ✅ Section Subtitle - Normal weight */
.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-family: Arial, sans-serif;
    font-weight: 400; /* ✅ Normal weight */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #1e3a8a;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.15);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 420px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(30, 58, 138, 0.25);
}

.service-image-wrapper {
    height: 220px;
    overflow: hidden;
    margin: 15px 15px 0 15px;
    border-radius: 15px;
    position: relative;
    background: #e5e7eb;
}

.service-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.service-card:hover .service-photo {
    transform: scale(1.1);
}

.service-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(30, 58, 138, 0.5) 0%, transparent 100%);
    pointer-events: none;
}

.service-content {
    padding: 30px 25px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ✅ Card Title - Medium weight (tidak terlalu tebal) */
.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 600; /* ✅ LEBIH RINGAN dari bold */
    line-height: 1.3;
    font-family: Arial, sans-serif;
}

/* ✅ Card Text - Regular weight */
.service-card p {
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin: 0;
    flex: 1;
    font-family: Arial, sans-serif;
    font-weight: 400; /* ✅ Normal weight */
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 15px; /* ✅ Padding lebih kecil */
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    /* ✅ MOBILE JADI 2 KOLOM (bukan 1) */
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* ✅ 2 KOLOM */
        gap: 15px; /* ✅ GAP LEBIH KECIL */
    }
    
    .service-card {
        min-height: auto;
    }
    
    /* ✅ IMAGE LEBIH KECIL */
    .service-image-wrapper {
        height: 160px; /* ✅ DARI 200px JADI 140px */
        margin: 10px 10px 0 10px;
    }
    
    /* ✅ CONTENT LEBIH COMPACT */
    .service-content {
        padding: 15px 12px; /* ✅ PADDING LEBIH KECIL */
    }
    
    /* ✅ TEXT LEBIH KECIL */
    .service-card h3 {
        font-size: 1.1rem; /* ✅ LEBIH KECIL */
        margin-bottom: 8px;
    }
    
    .service-card p {
        font-size: 0.85rem; /* ✅ LEBIH KECIL */
        line-height: 1.5;
    }
}

/* ========================================
   PACKAGES SECTION - 3 CARDS PER ROW
   ======================================== */
.packages-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);  /* ✅ White Gradient */
    scroll-margin-top: 90px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* ✅ FIXED 3 columns */
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.package-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

/* ========================================
   PACKAGE IMAGE SLIDER
   ======================================== */
.package-image-slider {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #e5e7eb;
}

.package-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.package-slide.active {
    opacity: 1;
}

.package-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ========================================
   SLIDER INDICATORS (DOTS)
   ======================================== */
.slider-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-indicators .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-indicators .dot.active {
    background: #f59e0b;
    width: 30px;
    border-radius: 5px;
}

.slider-indicators .dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* ========================================
   PACKAGE CONTENT
   ======================================== */
.package-content {
    padding: 30px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-content h3 {
    font-size: 1.6rem;
    margin: 0 0 20px 0;
    color: #1e3a8a;
    font-weight: 700;
    line-height: 1.3;
}

.package-highlights {
    margin-bottom: 0;
    flex: 1;
}

.package-highlights strong {
    display: block;
    margin-bottom: 12px;
    color: #1e3a8a;
    font-size: 1rem;
    font-weight: 600;
}

.package-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-highlights li {
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
}

.package-highlights li:last-child {
    margin-bottom: 0;
}

.package-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #f59e0b;
    font-weight: bold;
    font-size: 1rem;
}

/* ✅ HIDDEN HIGHLIGHTS (Collapsed) */
.package-highlights li.hidden-highlight {
    display: none;
}

/* ✅ SHOW ALL HIGHLIGHTS (Expanded) */
.package-highlights.expanded li.hidden-highlight {
    display: block;
    animation: fadeInDown 0.3s ease;
}

/* ✅ "+X more" Button Style */
.package-highlights .more-highlights {
    color: #f59e0b;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.package-highlights .more-highlights:hover {
    color: #f97316;
    transform: translateX(5px);
}

.package-highlights .more-highlights::before {
    content: '⋯';
    font-size: 1.2rem;
    margin-right: 5px;
    transition: all 0.3s ease;
}

.package-highlights.expanded .more-highlights::before {
    content: '−'; /* Minus icon when expanded */
    font-size: 1.4rem;
}

.package-highlights.expanded .more-highlights {
    color: #1e3a8a;
}

/* ✅ Animation */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVE - TABLET & MOBILE
   ======================================== */
@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .packages-section {
        padding: 60px 20px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .package-image-slider {
        height: 220px;
    }
    
    .package-content {
        padding: 25px 20px;
    }
    
    .package-content h3 {
        font-size: 1.4rem;
    }
}

/* ========================================
   GALLERY CAROUSEL SECTION - CLEAN VERSION
   ======================================== */
.gallery-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #dbeafe 0%, #eff6ff 100%);
    overflow: hidden;
    scroll-margin-top: 90px;
}

/* Gallery Header */
.gallery-section .section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #f59e0b;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

/* Subtitle */
.gallery-section .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 50px;
    font-weight: 400;
}

/* Container */
.gallery-section .container {
    max-width: 1200px;
    margin: 0 auto 40px auto;
}

/* Carousel Wrapper */
.gallery-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Carousel Track */
.gallery-carousel {
    display: flex;
    gap: 25px;
    animation: scroll-carousel 50s linear infinite;
    width: max-content;
}

/* Pause animation on hover */
.gallery-carousel:hover {
    animation-play-state: paused;
}

/* Smooth scroll animation */
@keyframes scroll-carousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Gallery Item Card */
.gallery-item-carousel {
    flex-shrink: 0;
    width: 350px;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
}

/* Hover effect */
.gallery-item-carousel:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.3);
}

/* Image */
.gallery-item-carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item-carousel:hover img {
    transform: scale(1.1);
}

/* Responsive - Tablet */
@media (max-width: 768px) {
    .gallery-section {
        padding: 30px 15px 60px 15px;
    }
    
    .gallery-section .section-title {
        font-size: 2.2rem;
        margin-bottom: 12px;
    }
    
    .gallery-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .gallery-item-carousel {
        width: 280px;
        height: 200px;
    }
    
    .gallery-carousel {
        animation: scroll-carousel 25s linear infinite;
        gap: 20px;
    }
    
    .gallery-item-carousel::before {
        font-size: 1rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .gallery-section {
        padding: 30px 10px 50px 10px;
    }
    
    .gallery-section .section-title {
        font-size: 1.8rem;
    }
    
    .gallery-section .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 35px;
        padding: 0 10px;
    }
    
    .gallery-item-carousel {
        width: 240px;
        height: 180px;
    }
    
    .gallery-carousel {
        gap: 15px;
    }
}

/* ========================================
   GALLERY BADGE
   ======================================== */
.gallery-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(37, 211, 102, 0.95);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    pointer-events: none; /* ✅ INI PENTING! Badge ga block klik */
    z-index: 2;
}

.gallery-badge i {
    font-size: 14px;
}

/* Service Image Wrapper - Clickable */
.service-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.service-image-wrapper[onclick] {
    cursor: pointer !important;
}

.service-image-wrapper[onclick]:hover {
    transform: scale(1.02);
}

.service-image-wrapper[onclick]:hover .gallery-badge {
    background: rgba(18, 140, 126, 1);
    transform: scale(1.05);
    transition: all 0.3s ease;
}

/* WHY CHOOSE US */
.why-choose-section {
    padding: 70px 20px;
    background: #ffffff;  /* ✅ Pure white */
    /* OR */
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

.why-choose-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #f59e0b;
    font-weight: 700;
}

.why-list {
    max-width: 900px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.why-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.15);
}

.why-list li i {
    font-size: 1.5rem;
    color: #f59e0b;
    flex-shrink: 0;
}

.why-list li span {
    font-size: 1rem;
    color: #1e293b;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .why-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .why-list li {
        padding: 15px;
    }
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
    padding: 80px 20px;
    background: #f9f9f9;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.contact-item i {
    font-size: 2.5rem;
    color: #f53003;
    margin-bottom: 15px;
}

.contact-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1b1b18;
    font-weight: bold;
}

.contact-item a,
.contact-item p {
    color: #706f6c;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-item a:hover {
    color: #f53003;
    text-decoration: underline;
}

/* ========================================
   FOOTER
   ======================================== */
.footer-new {
    background: linear-gradient(135deg, #1e3a8a 0%, #2c5282 100%);
    color: white;
    padding: 60px 20px 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Brand Column */
.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Footer Column Titles */
.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: white;
    font-weight: bold;
}

/* Footer Contact List */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-contact i {
    color: #f59e0b;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact span {
    color: rgba(255, 255, 255, 0.8);
}

/* Social Media Icons */
.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: #f59e0b;
    transform: translateY(-3px);
}

/* Footer Menu */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-menu a:hover {
    color: #f59e0b;
    padding-left: 5px;
}

/* Copyright Bar */
.footer-bottom {
    text-align: center;
    padding: 25px 20px;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* HAPUS FOOTER LAMA */
.footer {
    display: none;
}

/* Responsive */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-new {
        padding: 40px 20px 0;
    }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 900px) {
    .about-hero {
        flex-direction: column;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .navbar {
        padding: 10px 20px;
    }

    .navbar .nav-links {
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .service-card,
    .contact-item {
        padding: 30px 20px;
    }
    
    .why-list {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   FLOATING WHATSAPP BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.7);
}

.whatsapp-float i {
    margin-top: 3px;
}

/* Tooltip text */
.whatsapp-float::before {
    content: "Chat with Us";
    position: absolute;
    right: 70px;
    background-color: #1e3a8a;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-float:hover::before {
    opacity: 1;
}

/* Animation pulse */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float {
    animation: pulse 2s infinite;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 26px;
    }
    
    .whatsapp-float::before {
        display: none; /* Hide tooltip on mobile */
    }
}

/* ========================================
   BACKGROUND MUSIC PLAYER
   ======================================== */
.music-player {
    position: fixed;
    bottom: 100px; /* Di atas WhatsApp button */
    right: 30px;
    z-index: 998;
}

.music-btn {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.music-btn:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(30, 58, 138, 0.6);
}

.music-btn.playing {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    animation: pulse-music 2s infinite;
}

.music-btn.playing:hover {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
}

/* Pulse Animation */
@keyframes pulse-music {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(245, 158, 11, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }
}

/* Tooltip */
.music-btn::before {
    content: "Music";
    position: absolute;
    right: 70px;
    background: #1e3a8a;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.music-btn:hover::before {
    opacity: 1;
}

.music-btn.playing::before {
    content: "Playing...";
    background: #f59e0b;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .music-player {
        bottom: 80px;
        right: 20px;
    }
    
    .music-btn {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    
    .music-btn::before {
        display: none; /* Hide tooltip on mobile */
    }
}

/* ========================================
   VEHICLE GALLERY MODAL - MASONRY LAYOUT
   ======================================== */

/* Badge "View Gallery" di Service Card */
.gallery-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(245, 158, 11, 0.95);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.gallery-badge i {
    font-size: 1rem;
}

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

/* ========================================
   MODAL BACKGROUND
   ======================================== */
.modal-gallery {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Modal Content Container - KECIL */
.modal-gallery-content {
    position: relative;
    margin: 40px auto;
    padding: 30px 20px 40px;
    max-width: 900px; /* ✅ 900px */
    width: 90%;
}

/* Close Button */
.modal-close {
    position: absolute;
    top: 10px;
    right: 25px;
    color: white;
    font-size: 45px;
    font-weight: 300;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
    line-height: 1;
}

.modal-close:hover {
    color: #f59e0b;
    transform: scale(1.1) rotate(90deg);
}

/* Modal Title - KECIL */
.modal-title {
    text-align: center;
    font-size: 2rem; /* ✅ 2rem */
    color: #f59e0b;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

/* Modal Subtitle - KECIL */
.modal-subtitle {
    text-align: center;
    font-size: 0.95rem; /* ✅ 0.95rem */
    color: #cbd5e1;
    margin-bottom: 30px;
    font-family: Arial, sans-serif;
}

/* ========================================
   MASONRY GALLERY GRID (Pinterest Style)
   ======================================== */
.vehicle-gallery-grid {
    column-count: 2; /* ✅ 2 KOLOM */
    column-gap: 15px;
    margin-top: 25px;
}

/* Vehicle Item Card */
.vehicle-item {
    break-inside: avoid;
    page-break-inside: avoid;
    -webkit-column-break-inside: avoid;
    margin-bottom: 20px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Hover Overlay Effect */
.vehicle-item::before {
    content: '🔍 Click to view';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 5;
    border-radius: 15px;
}

.vehicle-item:hover::before {
    opacity: 1;
}

.vehicle-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.6);
}

/* Vehicle Image - Auto Height */
.vehicle-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.vehicle-item:hover img {
    transform: scale(1.05);
}

/* ========================================
   LIGHTBOX - Full Image Viewer
   ======================================== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.98);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

/* Lightbox Image */
.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Lightbox Close Button */
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
    line-height: 1;
}

.lightbox-close:hover {
    color: #f59e0b;
    transform: scale(1.2) rotate(90deg);
}

/* Navigation Arrows */
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    user-select: none;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(245, 158, 11, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev:active,
.lightbox-next:active {
    transform: translateY(-50%) scale(0.95);
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* Image Counter */
.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.2rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-family: Arial, sans-serif;
    backdrop-filter: blur(10px);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Desktop Large (1400px+) */
@media (min-width: 1400px) {
    .vehicle-gallery-grid {
        column-count: 3; /* ✅ Dari 4 jadi 3 biar ga terlalu kecil */
        column-gap: 20px;
    }
}

/* Laptop/Desktop (1024px - 1399px) */
@media (max-width: 1399px) and (min-width: 1024px) {
    .vehicle-gallery-grid {
        column-count: 2; /* ✅ Tetap 2 */
        column-gap: 18px;
    }
}

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
    .modal-gallery-content {
        margin: 40px auto;
        padding: 35px 25px;
        max-width: 750px; /* ✅ Lebih kecil di tablet */
    }
    
    .modal-title {
        font-size: 1.8rem;
    }
    
    .modal-subtitle {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    
    .vehicle-gallery-grid {
        column-count: 2;
        column-gap: 15px;
    }
    
    .vehicle-item {
        margin-bottom: 15px;
    }
    
    .modal-close {
        font-size: 40px;
        right: 20px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 40px;
        width: 60px;
        height: 60px;
        padding: 15px;
    }
    
    .lightbox-prev {
        left: 20px;
    }
    
    .lightbox-next {
        right: 20px;
    }
}

/* Mobile (max 767px) */
@media (max-width: 767px) {
    .modal-gallery-content {
        margin: 20px auto;
        padding: 30px 15px 50px;
        width: 95%;
    }
    
    .modal-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .modal-subtitle {
        font-size: 0.85rem;
        margin-bottom: 25px;
    }
    
    .vehicle-gallery-grid {
        column-count: 1;
        column-gap: 0;
    }
    
    .vehicle-item {
        margin-bottom: 12px;
    }
    
    .vehicle-item::before {
        font-size: 0.95rem;
    }
    
    .modal-close {
        font-size: 35px;
        right: 15px;
        top: 5px;
    }
    
    .gallery-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
        bottom: 8px;
        right: 8px;
    }
    
    .lightbox-image {
        max-width: 95%;
        max-height: 80vh;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 35px;
        padding: 12px;
        width: 50px;
        height: 50px;
        background: rgba(0, 0, 0, 0.7);
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 40px;
    }
    
    .lightbox-counter {
        font-size: 1rem;
        padding: 8px 20px;
        bottom: 20px;
    }
}

/* Small Mobile (max 480px) */
@media (max-width: 480px) {
    .modal-title {
        font-size: 1.3rem;
    }
    
    .modal-subtitle {
        font-size: 0.8rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 30px;
        width: 45px;
        height: 45px;
    }
    
    .lightbox-counter {
        font-size: 0.9rem;
        padding: 6px 15px;
    }
}

/* ========================================
   ACCESSIBILITY ENHANCEMENTS
   ======================================== */

/* Focus states untuk keyboard navigation */
.vehicle-item:focus,
.modal-close:focus,
.lightbox-close:focus,
.lightbox-prev:focus,
.lightbox-next:focus {
    outline: 3px solid #f59e0b;
    outline-offset: 2px;
}

/* Reduce motion untuk users dengan preference */
@media (prefers-reduced-motion: reduce) {
    .modal-gallery,
    .lightbox,
    .vehicle-item,
    .vehicle-item img,
    .lightbox-image {
        animation: none !important;
        transition: none !important;
    }
}

/* ========================================
   FORCE REMOVE ALL SECTION BORDERS
   ======================================== */
.packages-section,
.gallery-section,
.services-section,
.about-wrapper-new,
.why-choose-section,
.contact-section,
section,
.packages-section::before,
.packages-section::after,
.gallery-section::before,
.gallery-section::after {
    border: none !important;
    border-top: none !important;
    border-bottom: none !important;
}

/* ========================================
   RESPONSIVE IMPROVEMENTS - MOBILE FIRST
   ======================================== */

/* ========================================
   GLOBAL MOBILE FIXES
   ======================================== */
@media (max-width: 576px) {
    body {
        font-size: 14px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 1.8rem !important;
        margin-bottom: 20px !important;
    }
    
    .section-subtitle {
        font-size: 0.95rem !important;
        margin-bottom: 30px !important;
    }
}

/* ========================================
   NAVBAR RESPONSIVE - HAMBURGER MENU
   ======================================== */
@media (max-width: 768px) {
    .navbar {
        padding: 12px 15px !important;
        justify-content: space-between;
    }
    
    .logo {
        margin-left: 0 !important;
        z-index: 1001;
    }
    
    .logo-img {
        height: 50px !important;
    }
    
    .navbar.scrolled .logo-img {
        height: 40px !important;
    }
    
    /* Hide nav-links by default on mobile */
    .nav-links {
        position: fixed !important;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #004080;
        flex-direction: column !important;
        justify-content: flex-start;
        padding: 100px 30px 30px 30px !important;
        gap: 25px !important;
        transition: right 0.4s ease;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2);
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0 !important;
    }
    
    .nav-links a {
        font-size: 1.1rem !important;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        text-shadow: none !important;
    }
    
    /* Hamburger Menu Button */
    .hamburger {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        z-index: 1001;
        position: relative;
    }
    
    .hamburger span {
        width: 28px;
        height: 3px;
        background: white;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

/* Desktop - Hide hamburger */
@media (min-width: 769px) {
    .hamburger {
        display: none !important;
    }
}

/* ========================================
   HERO SECTION MOBILE
   ======================================== */
@media (max-width: 576px) {
    .hero-slider {
        height: 70vh !important;
        min-height: 500px;
    }
    
    .hero-content {
        padding: 15px !important;
    }
    
    .hero-content h1 {
        font-size: 1.8rem !important;
        margin-bottom: 15px !important;
    }
    
    .hero-content p {
        font-size: 0.95rem !important;
        margin-bottom: 20px !important;
        line-height: 1.5 !important;
    }
    
    .btn-booking {
        padding: 12px 28px !important;
        font-size: 0.95rem !important;
    }
}

/* ========================================
   ABOUT SECTION MOBILE
   ======================================== */
@media (max-width: 576px) {
    .about-wrapper-new {
        padding: 50px 15px !important;
    }
    
    .about-two-column {
        gap: 30px !important;
        margin-bottom: 40px !important;
    }
    
    .about-image-side img {
        max-height: 280px !important;
        border-radius: 15px !important;
    }
    
    .about-label {
        font-size: 0.8rem !important;
        letter-spacing: 2px !important;
    }
    
    .about-content-side p {
        font-size: 0.95rem !important;
        line-height: 1.7 !important;
    }
    
    .about-sections-grid-3 {
        gap: 20px !important;
    }
    
    .about-section-card {
        padding: 30px 20px !important;
        min-height: auto !important;
    }
    
    .section-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
    }
    
    .about-section-card h3 {
        font-size: 1.3rem !important;
    }
    
    .about-section-card p,
    .about-section-card li {
        font-size: 0.9rem !important;
    }
}

/* ========================================
   SERVICES SECTION MOBILE
   ======================================== */
@media (max-width: 576px) {
    .services-section {
        padding: 50px 15px !important;
    }
    
    .services-grid {
        gap: 20px !important;
    }
    
    .service-card {
        min-height: auto !important;
    }
    
    .service-image-wrapper {
        height: 180px !important;
        margin: 12px 12px 0 12px !important;
    }
    
    .service-content {
        padding: 20px 18px !important;
    }
    
    .service-card h3 {
        font-size: 1.2rem !important;
    }
    
    .service-card p {
        font-size: 0.9rem !important;
    }
}

/* ========================================
   PACKAGES SECTION MOBILE
   ======================================== */
@media (max-width: 576px) {
    .packages-section {
        padding: 50px 15px !important;
    }
    
    .packages-grid {
        gap: 20px !important;
    }
    
    .package-image-slider {
        height: 200px !important;
    }
    
    .package-content {
        padding: 20px 18px !important;
    }
    
    .package-content h3 {
        font-size: 1.3rem !important;
        margin-bottom: 15px !important;
    }
    
    .package-highlights li {
        font-size: 0.88rem !important;
        padding-left: 22px !important;
    }
}

/* ========================================
   GALLERY SECTION MOBILE
   ======================================== */
@media (max-width: 576px) {
    .gallery-section {
        padding: 50px 10px !important;
    }
    
    .gallery-item-carousel {
        width: 220px !important;
        height: 160px !important;
    }
    
    .gallery-carousel {
        gap: 12px !important;
    }
    
    .gallery-badge {
        font-size: 11px !important;
        padding: 6px 12px !important;
        bottom: 10px !important;
        right: 10px !important;
    }
}

/* ========================================
   CONTACT SECTION MOBILE
   ======================================== */
@media (max-width: 576px) {
    .contact-section {
        padding: 50px 15px !important;
    }
    
    .contact-grid {
        gap: 20px !important;
    }
    
    .contact-item {
        padding: 25px 18px !important;
    }
    
    .contact-item i {
        font-size: 2rem !important;
    }
    
    .contact-item h4 {
        font-size: 1.1rem !important;
    }
    
    .contact-item a,
    .contact-item p {
        font-size: 0.9rem !important;
    }
}

/* ========================================
   FOOTER MOBILE
   ======================================== */
@media (max-width: 576px) {
    .footer-new {
        padding: 40px 15px 0 !important;
    }
    
    .footer-content {
        gap: 30px !important;
    }
    
    .footer-col h3 {
        font-size: 1.1rem !important;
    }
    
    .footer-desc,
    .footer-contact li,
    .footer-menu a {
        font-size: 0.88rem !important;
    }
    
    .footer-social a {
        width: 36px !important;
        height: 36px !important;
        font-size: 1rem !important;
    }
    
    .footer-bottom p {
        font-size: 0.8rem !important;
    }
}

/* ========================================
   FOOTER MOBILE - 2 KOLOM (Contact & Explore More)
   ======================================== */

@media (max-width: 768px) {
    .footer-content {
        display: grid !important;
        grid-template-columns: 1fr !important; /* Default 1 kolom */
        gap: 35px !important;
        text-align: left !important;
        padding-bottom: 30px !important;
    }
    
    /* ✅ Logo + Desc + Social FULL WIDTH */
    .footer-content .footer-col:first-child {
        grid-column: 1 / -1; /* Full width */
        text-align: center;
        margin-bottom: 10px;
    }
    
    /* ✅ Contact & Explore More SEJAJAR (2 KOLOM) */
    .footer-content .footer-col:nth-child(2), /* Contact */
    .footer-content .footer-col:nth-child(3) { /* Explore More */
        grid-column: span 1;
        text-align: left !important;
    }
    
    /* Ubah grid jadi 2 kolom untuk Contact + Explore */
    @supports (grid-template-columns: subgrid) or (display: grid) {
        .footer-content {
            grid-template-columns: 1fr 1fr !important; /* 2 KOLOM */
            grid-template-rows: auto auto;
        }
        
        /* Logo row 1, span 2 columns */
        .footer-content .footer-col:first-child {
            grid-column: 1 / 3; /* Span kedua kolom */
            grid-row: 1;
        }
        
        /* Contact row 2, kolom 1 */
        .footer-content .footer-col:nth-child(2) {
            grid-column: 1;
            grid-row: 2;
        }
        
        /* Explore More row 2, kolom 2 */
        .footer-content .footer-col:nth-child(3) {
            grid-column: 2;
            grid-row: 2;
        }
    }
    
    /* ✅ Title size lebih kecil */
    .footer-col h3 {
        font-size: 1.1rem !important;
        margin-bottom: 15px !important;
    }
    
    /* ✅ Text size lebih kecil */
    .footer-desc, 
    .footer-contact li, 
    .footer-menu a {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
    }
    
    /* ✅ Social icons spacing */
    .footer-social {
        justify-content: center;
        margin-top: 15px;
    }
}

/* ✅ SMALLER MOBILE */
@media (max-width: 576px) {
    .footer-content {
        gap: 25px !important;
    }
    
    .footer-col h3 {
        font-size: 1rem !important;
    }
    
    .footer-desc, 
    .footer-contact li, 
    .footer-menu a {
        font-size: 0.8rem !important;
    }
}

/* ========================================
   LANDSCAPE MOBILE (HORIZONTAL)
   ======================================== */
@media (max-width: 896px) and (orientation: landscape) {
    .hero-slider {
        height: 100vh !important;
    }
    
    .hero-content h1 {
        font-size: 2rem !important;
    }
    
    .hero-content p {
        font-size: 1rem !important;
    }
}

/* ========================================
   TABLET IMPROVEMENTS (768px - 1024px)
   ======================================== */
@media (min-width: 768px) and (max-width: 1024px) {
    .navbar {
        padding: 15px 25px !important;
    }
    
    .logo {
        margin-left: 30px !important;
    }
    
    .nav-links {
        gap: 25px !important;
    }
    
    .nav-links a {
        font-size: 0.95rem !important;
    }
    
    .packages-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ========================================
   HERO RESPONSIVE FIX - MOBILE
   ======================================== */
@media (max-width: 768px) {
    .hero-slider {
        height: 100vh !important;
        min-height: 500px !important;
        max-height: none !important;
    }
    
    .hero-slide {
        background-size: cover !important;
        background-position: center center !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    .hero-content {
        padding: 20px 15px !important;
        justify-content: center !important;
    }
    
    .hero-content h1 {
        font-size: 2rem !important;
        line-height: 1.3 !important;
        margin-bottom: 15px !important;
    }
    
    .hero-content p {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        margin-bottom: 20px !important;
        max-width: 90% !important;
    }
    
    .btn-booking {
        padding: 14px 30px !important;
        font-size: 1rem !important;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 100vh !important;
        min-height: 550px !important;
    }
    
    .hero-content h1 {
        font-size: 1.75rem !important;
    }
    
    .hero-content p {
        font-size: 0.95rem !important;
    }
    
    .btn-booking {
        padding: 12px 25px !important;
        font-size: 0.95rem !important;
    }
}

/* ============================================
   HAMBURGER MENU - FIX MOBILE
============================================ */

/* Default: Hidden di Desktop */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

/* Hamburger Animation saat Active */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ✅ MOBILE: SHOW HAMBURGER */
@media (max-width: 768px) {
    .hamburger {
        display: flex !important; /* ← INI YANG PENTING! */
    }

    /* Nav Links jadi Sidebar */
    .nav-links {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important; /* Start dari kanan (hidden) */
        width: 280px !important;
        height: 100vh !important;
        background: #004080 !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        padding: 100px 30px 30px 30px !important;
        gap: 25px !important;
        transition: right 0.4s ease !important;
        box-shadow: -5px 0 15px rgba(0,0,0,0.2) !important;
        z-index: 999 !important;
        overflow-y: auto !important;
    }

    /* Sidebar Active (muncul) */
    .nav-links.active {
        right: 0 !important;
    }

    /* Link Styling */
    .nav-links a {
        font-size: 1.1rem !important;
        padding: 12px 0 !important;
        border-bottom: 1px solid rgba(255,255,255,0.1) !important;
        text-shadow: none !important;
        width: 100% !important;
    }
}

/* ✅ DESKTOP: HIDE HAMBURGER */
@media (min-width: 769px) {
    .hamburger {
        display: none !important;
    }

    /* Nav Links normal di desktop */
    .nav-links {
        position: static !important;
        display: flex !important;
        flex-direction: row !important;
        background: transparent !important;
        width: auto !important;
        height: auto !important;
        padding: 0 !important;
    }
}

/* ========================================
   SERVICES PEEK SLIDER - MOBILE
   ======================================== */

/* Mobile: Peek Slider */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 0; /* Padding kiri-kanan 0 */
    }
    
    .services-slider-wrapper {
        overflow: hidden;
        position: relative;
        padding-bottom: 40px; /* Space untuk dots */
    }
    
    /* SLIDER CONTAINER */
    .services-grid {
        display: flex !important; /* GRID jadi FLEX */
        gap: 20px !important;
        overflow-x: auto; /* Scrollable */
        scroll-snap-type: x mandatory; /* Snap effect */
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch; /* Smooth iOS */
        padding: 0 40px; /* Padding untuk peek */
        margin: 0 -20px; /* Extend ke samping */
        
        /* HIDE SCROLLBAR */
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
    }
    
    .services-grid::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }
    
    /* SERVICE CARD */
    .service-card {
        flex: 0 0 80%; /* 80% width (peek effect) */
        max-width: 350px;
        scroll-snap-align: center; /* Snap ke center */
        margin: 0 auto;
    }
    
    /* DOTS INDICATOR */
    .slider-dots {
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 10px;
        margin-top: 30px;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .slider-dots .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.2);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .slider-dots .dot.active {
        background: #f59e0b; /* Orange active */
        width: 30px; /* Elongated */
        border-radius: 5px;
    }
    
    /* ANIMATION */
    .service-card {
        transition: transform 0.3s ease;
    }
}

/* Desktop: Dots hidden */
.slider-dots {
    display: none;
}

