/* --- GLOBAL VARIABLES & RESET --- */
:root {
    --primary-blue: #00AAFF;
    --dark-blue: #0072AA;
    --light-blue: #80D5FF;
    --text-black: #000000;
    --text-grey: #727272;
    --bg-grey: #f5f5f5;
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    list-style: none;
}

body {
    background-color: var(--bg-grey);
    overflow-x: hidden;
    min-height: 100vh;
}

html {
    scroll-behavior: smooth;
}

/* --- NAVBAR --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 80px;
    background: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.05);
}

.logo {
    font-size: 32px;
    font-weight: 800;
    color: #000;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: #000;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
    padding: 5px 0;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-blue);
}

/* Dropdown */
.dropdown { 
    position: relative; 
    cursor: pointer; 
}
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 180px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    flex-direction: column;
    z-index: 1001;
    padding: 10px 0;
}
.dropdown:hover .dropdown-content { 
    display: flex; 
}
.dropdown-content a { 
    padding: 12px 20px; 
    color: #333; 
    display: block;
    width: 100%;
}
.dropdown-content a:hover { 
    background-color: #f1f1f1; 
    color: var(--primary-blue); 
}

.nav-buttons { 
    display: flex; 
    gap: 10px; 
}
.btn {
    padding: 8px 24px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    display: inline-block;
    border: none;
}
.btn:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.btn-daftar { 
    background-color: var(--light-blue); 
    color: #fff; 
}
.btn-masuk { 
    background-color: var(--primary-blue); 
    color: #fff; 
}

/* --- MOBILE MENU --- */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #000;
    padding: 10px;
    background: none;
    border: none;
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    background-image: url('https://images.unsplash.com/photo-1588668214407-6ea9a6d8c272?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 80px;
    margin-top: 80px;
}

.hero-card {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.5);
    padding: 40px;
    border-radius: 15px;
    max-width: 600px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-card h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-card p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.5;
    opacity: 0.9;
}

.hero-btn {
    background: #fff;
    color: #333;
    padding: 12px 30px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.hero-btn:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,170,255,0.3);
}

/* --- FEATURES SECTION --- */
.features {
    background-color: var(--primary-blue);
    padding: 80px;
    color: #fff;
    position: relative;
    margin-top: -50px;
    border-radius: 30px;
    margin-left: 50px;
    margin-right: 50px;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,170,255,0.2);
}

.features h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.feature-item i {
    font-size: 50px;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-item p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

/* --- PACKAGES SECTION --- */
.packages {
    padding: 100px 80px;
    text-align: center;
    background-color: #fff;
}

.section-title {
    color: var(--primary-blue);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
}

.package-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: left;
    padding-bottom: 20px;
    transition: all 0.3s;
    border: 1px solid #eee;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.package-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin: 15px;
    width: calc(100% - 30px);
    border-radius: 10px;
}

.package-info {
    padding: 0 20px;
    position: relative;
}

.package-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #000;
}

.package-location {
    color: var(--text-grey);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.rating {
    color: #FFD700;
    font-size: 14px;
    margin-bottom: 10px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

.price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-grey);
}

.order-btn {
    background-color: var(--primary-blue);
    color: #fff;
    padding: 8px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background 0.3s;
}

.order-btn:hover {
    background-color: var(--dark-blue);
}

/* --- CUSTOM PACKAGE IMPROVEMENTS --- */
.custom-package {
    padding: 80px;
    text-align: center;
    background-color: var(--bg-grey);
}

.search-container {
    background: linear-gradient(135deg, #00AAFF, #0072AA);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 170, 255, 0.3);
}

.search-group {
    flex: 1;
    text-align: left;
    position: relative;
    padding: 0 25px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.search-group:last-child {
    border-right: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    cursor: pointer;
}

.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select {
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    color: white;
    padding: 12px 40px 12px 15px;
    font-size: 14px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: all 0.3s;
}

.custom-select:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
}

.custom-select option {
    background: #fff;
    color: #333;
    padding: 10px;
}

.select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    pointer-events: none;
    font-size: 12px;
}

.search-btn {
    background: white;
    color: #00AAFF;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.search-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    background: #f0f0f0;
}

/* --- BACKGROUND FIXES --- */
.tentang-header {
    background-image: url('https://images.unsplash.com/photo-1539397646733-840678c66a7a?q=80&w=1920&auto=format&fit=crop');
    margin-top: 80px;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 50px;
}

.kontak-header {
    background-image: url('https://images.unsplash.com/photo-1596402184320-417e7178b2cd?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    margin-top: 80px;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 50px;
}

/* Fixed background untuk about page */
.about-page-content {
    display: block;
    padding-top: 100px;
}

/* Fix untuk glass container di halaman kontak */
.kontak-glass-container {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 20px;
    width: 100%;
    max-width: 800px;
    padding: 50px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin: 20px;
}

/* --- AUTH PAGES --- */
.page-header {
    margin-top: 80px;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 50px;
}

.glass-container {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    width: 100%;
    max-width: 1100px;
    min-height: 600px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.auth-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.auth-form-container {
    flex: 1;
    background: #fff;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 20px;
    margin: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.auth-title { 
    font-size: 48px; 
    font-weight: 700; 
    margin-bottom: 10px; 
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.auth-subtitle { 
    font-size: 24px; 
    margin-bottom: 20px; 
    line-height: 1.4; 
    opacity: 0.9;
}
.auth-form-title { 
    font-size: 32px; 
    font-weight: 700; 
    color: var(--primary-blue); 
    margin-bottom: 30px; 
    text-align: center; 
}

/* Form Styles */
.input-group { 
    margin-bottom: 20px; 
}
.input-label { 
    display: block; 
    color: var(--primary-blue); 
    margin-bottom: 8px; 
    font-weight: 500; 
}
.input-field {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid var(--primary-blue);
    border-radius: 50px;
    outline: none;
    font-size: 14px;
    color: #333;
    box-sizing: border-box;
    transition: all 0.3s;
}
.input-field:focus {
    border-color: var(--dark-blue);
    box-shadow: 0 0 0 3px rgba(0,170,255,0.2);
}
.input-field::placeholder { 
    color: #b4b4b4; 
}
.submit-btn {
    background: var(--primary-blue);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s;
    width: 100%;
}
.submit-btn:hover {
    background: var(--dark-blue);
}

/* --- ABOUT PAGE --- */
.about-hero {
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
}

.about-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    margin: 20px auto;
    max-width: 1000px;
    display: flex;
    align-items: center;
    gap: 40px;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.about-card.reverse { 
    flex-direction: row-reverse; 
}
.about-text { 
    flex: 1; 
    text-align: left; 
}
.about-text h3 { 
    font-size: 28px; 
    margin-bottom: 15px; 
    font-weight: 600; 
    color: white;
}
.about-text p { 
    font-size: 16px; 
    line-height: 1.6; 
    color: white;
    opacity: 0.9;
}
.about-img { 
    flex: 1; 
    border-radius: 10px; 
    height: 300px; 
    object-fit: cover; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.stats-bar {
    background: var(--primary-blue);
    padding: 60px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 80px;
    color: #fff;
    margin-top: 50px;
}
.stat-item { 
    text-align: center; 
}
.stat-number { 
    font-size: 48px; 
    font-weight: 700; 
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.stat-label { 
    font-size: 16px; 
    opacity: 0.9;
}

/* --- FAQ PAGE --- */
.faq-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.faq-header { 
    text-align: center; 
    font-size: 36px; 
    font-weight: 700; 
    margin-bottom: 50px; 
    color: var(--primary-blue);
}
.faq-item { 
    margin-bottom: 30px; 
    border-bottom: 1px solid #eee; 
    padding-bottom: 20px; 
}
.faq-question { 
    font-size: 20px; 
    margin-bottom: 10px; 
    cursor: pointer; 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    color: #333;
    padding: 10px 0;
}
.faq-answer { 
    font-size: 16px; 
    color: #555; 
    display: none; 
    margin-top: 10px; 
    line-height: 1.6;
    padding: 0 10px;
}
.faq-answer.active { 
    display: block; 
    animation: fadeIn 0.5s; 
}
.faq-label { 
    font-weight: 700; 
    color: #000; 
    margin-right: 5px; 
}

@keyframes fadeIn { 
    from { 
        opacity: 0; 
        transform: translateY(-10px); 
    } 
    to { 
        opacity: 1; 
        transform: translateY(0); 
    } 
}

/* --- FOOTER --- */
footer {
    background-color: var(--dark-blue);
    color: #fff;
    padding: 60px 80px 20px;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 40px;
}

.footer-brand h2 {
    font-size: 40px;
    margin-bottom: 10px;
    font-weight: 800;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons i {
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s;
}

.social-icons i:hover {
    color: var(--light-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #fff;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--light-blue);
}

/* --- LAYOUT UTAMA --- */
.container-width {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}


.section-komitmen {
    background-image: url('https://images.unsplash.com/photo-1588668214407-6ea9a6d8c272?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 80px;
}

.about-hero h1 {
    color: white;
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* --- SECTION 2: STATS BLUE BAR --- */
.section-stats {
    background-color: var(--primary-blue);
    padding: 60px 0;
    color: white;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stats-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.stat-item .stat-number {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-item .stat-label {
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
}


.section-layanan {
    background-image: url('https://images.unsplash.com/photo-1707371773021-d39017b761f0?q=80&w=749&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
}

/* --- GLASS CARD DESIGN (Kotak Transparan) --- */
.glass-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* Teks dalam kartu */
.card-text {
    flex: 1;
    color: white;
}

.card-text h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.card-text p {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.9;
    font-weight: 300;
}

/* Gambar dalam kartu */
.card-image-wrapper {
    flex: 1;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.card-image-wrapper img:hover {
    transform: scale(1.05);
}

/* Helper class untuk membalik posisi */
.reverse-layout {
    flex-direction: row-reverse;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1200px) {
    .features {
        margin-left: 30px;
        margin-right: 30px;
        padding: 60px;
    }
    
    .search-container {
        padding: 30px;
    }
    
    .search-group {
        padding: 0 20px;
    }
    
    .packages, .custom-package {
        padding: 60px;
    }
}

@media (max-width: 1024px) {
    nav {
        padding: 15px 40px;
    }
    
    .hero {
        padding: 0 40px;
    }
    
    .features {
        margin-left: 20px;
        margin-right: 20px;
        padding: 50px 40px;
        border-radius: 25px;
    }
    
    .packages, .custom-package {
        padding: 60px 40px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .glass-container {
        flex-direction: column;
        min-height: auto;
        max-width: 600px;
    }
    
    .auth-content,
    .auth-form-container {
        padding: 40px;
    }
    
    .search-container {
        flex-direction: column;
        gap: 25px;
        padding: 30px;
    }
    
    .search-group {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        padding: 0 0 20px 0;
        width: 100%;
    }
    
    .search-group:last-child {
        border-bottom: none;
        padding-bottom: 0;
        padding-top: 10px;
    }
    
    .custom-select {
        padding: 14px 40px 14px 15px;
    }
    
    .search-btn {
        width: 100%;
        justify-content: center;
        padding: 15px;
    }
    
    .footer-content {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding: 40px 20px;
        transition: 0.3s;
        z-index: 999;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        gap: 0;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 15px;
        border-bottom: 1px solid #eee;
    }
    
    .dropdown-content {
        position: static;
        box-shadow: none;
        display: none;
        background: #f9f9f9;
        margin-top: 0;
        border-radius: 0;
        width: 100%;
    }
    
    .dropdown.active .dropdown-content {
        display: flex;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .nav-buttons.mobile {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
        gap: 15px;
    }
    
    .hero {
        padding: 20px;
        justify-content: center;
        text-align: center;
        margin-top: 70px;
    }
    
    .hero-card {
        padding: 30px 20px;
        margin: 0;
        width: 100%;
    }
    
    .hero-card h1 {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .about-card {
        flex-direction: column;
        padding: 25px;
        margin: 15px;
        gap: 25px;
    }
    
    .about-card.reverse {
        flex-direction: column;
    }
    
    .about-img {
        width: 100%;
        height: 250px;
    }
    
    .tentang-header,
    .kontak-header {
        padding: 20px;
        min-height: auto;
        padding-top: 100px;
    }
    
    .about-hero h1 {
        font-size: 36px;
    }
    
    .stats-bar {
        flex-direction: column;
        gap: 30px;
        padding: 40px 20px;
    }
    
    .stat-item {
        width: 100%;
    }
    
    .glass-card, 
    .glass-card.reverse-layout {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 25px;
    }

    .card-image-wrapper {
        width: 100%;
        height: 250px;
        margin-top: 0;
    }
    
    .stats-grid {
        gap: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 15px 20px;
    }
    
    .logo {
        font-size: 28px;
    }
    
    .hero-card h1 {
        font-size: 28px;
    }
    
    .hero-card p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .auth-title {
        font-size: 36px;
    }
    
    .auth-subtitle {
        font-size: 20px;
    }
    
    .auth-form-title {
        font-size: 24px;
    }
    
    .search-container {
        padding: 20px;
        margin: 0;
    }
    
    .search-btn {
        padding: 12px 20px;
        font-size: 16px;
    }
    
    .custom-select {
        padding: 12px 35px 12px 12px;
    }
    
    .about-hero h1 {
        font-size: 28px;
    }
    
    .about-text h3 {
        font-size: 22px;
    }
    
    .about-text p {
        font-size: 14px;
    }
    
    .features, .packages, .custom-package {
        padding: 40px 20px;
    }
    
    .features {
        margin-left: 15px;
        margin-right: 15px;
        border-radius: 20px;
    }
    
    footer {
        padding: 40px 20px 20px;
    }
    
    .stat-item .stat-number {
        font-size: 42px;
    }
    
    .card-text h3 {
        font-size: 24px;
    }
    
    .card-text p {
        font-size: 14px;
    }
}


/* --- SEARCH RESULTS PAGE --- */
.search-results {
    background: #f9f9f9;
    min-height: 60vh;
}

.filter-summary {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.filter-summary h3 {
    color: #00AAFF;
    margin-bottom: 15px;
    font-size: 18px;
}

.filter-summary > div {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.filter-summary > div > div {
    background: #f5f5f5;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
}

/* --- ORDER PAGE --- */
.order-container {
    background: #f9f9f9;
    min-height: 60vh;
}

.order-success {
    background: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.order-success .success-icon {
    background: #00FF44;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
}

.order-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.order-summary {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.order-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #00AAFF;
    font-weight: 500;
}

.form-group select,
.form-group input[type="date"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Poppins', sans-serif;
}

.form-group textarea {
    resize: vertical;
}

/* Payment Method Radio */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.payment-method {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-method:hover {
    border-color: #00AAFF;
}

.payment-method input[type="radio"] {
    margin-right: 10px;
}

.payment-method-info div:first-child {
    font-weight: 600;
    margin-bottom: 5px;
}

.payment-method-info div:last-child {
    font-size: 12px;
    color: #888;
}

.payment-info {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.payment-info ol {
    color: #666;
    margin-left: 20px;
}

.payment-info li {
    margin-bottom: 5px;
}

/* --- RESPONSIVE FOR SEARCH & ORDER PAGES --- */
@media (max-width: 992px) {
    .search-results,
    .order-container {
        padding: 40px 30px;
    }
    
    .filter-summary > div {
        flex-direction: column;
        gap: 10px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .search-results,
    .order-container {
        padding: 30px 20px;
    }
    
    .order-success {
        padding: 30px 20px;
    }
    
    .order-form {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .search-results,
    .order-container {
        padding: 20px 15px;
    }
    
    .order-success .success-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
    
    .order-summary > div {
        grid-template-columns: 1fr;
    }
}

/* --- TESTIMONIALS --- */
.testimonial-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

/* --- QUICK ORDER BUTTONS --- */
.quick-order-btn {
    background: #00AAFF;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
    margin-right: 5px;
    transition: background 0.3s;
}

.quick-order-btn:hover {
    background: #0072AA;
}

.detail-btn {
    background: #80D5FF;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.3s;
}

.detail-btn:hover {
    background: #00AAFF;
}

/* --- PACKAGE CARD IMPROVEMENTS --- */
.package-card {
    position: relative;
}

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #00AAFF;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* --- RESPONSIVE IMPROVEMENTS --- */
@media (max-width: 768px) {
    .cta {
        padding: 40px 20px;
    }
    
    .testimonials {
        padding: 40px 20px;
    }
    
    .package-info p {
        height: auto !important;
        margin-bottom: 15px !important;
    }
}

@media (max-width: 480px) {
    .price-row {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .order-btn {
        width: 100%;
        text-align: center;
    }
}