/* ==========================================================================
   1. Basic Reset, Color Variables & Typography
   ========================================================================== */
:root {
    --bg-dark: #111111;
    --bg-black: #080808;
    --bg-card: #0d0d0d;
    --bg-section: #161616;
    --primary-gold: #d4af37;
    --gold-hover: #bfa030;
    --text-white: #ffffff;
    --text-light: #cccccc;
    --text-muted: #888888;
    --text-dim: #aaaaaa;
    --danger-red: #ff4d4d;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   2. Premium Navigation Bar
   ========================================================================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background-color: var(--bg-black);
    border-bottom: 2px solid var(--primary-gold);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo a {
    font-size: 26px;
    font-weight: bold;
    color: var(--text-white);
    text-decoration: none;
    letter-spacing: 1px;
}

.logo b {
    color: var(--primary-gold);
}

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

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover, 
.nav-links a.active {
    color: var(--primary-gold);
}

/* ==========================================================================
   3. Luxury Hero Section
   ========================================================================== */
.hero-section {
    height: 65vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.9)), url('1.webp') no-repeat center center/cover;
    color: var(--text-white);
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 44px;
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content h1 a {
    color: var(--primary-gold);
    text-decoration: none;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.cta-btn {
    display: inline-block;
    padding: 14px 35px;
    background-color: var(--primary-gold);
    color: #000000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
}

/* ==========================================================================
   4. Grid Layout for 10 Profiles
   ========================================================================== */
.profiles-section {
    padding: 60px 5%;
    background-color: var(--bg-section);
}

.profiles-section h2 {
    text-align: center;
    font-size: 32px;
    color: var(--primary-gold);
    margin-bottom: 5px;
}

.section-sub {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 16px;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.profile-card {
    background-color: var(--bg-card);
    border: 1px solid #222222;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

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

.profile-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

.profile-details {
    padding: 15px;
    text-align: center;
}

.profile-details h3 {
    font-size: 18px;
    color: var(--text-white);
    margin-bottom: 5px;
}

.profile-details p {
    color: var(--text-dim);
    font-size: 13px;
    margin-bottom: 12px;
}

.view-btn {
    display: inline-block;
    padding: 6px 18px;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    text-decoration: none;
    border-radius: 4px;
    font-size: 13px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.view-btn:hover {
    background-color: var(--primary-gold);
    color: #000000;
}

/* ==========================================================================
   5. SEO Content Section (Typography & Inline Keyword Links)
   ========================================================================== */
.seo-text-section {
    padding: 60px 0;
    background-color: var(--bg-dark);
}

.seo-text-section h2 {
    color: var(--primary-gold);
    margin: 35px 0 15px 0;
    font-size: 26px;
    border-left: 4px solid var(--primary-gold);
    padding-left: 10px;
}

.seo-text-section h3 {
    color: var(--text-white);
    margin: 25px 0 10px 0;
    font-size: 20px;
}

.seo-text-section p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 15px;
    text-align: justify;
}

/* Style for embedded keywords links inside content */
.seo-text-section p a,
.seo-text-section li a,
.faq-item p a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: text-decoration 0.2s ease;
}

.seo-text-section p a:hover,
.seo-text-section li a:hover,
.faq-item p a:hover {
    text-decoration: underline;
}

.seo-text-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.seo-text-section li {
    margin-bottom: 8px;
}

/* ==========================================================================
   6. FAQ Section Layout
   ========================================================================== */
.faq-section {
    padding: 50px 0;
    background-color: var(--bg-section);
    border-top: 1px solid #222222;
}

.faq-section h2 {
    color: var(--primary-gold);
    text-align: center;
    margin-bottom: 30px;
}

.faq-item {
    background-color: var(--bg-card);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 15px;
    border-left: 3px solid var(--primary-gold);
}

.faq-item h3 {
    font-size: 16px;
    color: var(--text-white);
    margin-bottom: 10px;
}

.faq-item p {
    color: var(--text-dim);
    font-size: 14px;
}

/* ==========================================================================
   7. Disclaimer & Policy Section
   ========================================================================== */
.disclaimer-section {
    background-color: var(--bg-card);
    padding: 40px 0;
    border-top: 1px solid #222222;
    text-align: center;
}

.disclaimer-section h3 {
    color: var(--danger-red);
    margin-bottom: 15px;
    font-size: 20px;
}

.disclaimer-section p {
    color: var(--text-muted);
    font-size: 14px;
    max-width: 900px;
    margin: 0 auto;
}

/* ==========================================================================
   8. Footer Layout
   ========================================================================== */
.footer {
    text-align: center;
    padding: 25px;
    background-color: #050505;
    color: #666666;
    font-size: 13px;
    border-top: 1px solid #111111;
}

/* ==========================================================================
   9. Media Queries for Seamless Mobile Responsiveness
   ========================================================================== */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links li {
        margin: 5px 10px;
    }

    .hero-section {
        height: auto;
        padding: 60px 20px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .profiles-section h2 {
        font-size: 26px;
    }

    .profile-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }

    .profile-card img {
        height: 280px;
    }

    .seo-text-section h2 {
        font-size: 22px;
    }
}