/* ==========================================================================
   1. GLOBAL VARIABLES & DEFAULT FONTS (Pewarnaan Mandiri)
   ========================================================================== */
:root {
    --primary-color: #ff6b35;       /* Warna Orange Bariq Store */
    --primary-light: #fff0ea;      /* Efek hover light orange */
    --dark-color: #0f172a;         /* Hitam elegan untuk teks utama */
    --muted-color: #64748b;        /* Abu-abu untuk detail */
    --bg-page: #f8fafc;            /* Background halaman abu-abu sangat terang */
    --card-bg: #ffffff;            /* Background putih bersih untuk kotak info */
}

body {
    background-color: var(--bg-page);
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.alamat-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    animation: fadeInPage 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeInPage {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Judul Halaman Utama dengan Efek Gradasi */
.page-title {
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    letter-spacing: -0.5px;
    margin-bottom: 35px;
    background: linear-gradient(135deg, var(--dark-color) 40%, var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* ==========================================================================
   2. MAPS WRAPPER (Bingkai Peta)
   ========================================================================== */
.maps-wrapper {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    background: #ffffff;
    transition: all 0.4s ease;
}

.maps-wrapper:hover {
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.maps-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

/* ==========================================================================
   3. INFO CARD (Kotak Detail & Jam Operasional)
   ========================================================================== */
.info-alamat {
    background-color: var(--card-bg);
    padding: 28px;
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.4s ease;
}

.info-alamat:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-light);
}

/* Sub-heading Judul Kotak */
.info-alamat h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 12px;
}

/* Baris Informasi */
.info-alamat p {
    font-size: 14px;
    color: var(--muted-color);
    line-height: 1.6;
    margin: 14px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

/* Mengatur Label Sebelah Kiri */
.info-alamat p strong {
    color: var(--dark-color);
    font-weight: 600;
    min-width: 130px;
    flex-shrink: 0;
}

/* Link Nomor Telepon / WhatsApp */
.whatsapp-link {
    color: #25d366 !important;
    text-decoration: none;
    font-weight: 700;
    background-color: #e8faf0;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    background-color: #25d366;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

/* ==========================================================================
   4. TOMBOL KEMBALI MODERN
   ========================================================================== */
.back-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-color);
    color: #ffffff !important;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    margin: 20px auto 0 auto;
    display: table; /* Supaya otomatis di tengah halaman */
}

.back-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 15px 20px -5px rgba(255, 107, 53, 0.25);
}

/* ==========================================================================
   5. RESPONSIVE OPTIMIZATION (Mobile Friendly)
   ========================================================================== */
@media (max-width: 480px) {
    .alamat-container { padding: 20px 14px; }
    .page-title { font-size: 22px; margin-bottom: 25px; }
    .maps-wrapper iframe { height: 300px; }
    .info-alamat { padding: 20px; margin-bottom: 18px; }
    .info-alamat h2 { font-size: 16px; margin-bottom: 15px; }
    
    /* Mengubah susunan baris teks menjadi vertikal pada layar handphone */
    .info-alamat p { 
        flex-direction: column; 
        gap: 4px; 
        margin: 12px 0;
        font-size: 13px;
    }
    .info-alamat p strong { min-width: 100%; }
    .back-button { width: 100%; padding: 12px 20px; font-size: 13px; box-sizing: border-box; text-align: center; }
}