/* 1. RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 2. HEADER & NAVIGATION (UPGRADED) */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 25px 0;
    transition: all 0.4s ease-in-out;
    background: transparent;
}

header.scrolled {
    padding: 15px 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

nav.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
}

.logo span {
    color: #d4af37;
    font-weight: 300;
}

.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
}

.nav-item {
    text-decoration: none;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

.nav-item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #d4af37;
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

.nav-btn {
    text-decoration: none;
    color: #1a1a1a;
    background: #d4af37;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: 0.4s;
    border: 1px solid #d4af37;
}

.nav-btn:hover {
    background: transparent;
    color: #d4af37;
}

/* 3. HERO SECTION */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                url('https://images.unsplash.com/photo-1506671610232-af2b077a0e60?auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 20px;
}

/* 4. GALLERY SECTION (UPGRADED) */
.section-header {
    text-align: center;
    padding-top: 80px;
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #888;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.profile-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.4s;
}

.profile-img-wrapper {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.profile-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: 0.6s ease;
}

.profile-card:hover .profile-img {
    transform: scale(1.08);
}

.status-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #2ecc71;
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 10;
}

.profile-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

.profile-card:hover .profile-overlay {
    opacity: 1;
}

.profile-info {
    padding: 25px;
}

.profile-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.profile-tag {
    color: #d4af37;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* 5. CONTACT & FOOTER */
.contact-section {
    background: #111;
    color: #fff;
    padding: 100px 0;
}

form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

input, select {
    width: 100%;
    padding: 15px;
    background: #222;
    border: 1px solid #333;
    color: #fff;
    border-radius: 8px;
}

/* Footer Styles */
.main-footer {
    background: #0a0a0a;
    color: #b0b0b0;
    padding: 80px 0 0;
    border-top: 1px solid #222;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-col h4 {
    color: #fff;
    font-family: 'Playfair Display', serif;
    margin-bottom: 25px;
    font-size: 1.2rem;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: #d4af37;
}

.footer-description {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-top: 20px;
    padding-right: 40px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #d4af37;
    padding-left: 5px;
}

.age-badge {
    display: inline-block;
    margin-top: 20px;
    padding: 5px 15px;
    border: 1px solid #d4af37;
    color: #d4af37;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.8rem;
}

/* Bottom Bar */
.footer-bottom {
    background: #000;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #111;
}

.footer-bottom p {
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.footer-bottom .disclaimer {
    font-size: 0.75rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-description {
        padding-right: 0;
    }
}

/* 6. MOBILE NAVIGATION */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: #1a1a1a;
        flex-direction: column;
        justify-content: center;
        transition: 0.5s ease;
    }
    .nav-links.active { right: 0; }
}

/* SEO Info Section Styles */
.info-section {
    padding: 100px 0;
    background: #fdfdfd;
    border-top: 1px solid #eee;
}

.info-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.article-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.article-lead {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
    font-weight: 300;
}

.article-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin: 30px 0 15px;
    color: #1a1a1a;
}

.article-content p {
    margin-bottom: 20px;
    color: #444;
    text-align: justify;
}

/* Internal Link Box Styling */
.internal-link-box {
    background: #f9f4e8;
    padding: 30px;
    border-left: 4px solid #d4af37;
    margin: 40px 0;
    font-style: italic;
    color: #1a1a1a;
}

.text-link {
    color: #d4af37;
    font-weight: 700;
    text-decoration: underline;
    transition: 0.3s;
}

.text-link:hover {
    color: #1a1a1a;
}

/* Sidebar Info */
.side-info .info-card {
    background: #1a1a1a;
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    position: sticky;
    top: 100px;
}

.side-info h4 {
    color: #d4af37;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.side-info ul {
    list-style: none;
}

.side-info ul li {
    margin-bottom: 15px;
    font-size: 0.9rem;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
    .side-info .info-card {
        position: static;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    background: #fdfdfd;
    transition: 0.3s;
    border-radius: 8px;
}

.faq-question span {
    font-weight: 600;
    font-size: 1.1rem;
    color: #1a1a1a;
}

.faq-question:hover {
    background: #f9f4e8;
}

.faq-question .arrow-icon {
    font-style: normal;
    font-weight: bold;
    color: #d4af37;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background: #fff;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: #666;
    line-height: 1.6;
}

/* State saat Aktif */
.faq-item.active .faq-answer {
    max-height: 200px; /* Sesuaikan dengan panjang teks */
    padding-top: 10px;
}

.faq-item.active .arrow-icon {
    transform: rotate(45deg);
}

/* Reviews Section Styles */
.reviews-section {
    padding: 80px 0;
    background: #fcfcfc;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
    transition: 0.3s;
    position: relative;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}

.stars {
    color: #d4af37; /* Gold stars */
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.review-text {
    font-style: italic;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.8;
}

.client-info {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.client-name {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1rem;
}

.verify-tag {
    font-size: 0.75rem;
    color: #2ecc71; /* Green for trust */
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 4px;
    display: flex;
    align-items: center;
}

.verify-tag::before {
    content: '✓';
    margin-right: 5px;
}

/* Trust & Safety Section */
.trust-section {
    padding: 100px 0;
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
}

.trust-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.trust-badge-container {
    margin-bottom: 20px;
}

.trust-label {
    background: #f9f4e8;
    color: #d4af37;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.trust-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.trust-article p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
}

.trust-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
    text-align: left;
}

.t-feature {
    padding: 30px;
    background: #fafafa;
    border-radius: 12px;
    border-bottom: 3px solid #d4af37;
    transition: 0.3s;
}

.t-feature:hover {
    background: #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.t-feature h4 {
    font-family: 'Poppins', sans-serif;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.t-feature p {
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.trust-conclusion {
    font-weight: 600;
    color: #1a1a1a !important;
    text-align: center !important;
    font-style: italic;
}

@media (max-width: 768px) {
    .trust-title { font-size: 2rem; }
    .trust-features { grid-template-columns: 1fr; }
}

/* Update pada container HERO Anda */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 80vh; /* Sesuaikan tinggi banner */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Ganti background abu-abu dengan ini */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/img/locals.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}