* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
    color: #1e2a2e;
    line-height: 1.5;
    overflow-x: hidden;
}

/* Untuk halaman selain HOME - navbar langsung menggunakan warna gelap */
body:not(.home-page) .navbar {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    padding: 18px 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

body:not(.home-page) .navbar .brand,
body:not(.home-page) .navbar .nav-links a {
    color: #1e2a2e;
}

/* Custom Cursor */
.custom-cursor {
    width: 40px;
    height: 40px;
    border: 2px solid #d9b16b;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease, width 0.2s, height 0.2s, background 0.2s;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.custom-cursor.hover {
    width: 70px;
    height: 70px;
    background: rgba(217, 177, 107, 0.15);
    border-color: #d9b16b;
}

/* Scroll Progress Bar */
.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
    z-index: 1001;
}

.progress-bar {
    height: 3px;
    background: linear-gradient(90deg, #d9b16b, #f5e2b9);
    width: 0%;
    transition: width 0.1s ease;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 28px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    padding: 18px 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled .brand,
.navbar.scrolled .nav-links a {
    color: #1e2a2e;
}

.brand {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 1px;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
    position: relative;
}

.brand span {
    color: #d9b16b;
}

.brand::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d9b16b;
    transition: width 0.3s ease;
}

.brand:hover::after {
    width: 100%;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    color: #ffffff;
    transition: all 0.3s;
    position: relative;
}

.nav-links a:hover  {
    color: #d9b16b;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #d9b16b;
    transition: width 0.3s ease;
}

.nav-links a:hover::before,
.nav-links a.active::before {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.menu-toggle span {
    width: 30px;
    height: 2px;
    background: white;
    transition: all 0.3s;
}

.navbar.scrolled .menu-toggle span {
    background: #1e2a2e;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 110%;
    background-size: cover;
    background-position: center 35%;
    z-index: 0;
    transition: transform 0.1s linear;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.15));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 20;
    max-width: 780px;
    margin: 0 24px;
    animation: fadeInUp 1.2s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Search Bar */
.search-container {
    max-width: 620px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 60px;
    display: flex;
    align-items: center;
    padding: 6px 6px 6px 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
}

.search-container:focus-within {
    transform: scale(1.02);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.2);
}

.search-container i {
    color: #d9b16b;
    margin-right: 12px;
    font-size: 1.2rem;
}

.search-container input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    padding: 16px 0;
    background: transparent;
    font-family: 'Inter', sans-serif;
}

.search-container button {
    background: #d9b16b;
    border: none;
    border-radius: 50px;
    padding: 12px 32px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.search-container button:hover {
    background: #c49a4a;
    transform: scale(1.02);
}

/* Page Header */
.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #fefcf8 0%, #ffffff 100%);
    text-align: center;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #1e3c3f;
    margin-bottom: 16px;
}

.page-header p {
    color: #6b7c7c;
    max-width: 600px;
    margin: 0 auto;
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-alt {
    background: #fefcf8;
    padding: 50px;
}

.section-intro {
    text-align: center;
    margin-bottom: 60px;
}

.section-intro span {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #d9b16b;
    font-weight: 600;
    display: inline-block;
}

.section-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1e3c3f;
    margin-top: 16px;
}

/* Grid Cards */
.grid-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 15px 35px -12px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 50px -20px rgba(0, 0, 0, 0.25);
}

.card-img-wrapper {
    overflow: hidden;
    height: 270px;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card:hover .card-img {
    transform: scale(1.05);
}

.card-content {
    padding: 24px 22px 28px;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.gold-star {
    color: #d9b16b;
    font-size: 1.2rem;
}

.card-desc {
    font-size: 0.85rem;
    color: #6b7c7c;
    margin-top: 12px;
    line-height: 1.5;
}

/* About Content */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1e3c3f;
    margin-bottom: 20px;
}

.about-text p {
    color: #6b7c7c;
    margin-bottom: 20px;
    line-height: 1.7;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d9b16b;
}

.stat-label {
    font-size: 0.8rem;
    color: #6b7c7c;
}

.about-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    background: #fefcf8;
    padding: 40px;
    border-radius: 28px;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item i {
    width: 45px;
    height: 45px;
    background: #d9b16b20;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d9b16b;
    font-size: 1.2rem;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0e7da;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #1e3c3f;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #e2d9cc;
    border-radius: 40px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #d9b16b;
    outline: none;
    box-shadow: 0 0 0 3px rgba(217, 177, 107, 0.1);
}

.btn-submit,
.btn-primary {
    background: #d9b16b;
    border: none;
    padding: 14px 40px;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover,
.btn-primary:hover {
    background: #c49a4a;
    transform: translateY(-2px);
}

/* Newsletter */
.newsletter {
    background: linear-gradient(135deg, #1e3c3f, #2a4a4e);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.newsletter h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 20px;
}

.newsletter-form {
    max-width: 500px;
    margin: 30px auto 0;
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 40px;
    outline: none;
}

.newsletter-form button {
    background: #d9b16b;
    border: none;
    padding: 14px 30px;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    cursor: pointer;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #d9b16b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #c49a4a;
    transform: translateY(-3px);
}

/* Loader */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s;
}

.loader {
    width: 60px;
    height: 60px;
    border: 3px solid #f0e7da;
    border-top: 3px solid #d9b16b;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 992px) {

    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 18px 24px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 40px;
        transition: left 0.3s ease;
        gap: 30px;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        color: #1e2a2e !important;
        font-size: 1rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .section {
        padding: 60px 0;
    }

    .container {
        padding: 0 20px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .stats {
        flex-direction: column;
        align-items: center;
    }
}