@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* Redesain CSS Premium - PPDB SMK Al Amin */
:root {
    --primary-dark: #0a1128;
    --primary-medium: #1c2541;
    --primary-light: #3a506b;
    --accent-teal: #06d6a0;
    --accent-gold: #ffb703;
    --accent-gold-rgb: 255, 183, 3;
    --accent-gold-hover: #ffc107;
    --bg-light: #f8f9fa;
    --bg-dark-section: #050a18;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --text-white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.15);
    --card-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Reset & Body */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 10px;
    border: 2px solid #f1f5f9;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Keyframe Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(var(--accent-gold-rgb), 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(var(--accent-gold-rgb), 0); }
    100% { box-shadow: 0 0 0 0 rgba(var(--accent-gold-rgb), 0); }
}

@keyframes glow-pulse {
    0% { opacity: 0.6; }
    50% { opacity: 0.9; }
    100% { opacity: 0.6; }
}

/* Animated Classes */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

.pulse-glow-btn {
    animation: pulse-gold 2s infinite;
}

/* Navbar Redesign */
.navbar-redesign {
    background: rgba(10, 17, 40, 0.1) !important;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border-bottom: 1px solid rgba(255, 255, 255, 0);
    transition: var(--transition-smooth);
    padding: 20px 0;
}

.navbar-redesign.scrolled {
    background: rgba(10, 17, 40, 0.85) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.navbar-redesign .navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 0.5px;
}

.navbar-redesign .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.navbar-redesign .nav-link:hover,
.navbar-redesign .nav-link.active {
    color: var(--accent-gold) !important;
    background: rgba(255, 255, 255, 0.05);
}

.navbar-redesign .btn-register-nav {
    background: var(--accent-gold);
    color: var(--primary-dark) !important;
    font-weight: 700;
    padding: 8px 20px !important;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 14px rgba(var(--accent-gold-rgb), 0.3);
    transition: var(--transition-smooth);
}

.navbar-redesign .btn-register-nav:hover {
    background: var(--accent-gold-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--accent-gold-rgb), 0.4);
}

/* Responsive Mobile Navbar Expanded Menu */
@media (max-width: 991px) {
    .navbar-redesign {
        background: #0a1128 !important; /* Force solid dark background on mobile navbar */
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        padding: 12px 0 !important;
    }
    .navbar-redesign .navbar-collapse {
        background: rgba(16, 25, 53, 0.98) !important; /* Solid elegant background for dropdown card */
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        padding: 15px;
        margin-top: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }
    .navbar-redesign .navbar-nav {
        align-items: stretch !important;
        width: 100%;
        gap: 4px !important;
    }
    .navbar-redesign .nav-item {
        width: 100%;
    }
    .navbar-redesign .nav-link {
        width: 100%;
        padding: 10px 14px !important;
        display: flex !important;
        align-items: center;
        gap: 10px;
        border-radius: 8px;
        font-size: 0.85rem !important;
    }
    .navbar-redesign .btn-register-nav {
        margin-left: 0 !important;
        margin-top: 10px;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* Hero Section */
.hero-section-premium {
    position: relative;
    background-color: #0a1128;
    background-image: 
        linear-gradient(135deg, rgba(10, 17, 40, 0.82) 0%, rgba(17, 34, 64, 0.75) 50%, rgba(0, 4, 40, 0.88) 100%),
        url('../images/smk_new_with_grass.png');
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--text-white);
    padding-top: 100px;
    overflow: hidden;
}

.hero-section-premium::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(var(--accent-gold-rgb), 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.hero-section-premium::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 214, 160, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--accent-gold);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    font-size: 1rem;
    animation: glow-pulse 1.5s infinite;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 800;
    text-align: left;
}

.text-gradient-gold {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #ffe3a8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    max-width: 550px;
    line-height: 1.6;
    text-align: left;
}

.btn-hero-primary {
    background: var(--accent-gold);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    transition: var(--transition-smooth);
}

.btn-hero-primary:hover {
    background: var(--accent-gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(var(--accent-gold-rgb), 0.4);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 600;
    font-size: 1.05rem;
    padding: 14px 32px;
    border-radius: 50px;
    transition: var(--transition-smooth);
    backdrop-filter: blur(5px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-white);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Stats Counter Badge Container */
.stats-badge-container {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 30px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--glass-shadow);
}

.stat-item {
    padding: 15px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition-smooth);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1.1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Section Common Styling */
.section-padding {
    padding: 100px 0;
}

.bg-dark-premium {
    background-color: var(--bg-dark-section);
    color: var(--text-white);
}

.section-subtitle {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 12px;
}

.bg-dark-premium .section-subtitle {
    color: var(--accent-gold);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto;
}

.bg-dark-premium .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* Wave Shape Divider */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.wave-divider .shape-fill {
    fill: #ffffff;
}

.wave-divider-dark .shape-fill {
    fill: var(--bg-dark-section);
}

/* Majors Section */
.major-card {
    background: var(--text-white);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 40px 30px;
    height: 100%;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.major-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-medium) 100%);
    transition: var(--transition-smooth);
    z-index: -1;
}

.major-card:hover {
    color: var(--text-white);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10, 17, 40, 0.15);
}

.major-card:hover::before {
    height: 100%;
}

.major-card .icon-box {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: rgba(13, 110, 253, 0.06);
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.major-card:hover .icon-box {
    background: rgba(255, 255, 255, 0.15);
    color: var(--accent-gold);
    transform: scale(1.05);
}

.major-card:hover .major-title {
    color: var(--text-white) !important;
}

.major-card:hover .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.prospek-box {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px dashed rgba(0, 0, 0, 0.08);
}

.major-card:hover .prospek-box {
    border-top-color: rgba(255, 255, 255, 0.15);
}

.prospek-tag {
    display: inline-block;
    background: #f1f5f9;
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
    margin-right: 6px;
    margin-bottom: 6px;
    transition: var(--transition-smooth);
}

.major-card:hover .prospek-tag {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
}

/* Scholarship Section */
.scholarship-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 35px 30px;
    height: 100%;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    position: relative;
}

.scholarship-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 183, 3, 0.4);
    transform: translateY(-5px);
    box-shadow: var(--glass-shadow);
}

.scholarship-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 183, 3, 0.1);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.scholarship-card:hover .scholarship-icon {
    background: var(--accent-gold);
    color: var(--primary-dark);
    box-shadow: 0 0 15px rgba(var(--accent-gold-rgb), 0.3);
}

.scholarship-tag-gratis {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-teal);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(6, 214, 160, 0.3);
}

/* Feature Section (Why Us) */
.feature-card-premium {
    background: var(--text-white);
    border-radius: 20px;
    padding: 35px;
    height: 100%;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
}

.feature-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1) 0%, rgba(6, 214, 160, 0.1) 100%);
    color: #0d6efd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border-radius: 50%;
    margin: 0 auto 25px;
    transition: var(--transition-smooth);
}

.feature-card-premium:hover .feature-icon-wrapper {
    transform: rotateY(180deg);
}

/* Facilities Section */
.facility-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 250px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.facility-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.facility-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 17, 40, 0.9) 0%, rgba(10, 17, 40, 0.2) 70%, rgba(10, 17, 40, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0.95;
    transition: var(--transition-smooth);
}

.facility-card:hover img {
    transform: scale(1.1);
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.facility-title {
    color: var(--text-white);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.facility-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    margin-bottom: 0;
}

/* Extracurricular Section */
.ekskul-card {
    background: var(--text-white);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 20px;
}

.ekskul-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(13, 110, 253, 0.2);
}

.ekskul-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(var(--accent-gold-rgb), 0.1) 0%, rgba(255, 183, 3, 0.2) 100%);
    color: #ff9f1c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.ekskul-card:hover .ekskul-icon-box {
    transform: rotate(15deg);
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.ekskul-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.ekskul-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Registration Stepper (Timeline) */
.timeline-stepper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 0 40px;
}

.timeline-stepper::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 80px;
    right: 80px;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    z-index: 1;
}

.timeline-step {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
}

.timeline-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-medium);
    border: 3px solid var(--primary-light);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 15px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.timeline-step.active .timeline-circle {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-dark);
    box-shadow: 0 0 20px rgba(var(--accent-gold-rgb), 0.4);
}

.timeline-label {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 5px;
    color: var(--text-white);
}

.timeline-step.active .timeline-label {
    color: var(--accent-gold);
}

.timeline-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 180px;
    margin: 0 auto;
}

/* Stepper Responsive adjustments */
@media (max-width: 991px) {
    .timeline-stepper {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 20px;
        gap: 30px;
    }
    .timeline-stepper::before {
        left: 55px;
        top: 40px;
        bottom: 40px;
        width: 4px;
        height: auto;
    }
    .timeline-step {
        display: flex;
        text-align: left;
        align-items: center;
        gap: 20px;
    }
    .timeline-circle {
        margin: 0;
    }
    .timeline-desc {
        max-width: 100%;
        margin: 0;
    }
}

/* Tab/Accordion Requirements */
.req-accordion .accordion-item {
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    margin-bottom: 12px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
}

.req-accordion .accordion-button {
    font-weight: 600;
    color: var(--primary-dark);
    padding: 18px 24px;
    transition: var(--transition-smooth);
}

.req-accordion .accordion-button:not(.collapsed) {
    background-color: rgba(13, 110, 253, 0.03);
    color: #0d6efd;
    box-shadow: none;
}

.req-accordion .accordion-button::after {
    font-family: 'boxicons';
    content: '\ebc2'; /* down-arrow chevron */
    background: none;
    transform: rotate(0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition-smooth);
}

.req-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.req-accordion .accordion-body {
    padding: 24px;
    background: #ffffff;
}

.req-list li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.req-list li i {
    color: var(--accent-teal);
    font-size: 1.2rem;
    margin-top: 2px;
}

/* Visi Misi Redesign */
.visi-card {
    background: var(--text-white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.02);
    height: 100%;
}

.visi-quote {
    font-size: 1.25rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--primary-dark);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.visi-quote::before {
    content: '“';
    position: absolute;
    top: -25px;
    left: -15px;
    font-size: 5rem;
    color: rgba(13, 110, 253, 0.08);
    font-family: Georgia, serif;
    z-index: -1;
}

.misi-list .list-group-item {
    padding: 16px 0;
    background: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.misi-list .list-group-item:last-child {
    border-bottom: none !important;
}

.misi-list .list-group-item i {
    font-size: 1.4rem;
    color: var(--accent-teal);
    margin-top: 2px;
    flex-shrink: 0;
}

/* Gallery & Lightbox styling */
.gallery-grid-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    height: 280px;
    position: relative;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.gallery-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-grid-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 17, 40, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
    padding: 20px;
    text-align: center;
}

.gallery-grid-item:hover img {
    transform: scale(1.1);
}

.gallery-grid-item:hover .gallery-grid-overlay {
    opacity: 1;
}

.gallery-icon-view {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-gold);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 10px;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.gallery-grid-item:hover .gallery-icon-view {
    transform: translateY(0);
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 1050;
    inset: 0;
    background-color: rgba(10, 17, 40, 0.95);
    backdrop-filter: blur(15px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.show {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox-modal.show .lightbox-content {
    transform: scale(1);
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    display: block;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #ffffff;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 1060;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    color: var(--accent-gold);
    transform: rotate(90deg);
}

/* Testimonials */
.testi-card {
    background: var(--text-white);
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testi-quote {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.testi-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testi-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    object-fit: cover;
}

.testi-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 2px;
}

.testi-job {
    font-size: 0.75rem;
    color: var(--primary-light);
    font-weight: 600;
}

/* FAQ Styling */
.faq-accordion .accordion-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background: transparent;
    color: var(--text-white);
    font-weight: 600;
    padding: 20px 24px;
    transition: var(--transition-smooth);
    border: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(255, 255, 255, 0.04);
    color: var(--accent-gold);
}

.faq-accordion .accordion-button::after {
    font-family: 'boxicons';
    content: '\ebc2'; /* down-arrow chevron */
    background: none;
    transform: rotate(0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-smooth);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
    color: var(--accent-gold);
}

.faq-accordion .accordion-body {
    padding: 24px;
    background: rgba(255, 255, 255, 0.01);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Footer Section */
.footer-redesign {
    background-color: #040813;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}

.footer-redesign iframe {
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.footer-redesign .contact-info-list li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.footer-redesign .contact-info-list li i {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-top: 2px;
}

.footer-redesign .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.footer-redesign .social-link:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-wa-footer {
    background: #25d366;
    color: #ffffff !important;
    border: none;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.btn-wa-footer:hover {
    background: #1ebd59;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* WhatsApp Floating Button */
.whatsapp-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.whatsapp-floating:hover {
    transform: scale(1.1) rotate(10deg);
    color: #ffffff;
    background: #1ebd59;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.reveal-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-element.active {
    opacity: 1;
    transform: translateY(0);
}

/* Facility Icon Card (pengganti foto) */
.facility-icon-card {
    background: var(--text-white);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.facility-icon-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10, 17, 40, 0.1);
    border-color: rgba(var(--accent-gold-rgb), 0.3);
}

.facility-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
    transition: var(--transition-smooth);
}

.facility-icon-card:hover .facility-icon-wrap {
    transform: scale(1.1) rotate(-5deg);
}

.facility-icon-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.facility-icon-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Stats Card & Partner Badge */
.stats-card {
    transition: var(--transition-smooth);
}
.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
    border-color: rgba(var(--accent-gold-rgb), 0.3) !important;
}
.partner-badge {
    transition: var(--transition-smooth);
}
.partner-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05) !important;
    border-color: rgba(10, 17, 40, 0.15) !important;
}

/* Moto Banner Styles */
.moto-banner {
    border-top: 1px solid rgba(255, 227, 168, 0.2);
    border-bottom: 1px solid rgba(255, 227, 168, 0.2);
    box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.4);
}

/* Typewriter Cursor Styles */
.typewriter-cursor {
    color: var(--accent-gold);
    animation: blink-caret 0.75s step-end infinite;
    font-weight: 300;
    margin-left: 2px;
    font-size: inherit;
    vertical-align: middle;
}
@keyframes blink-caret {
    from, to { color: transparent }
    50% { color: var(--accent-gold); }
}

/* Mobile Hero & Layout Responsiveness */
@media (max-width: 767px) {
    .hero-section-premium {
        padding-top: 120px;
        padding-bottom: 60px;
        min-height: auto;
        text-align: center;
    }
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
        margin-bottom: 16px;
        display: inline-flex;
    }
    .hero-title {
        font-size: 2.1rem;
        text-align: center;
        line-height: 1.3;
    }
    .hero-desc {
        font-size: 0.95rem;
        text-align: center;
        margin: 0 auto 30px auto;
    }
    .hero-content .d-flex {
        justify-content: center;
    }
    .btn-hero-primary, .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    .stats-badge-container {
        margin-top: 30px;
        padding: 20px !important;
    }
    .stats-badge-container .stat-num {
        font-size: 1.8rem !important;
    }
    .stats-badge-container .stat-label {
        font-size: 0.75rem !important;
    }
    .moto-text {
        font-size: 1.25rem !important;
        line-height: 1.5 !important;
    }
}
