.elementor-2393 .elementor-element.elementor-element-a890fd1{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS *//* --- GOOGLE FONTS IMPORT --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* --- CSS VARIABLES: LUXURY DARK PALETTE --- */
:root {
    /* Backgrounds */
    --bg-body: #050505;       /* Deepest Black */
    --bg-card: #121212;       /* Charcoal/Off-Black */
    --bg-overlay: rgba(10, 10, 10, 0.85);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --text-main: #e0e0e0;     /* Off-white */
    --text-muted: #a0a0a0;    /* Silver/Grey */

    /* Accents (Gold & Nature) */
    --gold-primary: #d4af37;  /* Classic Metallic Gold */
    --gold-light: #f3e5ab;    /* Champagne */
    --gold-gradient: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    --green-accent: #1a3c28;  /* Deep Emerald hint */

    /* Borders & Shadows */
    --border-color: #333333;
    --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.15);
    --shadow-card: 0 10px 30px rgba(0,0,0,0.5);
}

/* --- RESET & BASE STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.8;
    font-weight: 300;
}

/* Custom Luxury Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-body);
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

/* Typography Defaults */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--gold-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

h2 {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    margin-top: 3rem;
    font-size: 2rem;
}

strong {
    color: var(--gold-light);
    font-weight: 600;
}

a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

a:hover {
    color: var(--gold-light);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

hr {
    border: 0;
    height: 1px;
    background: var(--border-color);
    margin: 2rem 0;
}



/* --- HERO SECTION --- */
.blog-hero {
    position: relative;
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* You can replace this URL with your actual project image */
    background: url('https://source.unsplash.com/1600x900/?luxury,mountain,night') center/cover no-repeat;
    padding: 0 20px;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), var(--bg-body));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 3rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.meta-data {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.divider {
    height: 2px;
    width: 80px;
    background: var(--gold-primary);
    margin: 0 auto;
}


/* --- SIDEBAR (TOC) --- */
.sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.toc-box {
    background: var(--bg-card);
    padding: 30px;
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--gold-primary);
    box-shadow: var(--shadow-card);
}

.toc-box h3 {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 20px;
    border-bottom: none; /* Override general h3 style */
}

.toc-list {
    list-style: none;
}

.toc-list li {
    margin-bottom: 12px;
}

.toc-list a {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: block;
}

.toc-list a:hover {
    color: var(--gold-primary);
    transform: translateX(5px);
}

/* --- CONTENT STYLES --- */
.content p {
    margin-bottom: 1.8rem;
    color: #cccccc;
}

.content ul, .content ol {
    margin-bottom: 2rem;
    padding-left: 20px;
}

.content li {
    margin-bottom: 12px;
    color: #cccccc;
}

/* Custom Bullet Points */
.content ul li::marker {
    color: var(--gold-primary);
    font-size: 1.2em;
}

/* Feature Boxes */
.feature-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 30px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 4px; height: 100%;
    background: var(--gold-gradient);
}

.feature-box h3 {
    color: var(--gold-light);
    font-size: 1.5rem;
}

/* Tables (Pricing) */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}

.pricing-table th, .pricing-table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
}

.pricing-table th {
    background: #1a1a1a;
    color: var(--gold-primary);
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

/* Special Offer - Gold Card */
.special-offer {
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    border: 1px solid var(--gold-primary);
    padding: 40px;
    text-align: center;
    margin: 3rem 0;
    position: relative;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
}

.special-offer::after {
    content: "EXCLUSIVE";
    position: absolute;
    top: 0; right: 0;
    background: var(--gold-gradient);
    color: #000;
    font-weight: bold;
    padding: 5px 20px;
    font-size: 0.8rem;
}

.special-offer h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    border-bottom: none;
}

.special-offer p {
    color: var(--gold-light);
    font-size: 1.1rem;
}

/* FAQ Accordion */
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 20px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.faq-item:hover {
    border-color: var(--gold-primary);
    transform: translateX(5px);
}

.faq-question {
    color: var(--gold-primary);
    font-family: var(--font-heading);
    display: block;
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: bold;
}

.faq-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* --- FOOTER CTA --- */
.cta-footer {
    background: linear-gradient(to top, #000, #111);
    padding: 5rem 1rem;
    text-align: center;
    border-top: 1px solid var(--border-color);
    margin-top: 5rem;
}

.btn-cta {
    display: inline-block;
    background: var(--gold-gradient);
    color: #000;
    padding: 18px 40px;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    margin-top: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    color: #000;
    text-shadow: none;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        display: none; /* Optional: hide sidebar on mobile */
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .blog-hero {
        height: 50vh;
    }
    
    .feature-box, .special-offer {
        padding: 20px;
    }
}/* End custom CSS */