@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: #fbfbfb;
    --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: TINGGI 600PX)
   ========================================= */
.page-header {
    position: relative;
    width: 100%;

    /* UBAH DISINI: Jadi 600px (Agar selaras dengan Proyek & Produk) */
    height: 600px;

    background-image: url('/imgheader/gambar1.jpeg');

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

    /* Flexbox Center (Teks otomatis di tengah) */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    margin-top: 70px;
}

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

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

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.breadcrumb {
    font-size: 1rem;
    color: #ddd;
}

.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 LAIN (TIDAK DIRUBAH)
   ========================================= */
.profile-intro {
    padding: 100px 20px;
    background-color: #fff;
}

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

.intro-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-image {
    position: relative;
    margin-top: -80px;
    z-index: 10;
}

.intro-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    position: relative;
    z-index: 2;
}

.image-frame {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    border-radius: 8px;
    z-index: 1;
}

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

.section-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--dark);
}

.text-content {
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

/* --- STATISTIK --- */
.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

/* --- VISI MISI --- */
.vision-mission-section {
    padding: 100px 20px;
    background-color: var(--grey);
}

.vm-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: flex-start;
}

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

.vm-subtitle {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.mission-list {
    list-style: none;
    padding: 0;
}

.mission-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s;
}

.mission-list li:hover {
    transform: translateX(10px);
}

.icon-check {
    min-width: 40px;
    height: 40px;
    background-color: var(--gold);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.list-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 5px;
}

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

.vision-card {
    background-color: var(--dark);
    color: white;
    padding: 50px 40px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    border-bottom: 5px solid var(--gold);
}

.vision-icon,
.vision-card h3,
.vision-statement {
    position: relative;
    z-index: 2;
}

.vision-icon {
    font-size: 50px;
    color: var(--gold);
    margin-bottom: 20px;
}

.vision-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.vision-statement {
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    color: #ddd;
}

.card-decoration {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.25);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

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

.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;
    letter-spacing: 0.5px;
    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;
}

/* --- ANIMASI --- */
.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; }

/* --- RESPONSIVE / MEDIA QUERIES --- */
@media (max-width: 992px) {
    .intro-wrapper,
    .vm-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .cta-box {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .page-title {
        font-size: 2.5rem;
    }
}

/* --- KHUSUS HP (MOBILE) --- */
@media (max-width: 768px) {
    /* HEADER LOGIC (SAMA DENGAN PROYEK & PRODUK) */
    .page-header {
        height: auto;

        /* Anti-Zoom Logic: Kunci rasio agar gambar utuh 16:9 */
        aspect-ratio: 16/9;

        background-position: center bottom;
        background-size: cover;

        /* Centering Logic: Padding 0 agar teks pas di tengah */
        padding-top: 0;
        padding-bottom: 0;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

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

    .breadcrumb {
        font-size: 0.75rem;
    }

    /* --- Bagian Bawah Tetap --- */
    .stats-row {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }
    .mission-list li {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .image-frame {
        display: none;
    }
    .cta-title {
        font-size: 2rem;
    }
    .cta-contact-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .contact-box {
        width: 100%;
        justify-content: center;
    }
}