@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@600;700&display=swap');

:root {
    --gold: #D4AF37;
    --gold-dark: #b5952f;
    --dark: #1a1a1a;
    --grey: #f9f9f9;
    --text: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: #fff;
}

/* =========================================
   BAGIAN HEADER (UPDATED: SELARAS)
   ========================================= */
.page-header {
    position: relative;
    width: 100%;

    /* UBAH: Tinggi 600px (Sama dengan halaman lain) */
    height: 600px;

    margin-top: 70px;

    /* UBAH: Asset kontak.png */
    background-image: url('/imgheader/gambar6.jpeg');

    background-size: cover;
    background-position: center bottom; /* Fokus ke bawah */
    background-repeat: no-repeat;

    /* Flexbox Centering */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 0 20px;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 0.95rem;
    color: #ccc;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.separator {
    margin: 0 10px;
    color: var(--gold);
}

.current {
    color: var(--gold);
    font-weight: 600;
}

/* =========================================
   BAGIAN KONTEN KONTAK (TIDAK DIRUBAH)
   ========================================= */
.contact-page-section {
    padding: 60px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.area-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.area-desc {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-form-area {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: 0.3s;
}

.form-control:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

textarea.form-control {
    resize: vertical;
}

.btn-gold-solid {
    background-color: var(--gold);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    transition: 0.3s;
}

.btn-gold-solid:hover {
    background-color: var(--gold-dark);
    transform: translateY(-2px);
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #fbfbfb;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.info-item:hover {
    transform: translateX(5px);
    border-color: var(--gold);
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: #FFF9E6;
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.info-text p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.maps-section {
    padding: 0 20px 80px;
}

.section-header {
    margin-bottom: 40px;
}

.text-center {
    text-align: center;
}

.section-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.line-center-gold {
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    margin: 0 auto;
}

.map-wrapper {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border: 5px solid white;
    margin-bottom: 25px;
}

.map-wrapper iframe {
    display: block;
    filter: grayscale(10%);
    transition: 0.5s;
}

.map-wrapper:hover iframe {
    filter: grayscale(0%);
}

.map-bottom-info {
    background-color: #121212;
    padding: 35px 40px;
    border-radius: 12px;
    color: white;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-left: 5px solid var(--gold);
    width: 100%;
}

.card-icon {
    font-size: 36px;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
    padding: 15px;
    border-radius: 50%;
    flex-shrink: 0;
}

.card-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: white;
}

.card-info p {
    font-size: 1rem;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-map-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    border-bottom: 1px solid transparent;
}

.btn-map-link:hover {
    color: white;
    transform: translateX(5px);
    border-bottom-color: var(--gold);
}

/* --- CTA SECTION --- */
.cta-section {
    background-color: #121212;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
    margin-top: 0;
}

.cta-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    filter: blur(120px);
    z-index: 1;
    pointer-events: none;
}

.glow-left { top: -100px; left: -100px; }
.glow-right { bottom: -100px; right: -100px; }

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 50px;
    line-height: 1.6;
}

.cta-contact-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.contact-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid #333;
    padding: 20px 30px;
    border-radius: 12px;
    min-width: 280px;
}

.contact-icon i {
    color: var(--gold);
    font-size: 28px;
}

.contact-info-text {
    text-align: left;
}

.contact-info-text span {
    display: block;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 5px;
}

.contact-info-text strong {
    font-size: 1.1rem;
    color: white;
    letter-spacing: 0.5px;
}

.cta-footer-note {
    margin-top: 20px;
    color: #666;
    font-size: 0.9rem;
}

.btn-gold-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 40px;
    border: 2px solid var(--gold);
    background-color: transparent;
    color: var(--gold);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-gold-outline:hover {
    background-color: var(--gold);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.btn-gold-outline i {
    font-size: 1.4rem;
}

.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease-out;
}

.scroll-animate.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }

/* =========================================
   MEDIA QUERIES (UPDATED: HEADER RESPONSIF)
   ========================================= */

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* --- HEADER RESPONSIVE LOGIC (SELARAS) --- */
    .page-header {
        height: auto;
        aspect-ratio: 16/9; /* Gambar utuh memanjang 16:9 */
        background-position: center bottom;
        background-size: cover;

        /* Centering Text */
        padding-top: 0;
        padding-bottom: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .page-title {
        font-size: 1.5rem; /* Font mengecil */
        margin-bottom: 5px;
        line-height: 1.2;
    }

    .breadcrumb {
        font-size: 0.75rem;
    }

    /* --- Style Lainnya Tetap --- */
    .cta-title { font-size: 2rem; }
    .cta-contact-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .contact-box {
        width: 100%;
        justify-content: center;
    }
    .map-bottom-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
    }
    .card-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}