/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

/* Variabel Warna untuk kemudahan kustomisasi */
:root {
    --bs-primary: #2563eb; /* Biru yang lebih modern */
    --bs-light: #f1f5f9;
    --bs-dark: #0f172a;
    --bs-font-sans-serif: 'Poppins', sans-serif;
}

body {
    font-family: var(--bs-font-sans-serif);
    background-color: #f8fafc; /* Sedikit abu-abu agar tidak silau */
}

/* Navbar Styling */
.navbar {
    transition: background-color 0.3s ease-in-out;
}

.navbar-brand {
    font-weight: 700;
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(37, 99, 235, 0.8), rgba(37, 99, 235, 0.8));
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

/* Styling Umum */
.section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.card-form {
    max-width: 700px;
    margin: auto;
}

.card-tiket {
    max-width: 450px;
    border: none;
    border-radius: 0.75rem;
}

/* GANTI SEMUA KODE MAPS SEBELUMNYA DENGAN BLOK INI */

.map-container {
    /* Hanya untuk style visual */
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    overflow: hidden; 
    /* Tambahkan margin bawah agar tidak menempel ke footer */
    margin-bottom: 20px; 
}

.map-container iframe {
    /* PENTING: Menetapkan tinggi dan lebar eksplisit */
    width: 100%;       /* Memastikan iframe mengisi lebar penuh container */
    height: 400px;     /* Tinggi terjamin 400px (Anda bisa menyesuaikan) */
    display: block;    /* Memastikan iframe diperlakukan sebagai blok */
    border: 0;
}