/* ========================================
   GLACIAL INDIFFERENCE FONT
======================================== */
@font-face {
    font-family: 'Glacial Indifference';
    src: url('fonts/GlacialIndifference-Regular.woff2') format('woff2'),
         url('fonts/GlacialIndifference-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Glacial Indifference';
    src: url('fonts/GlacialIndifference-Bold.woff2') format('woff2'),
         url('fonts/GlacialIndifference-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Glacial Indifference', Arial, sans-serif;
    background-color: #f8f9fa;
    line-height: 1.6;
}

/* Header */
.header {
    background: #03175cff;
    color: white;
    padding: 15px 0;
    position: relative;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-circle {
    width: 50px;
    height: 50px;
    background: #fbbf24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #1e40af;
    font-size: 20px;
    font-family: 'Glacial Indifference', Arial, sans-serif;
}

.logo-text h1 {
    font-size: 24px;
    margin-bottom: 2px;
    font-family: 'Glacial Indifference', Arial, sans-serif;
}

.logo-text p {
    font-size: 12px;
    opacity: 0.9;
    font-family: 'Glacial Indifference', Arial, sans-serif;
}

.contact-info {
    text-align: right;
    font-size: 18px;
    font-family: 'Glacial Indifference', Arial, sans-serif;
}

/* Navigation */
.nav {
    background: #fbbf24;
    padding: 0;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
}

.nav-item {
    flex: 1;
    text-align: center;
    padding: 15px 20px;
    background: #03175cff;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border-right: 2px solid #fbbf24;
    cursor: pointer;
    font-family: 'Glacial Indifference', Arial, sans-serif;
}

.nav-item:last-child {
    border-right: none;
}

.nav-item:hover {
    background: #1e40af;
}

/* Active Navigation State - KUNING HIGHLIGHT */
.nav-item.active {
    background: #fbbf24 !important;
    color: #03175cff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Content Sections - Hidden by default */
.content-section {
    display: none;
}

.content-section.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Section Headers */
.section-header {
    background: #fbbf24;
    color: #03175cff;
    padding: 15px 20px;
    margin: 30px 0 0 0;
    border-radius: 25px 25px 0 0;
    font-weight: bold;
    font-size: 18px;
    position: relative;
    font-family: 'Glacial Indifference', Arial, sans-serif;
}

.scroll-indicator {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: #03175cff;
    font-family: 'Glacial Indifference', Arial, sans-serif;
}

/* Scrollable Sections */
.scroll-section {
    background: white;
    border: 3px solid #fbbf24;
    border-top: none;
    border-radius: 0 0 15px 15px;
    padding: 20px;
    margin-bottom: 30px;
    overflow-x: auto;
}

.scroll-content {
    display: flex;
    gap: 20px;
    padding-bottom: 10px;
    min-width: max-content;
}

/* Group Forming Cards */
.group-card {
    min-width: 280px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
    border: 2px solid #e5e7eb;
}

.group-card:hover {
    transform: translateY(-5px);
    border-color: #fbbf24;
}

.group-card-image {
    height: 300px;
    background: linear-gradient(45deg, #87ceeb, #98fb98);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.group-card-image img,
.best-seller-image img,
.hotspot-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.availability-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    z-index: 2;
    font-family: 'Glacial Indifference', Arial, sans-serif;
}

.clouds {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 60px;
    height: 30px;
    background: white;
    border-radius: 50px;
}

.clouds::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 10px;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
}

.mountains {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(45deg, #4ade80, #22c55e);
    clip-path: polygon(0 100%, 30% 20%, 60% 40%, 100% 0, 100% 100%);
}

.group-card-content {
    padding: 20px;
    background:#03175cff;
    color: white;
}

.group-card h3 {
    font-size: 16px;
    margin-bottom: 5px;
    font-family: 'Glacial Indifference', Arial, sans-serif;
}

.group-card .price {
    font-size: 24px;
    font-weight: bold;
    color: #fbbf24;
    font-family: 'Glacial Indifference', Arial, sans-serif;
}

.group-card .departure {
    font-size: 12px;
    opacity: 0.9;
    margin-top: 5px;
    font-family: 'Glacial Indifference', Arial, sans-serif;
}

/* Best Seller Cards */
.best-seller-card,
.best-seller-card_1,
.best-seller-card_2,
.best-seller-card_3,
.best-seller-card_4,
.best-seller-card_5,
.best-seller-card_6 {
    min-width: 280px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
    border: 2px solid #e5e7eb;
}

.best-seller-card:hover,
.best-seller-card_1:hover,
.best-seller-card_2:hover,
.best-seller-card_3:hover,
.best-seller-card_4:hover,
.best-seller-card_5:hover,
.best-seller-card_6:hover {
    transform: translateY(-5px);
    border-color: #fbbf24;
}

.best-seller-image {
    height: 300px;
    background: linear-gradient(45deg, #87ceeb, #98fb98);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.best-seller-content {
    padding: 20px;
    background: #03175cff;
    color: white;
}

.best-seller-content h3 {
    font-size: 16px;
    margin-bottom: 5px;
    font-family: 'Glacial Indifference', Arial, sans-serif;
}

.best-seller-content .price {
    font-size: 24px;
    font-weight: bold;
    color: #fbbf24;
    font-family: 'Glacial Indifference', Arial, sans-serif;
}

.best-seller-content .departure {
    font-size: 12px;
    opacity: 0.9;
    margin-top: 5px;
    font-family: 'Glacial Indifference', Arial, sans-serif;
}

.best-seller-content p {
    font-size: 14px;
    opacity: 0.9;
    font-family: 'Glacial Indifference', Arial, sans-serif;
}

/* HotSpot Cards */
.hotspot-card {
    min-width: 350px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
    border: 2px solid #e5e7eb;
}

.hotspot-card:hover {
    transform: translateY(-5px);
    border-color: #fbbf24;
}

.hotspot-image {
    height: 375px;
    background: linear-gradient(45deg, #87ceeb, #98fb98);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotspot-content {
    padding: 20px;
    background:#03175cff;
    color: white;
}

.hotspot-content h3 {
    font-size: 16px;
    margin-bottom: 5px;
    font-family: 'Glacial Indifference', Arial, sans-serif;
}

.hotspot-content .price {
    font-size: 24px;
    font-weight: bold;
    color: #fbbf24;
    font-family: 'Glacial Indifference', Arial, sans-serif;
}

.hotspot-content .departure {
    font-size: 12px;
    opacity: 0.9;
    margin-top: 5px;
    font-family: 'Glacial Indifference', Arial, sans-serif;
}

/* Info Box Styles */
.info-box {
    background: #fbbf24;
    color: #1e40af;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
    font-family: 'Glacial Indifference', Arial, sans-serif;
}

/* Visa Service Specific Styles */
.visa-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    border: 2px solid #e5e7eb;
    transition: transform 0.3s ease;
}

.visa-card:hover {
    transform: translateY(-3px);
    border-color: #fbbf24;
}

.visa-card-header {
    background: #03175cff;
    color: white;
    padding: 20px;
    text-align: center;
}

.visa-card-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-family: 'Glacial Indifference', Arial, sans-serif;
}

.visa-card-content {
    padding: 20px;
}

.visa-requirements {
    list-style: none;
    padding: 0;
}

.visa-requirements li {
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    font-family: 'Glacial Indifference', Arial, sans-serif;
}

.visa-requirements li::before {
    content: "✓";
    color: #22c55e;
    font-weight: bold;
    margin-right: 10px;
}

.visa-price {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    margin-top: 15px;
}

.visa-price .price {
    font-size: 24px;
    font-weight: bold;
    color: #03175cff;
    font-family: 'Glacial Indifference', Arial, sans-serif;
}

/* Footer */
.footer {
    background: #03175cff;
    color: white;
    padding: 50px 0 30px 0;
    margin-top: 50px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.footer-logo {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.footer-logo .logo-text h2 {
    font-size: 22px;
    margin-bottom: 5px;
}

.footer-logo .logo-text p {
    font-size: 16px;
    line-height: 1.8;
    margin: 5px 0;
}

.footer-info {
    text-align: right;
    font-size: 18px;
    font-family: 'Glacial Indifference', Arial, sans-serif;
}

.footer-info p {
    margin: 12px 0;
}

.footer-info a {
    color: #fbbf24;
    text-decoration: none;
    font-family: 'Glacial Indifference', Arial, sans-serif;
    font-size: 18px;
    transition: color 0.3s ease;
}

.footer-info a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 30px;
    font-size: 15px;
    opacity: 0.9;
    font-family: 'Glacial Indifference', Arial, sans-serif;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float::before {
    content: "💬";
    font-size: 24px;
}

/* Smooth Scrolling */
.scroll-section {
    scroll-behavior: smooth;
}

.scroll-section::-webkit-scrollbar {
    height: 8px;
}

.scroll-section::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.scroll-section::-webkit-scrollbar-thumb {
    background: #fbbf24;
    border-radius: 10px;
}

.scroll-section::-webkit-scrollbar-thumb:hover {
    background: #f59e0b;
}

/* ========================================
   ANDROID/MOBILE OPTIMIZATION
   Desktop Layout TIDAK TERPENGARUH
======================================== */

/* Tablet Landscape (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        padding: 0 25px;
    }
    
    .group-card,
    .best-seller-card {
        min-width: 260px;
    }
}

/* Tablet Portrait & Large Phone (481px - 768px) */
@media (max-width: 768px) {
    /* Prevent horizontal overflow */
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    /* Header responsive */
    .header-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 0 15px;
    }

    .contact-info {
        text-align: center;
        font-size: 16px;
    }

    /* Navigation stacked */
    .nav-content {
        flex-direction: column;
    }

    .nav-item {
        border-right: none;
        border-bottom: 2px solid #fbbf24;
        padding: 18px 20px;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-item:last-child {
        border-bottom: none;
    }
    
    /* Active nav highlight lebih jelas */
    .nav-item.active {
        transform: translateY(0);
        box-shadow: inset 0 0 0 3px #03175cff;
    }

    /* Container padding lebih kecil */
    .container {
        padding: 0 15px;
    }
    
    /* Section header responsive */
    .section-header {
        font-size: 16px;
        padding: 12px 15px;
        margin: 20px 0 0 0;
    }
    
    .scroll-indicator {
        font-size: 12px;
        right: 15px;
    }
    
    /* Scroll section padding */
    .scroll-section {
        padding: 15px;
        border-width: 2px;
    }
    
    /* Cards lebih compact */
    .group-card,
    .best-seller-card,
    .best-seller-card_1,
    .best-seller-card_2,
    .best-seller-card_3,
    .best-seller-card_4,
    .best-seller-card_5,
    .best-seller-card_6 {
        min-width: 260px;
    }

    .group-card-image,
    .best-seller-image {
        height: 220px;
    }
    
    /* Card content padding */
    .group-card-content,
    .best-seller-content {
        padding: 15px;
    }
    
    .group-card h3,
    .best-seller-content h3 {
        font-size: 15px;
    }
    
    .group-card .price,
    .best-seller-content .price {
        font-size: 20px;
    }
    
    .group-card .departure,
    .best-seller-content .departure {
        font-size: 11px;
    }

    /* HotSpot cards */
    .hotspot-card {
        min-width: 280px;
    }

    .hotspot-image {
        height: 280px;
    }
    
    .hotspot-content {
        padding: 15px;
    }
    
    .hotspot-content h3 {
        font-size: 15px;
    }
    
    .hotspot-content .price {
        font-size: 20px;
    }

    /* Footer responsive */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-info {
        text-align: center;
        font-size: 16px;
    }
    
    .footer-info a {
        font-size: 16px;
    }
    
    .footer-logo {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-bottom {
        font-size: 13px;
    }
    
    /* WhatsApp button lebih kecil */
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float::before {
        font-size: 22px;
    }
    
    /* Touch-friendly scroll */
    .scroll-section {
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }
    
    .group-card,
    .best-seller-card,
    .hotspot-card {
        scroll-snap-align: start;
    }
    
    /* Visa cards responsive */
    .visa-card-header h3 {
        font-size: 20px;
    }
    
    .visa-requirements li {
        font-size: 14px;
    }
}

/* Android Phone (320px - 480px) */
@media (max-width: 480px) {
    /* Extra compact header */
    .logo-circle {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .logo-text h1 {
        font-size: 20px;
    }
    
    .logo-text p {
        font-size: 11px;
    }
    
    .contact-info {
        font-size: 14px;
    }
    
    /* Navigation touch-friendly */
    .nav-item {
        padding: 16px 15px;
        font-size: 15px;
    }
    
    /* Section headers */
    .section-header {
        font-size: 15px;
        padding: 10px 12px;
        border-radius: 15px 15px 0 0;
    }
    
    .scroll-indicator {
        display: none; /* Hide di layar kecil */
    }
    
    /* Scroll section */
    .scroll-section {
        padding: 12px;
        border-radius: 0 0 10px 10px;
    }
    
    .scroll-content {
        gap: 15px;
    }
    
    /* Cards ultra compact */
    .group-card,
    .best-seller-card,
    .best-seller-card_1,
    .best-seller-card_2,
    .best-seller-card_3,
    .best-seller-card_4,
    .best-seller-card_5,
    .best-seller-card_6 {
        min-width: 240px;
        border-radius: 12px;
    }

    .group-card-image,
    .best-seller-image {
        height: 180px;
    }
    
    .group-card-content,
    .best-seller-content {
        padding: 12px;
    }
    
    .group-card h3,
    .best-seller-content h3 {
        font-size: 14px;
        margin-bottom: 4px;
    }
    
    .group-card .price,
    .best-seller-content .price {
        font-size: 18px;
    }
    
    .group-card .departure,
    .best-seller-content .departure {
        font-size: 10px;
        margin-top: 3px;
    }
    
    /* Availability badge */
    .availability-badge {
        padding: 6px 10px;
        font-size: 12px;
        bottom: 10px;
        left: 10px;
    }

    /* HotSpot cards */
    .hotspot-card {
        min-width: 240px;
    }

    .hotspot-image {
        height: 240px;
    }
    
    .hotspot-content {
        padding: 12px;
    }
    
    .hotspot-content h3 {
        font-size: 14px;
    }
    
    .hotspot-content .price {
        font-size: 18px;
    }
    
    .hotspot-content .departure {
        font-size: 10px;
    }
    
    /* Info box */
    .info-box {
        padding: 12px;
        font-size: 14px;
        border-radius: 6px;
    }
    
    /* Visa cards */
    .visa-card {
        border-radius: 12px;
    }
    
    .visa-card-header {
        padding: 15px;
    }
    
    .visa-card-header h3 {
        font-size: 18px;
    }
    
    .visa-card-content {
        padding: 15px;
    }
    
    .visa-requirements li {
        font-size: 13px;
        padding: 6px 0;
    }
    
    .visa-price {
        padding: 12px;
    }
    
    .visa-price .price {
        font-size: 20px;
    }
    
    /* Footer compact */
    .footer {
        padding: 30px 0 20px 0;
        margin-top: 30px;
    }
    
    .footer-content {
        padding: 0 15px;
        gap: 20px;
    }
    
    .footer-logo .logo-circle {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .footer-logo .logo-text h2 {
        font-size: 18px;
    }
    
    .footer-logo .logo-text p {
        font-size: 13px;
    }
    
    .footer-info {
        font-size: 14px;
    }
    
    .footer-info a {
        font-size: 14px;
    }
    
    .footer-info p {
        margin: 8px 0;
    }
    
    .footer-bottom {
        font-size: 12px;
        padding-top: 15px;
        margin-top: 20px;
    }
    
    /* WhatsApp button smallest */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float::before {
        font-size: 20px;
    }
    
    /* Scrollbar thinner */
    .scroll-section::-webkit-scrollbar {
        height: 6px;
    }
}

/* Android Chrome Fix - Prevent zoom on input focus */
@media (max-width: 768px) {
    input, textarea, select, button {
        font-size: 16px !important;
    }
}

/* Landscape orientation optimization */
@media (max-width: 896px) and (orientation: landscape) {
    .header {
        padding: 10px 0;
    }
    
    .nav-item {
        padding: 12px 15px;
    }
    
    .group-card-image,
    .best-seller-image {
        height: 160px;
    }
    
    .hotspot-image {
        height: 200px;
    }
    
    .whatsapp-float {
        width: 45px;
        height: 45px;
        bottom: 10px;
        right: 10px;
    }
    
    .whatsapp-float::before {
        font-size: 18px;
    }
}