/* Import Font Google */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --gold-primary: #c5a47e; /* Warna Emas Utama */
    --gold-dark: #b38b6d;    /* Warna Emas Gelap untuk hover */
    --dark-blue: #1a233a;   /* Warna Gelap untuk Teks & Latar */
    --grey-text: #666;
    --light-bg: #f9f9f9;
    --white-color: #ffffff;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* General Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--white-color);
    color: var(--dark-blue);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: var(--white-color);
    box-shadow: var(--box-shadow);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 22px;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.navbar .nav-menu {
    list-style: none;
    display: flex;
}

.navbar a {
    text-decoration: none;
    color: var(--dark-blue);
    margin: 0 18px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar a:hover, .navbar a.active {
    color: var(--gold-primary);
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 24px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(26, 35, 58, 0.7), rgba(26, 35, 58, 0.7)), url('../img/slider1.jpg'); /* Fallback background */
    /* Ganti 'slider1.jpg' jika Anda ingin gambar latar statis di sini */
    background-size: cover;
    background-position: center;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white-color);
}

.hero .slide-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: var(--gold-primary);
    color: var(--white-color);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--gold-dark);
}

/* Section General */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.section-title p {
    color: var(--grey-text);
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    background-color: var(--light-bg);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-item {
    background: var(--white-color);
    padding: 40px 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-item i {
    font-size: 48px;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-item p {
    color: var(--grey-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-item a {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 600;
}

/* Info Section */
.info-section {
    background-color: var(--white-color);
}
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}
.info-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}
.info-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--grey-text);
}
.info-content ul {
    list-style: none;
    padding: 0;
}
.info-content ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.info-content ul i {
    color: var(--gold-primary);
    margin-right: 15px;
    font-size: 20px;
}
.info-image {
    width: 100%;
    height: 350px;
    background-color: #eee; /* Placeholder bg */
    border-radius: 10px;
    /* Aktifkan baris di bawah ini jika Anda memiliki gambar */
    /* background-image: url('../img/kantor-kami.jpg'); */
    /* background-size: cover; */
    /* background-position: center; */
}


/* Call to Action (CTA) Section */
.cta {
    background-color: var(--dark-blue);
    color: var(--white-color);
    text-align: center;
}
.cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
}
.cta p {
    margin-bottom: 30px;
    opacity: 0.9;
}
.btn-secondary {
    background-color: var(--white-color);
    color: var(--dark-blue);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    background-color: #eee;
}

/* Footer */
.footer {
    background-color: var(--dark-blue);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 20px 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-col h4 {
    color: var(--white-color);
    font-size: 18px;
    margin-bottom: 20px;
}
.footer-col p, .footer-col ul, .footer-col address {
    font-size: 15px;
    line-height: 1.8;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-col ul a:hover {
    color: var(--gold-primary);
}
.footer-col address p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}
.footer-col address i {
    margin-right: 15px;
    margin-top: 5px;
    color: var(--gold-primary);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
}

/* Responsive (Mobile) */
@media (max-width: 992px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
    .info-image {
        grid-row: 1; /* Pindahkan gambar ke atas pada mobile */
        height: 300px;
    }
}


@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .navbar {
        position: absolute;
        top: 75px;
        left: -100%;
        width: 100%;
        background-color: var(--white-color);
        box-shadow: var(--box-shadow);
        transition: left 0.3s ease-in-out;
    }
    .navbar.active {
        left: 0;
    }
    .nav-menu {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }
    .nav-menu li {
        margin-bottom: 15px;
    }
    .hero h1 {
        font-size: 36px;
    }
    .hero p {
        font-size: 16px;
    }
    .section-title h2 {
        font-size: 28px;
    }
}