
:root {
    --gold-primary: #D4AF37;
    --gold-light: #F4E4BC;
    --gold-dark: #AA8C2C;
    --gold-shine: #FFD700;
    --black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --medium-gray: #2d2d2d;
    --text-light: #f0f0f0;
    --text-muted: #aaaaaa;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--black);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========== NAVBAR ========== */
.navbar {
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--medium-gray) 100%);
    border-bottom: 3px solid var(--gold-primary);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--gold-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.logo-icon {
    font-size: 32px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 50%, var(--black) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-shine), var(--gold-light), var(--gold-primary));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShine 4s ease infinite;
}

@keyframes goldShine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero p {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.btn-gold {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, var(--gold-shine), var(--gold-primary));
}

/* ========== SECTIONS ========== */
.section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 20px;
    color: var(--gold-primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 60px;
    font-size: 18px;
}

/* ========== CARDS ========== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: linear-gradient(135deg, var(--dark-gray), var(--medium-gray));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--gold-primary);
}

.card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--gold-light);
}

.card p {
    color: var(--text-muted);
}

/* ========== LISTINGS ========== */
.listing-card {
    background: var(--dark-gray);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.listing-card:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.listing-img {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--medium-gray), var(--dark-gray));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--gold-primary);
}

.listing-body {
    padding: 25px;
}

.listing-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.listing-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.listing-meta {
    color: var(--text-muted);
    font-size: 14px;
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.badge-gold {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-primary);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* ========== STATS ========== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--gold-primary);
    display: block;
}

.stat-label {
    color: var(--text-muted);
    font-size: 16px;
    margin-top: 10px;
}

/* ========== ABOUT / TEAM ========== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    text-align: center;
    padding: 30px;
    background: var(--dark-gray);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.team-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 48px;
    color: var(--black);
}

.team-card h4 {
    color: var(--gold-light);
    font-size: 20px;
    margin-bottom: 5px;
}

.team-card span {
    color: var(--gold-primary);
    font-size: 14px;
    font-weight: 600;
}

/* ========== CONTACT FORM ========== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--gold-light);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    background: var(--medium-gray);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: var(--dark-gray);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

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

/* ========== FAQ ========== */
.faq-item {
    background: var(--dark-gray);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--gold-light);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(212, 175, 55, 0.05);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 300px;
}

.faq-item.active .faq-question {
    color: var(--gold-primary);
}

.faq-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
    color: var(--gold-primary);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* ========== FOOTER ========== */
.footer {
    background: linear-gradient(135deg, var(--dark-gray), var(--black));
    border-top: 3px solid var(--gold-primary);
    padding: 60px 20px 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), var(--gold-shine), var(--gold-primary), transparent);
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--gold-primary);
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-col p,
.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    line-height: 2;
    display: block;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--gold-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--text-muted);
}

.footer-brand {
    font-size: 22px;
    font-weight: 800;
    color: var(--gold-primary);
    margin-bottom: 10px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 36px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 32px;
    }
}

/* ========== ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}


/* ========== TOURISM PHOTO UPGRADE ========== */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,10,.78), rgba(10,10,10,.35), rgba(212,175,55,.12));
    z-index: 1;
}
.hero-home { background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=2000&q=85') center/cover no-repeat; }
.hero-listings { background: url('https://images.unsplash.com/photo-1605130284535-11dd9eedc58a?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat; }
.hero-about { background: url('https://images.unsplash.com/photo-1641128324972-af3212f0f6bd?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat; }
.hero-contact { background: url('https://images.unsplash.com/photo-1523906834658-6e24ef2386f9?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat; }
.hero-faq { background: url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat; }
.hero-content { z-index: 3; }
#goldCanvas { z-index: 2 !important; }
.listing-img.photo {
    background-size: cover;
    background-position: center;
    position: relative;
    font-size: 0;
}
.listing-img.photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.45));
}
.listing-card:hover .listing-img.photo { transform: scale(1.015); }
.wide-photo {
    width: 100%;
    height: 360px;
    background-size: cover;
    background-position: center;
    border-radius: 26px;
    border: 1px solid rgba(212,175,55,.25);
    box-shadow: 0 25px 60px rgba(0,0,0,.35);
    margin: 45px auto 0;
}
.side-photo {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    border-radius: 22px;
    border: 1px solid rgba(212,175,55,.22);
    margin-bottom: 28px;
    box-shadow: 0 18px 40px rgba(0,0,0,.28);
}
@media (max-width: 768px) {
    .wide-photo { height: 230px; }
    .side-photo { height: 220px; }
}
