:root {
    --bg-color: #0f172a;
    --text-color: #f8fafc;
    --primary-color: #d4af37;
    --secondary-color: #1e293b;
    --accent-color: #eab308;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--primary-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--accent-color);
}

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

.site-header {
    background-color: var(--secondary-color);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--primary-color);
}

.main-nav a {
    margin-left: 20px;
    font-weight: 500;
    color: var(--text-color);
}

.main-nav a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: 0.3s;
}

/* Hero CTA Specifics */
.hero-cta {
    padding: 16px 48px;
    font-size: 1.1rem;
    display: inline-block;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px; /* More modern rounded look */
}

.hero-section {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 12px;
    margin-top: 40px;
    border: 1px solid #334155;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: #000;
    font-weight: bold;
    border-radius: 6px;
    transition: background 0.3s;
}

.btn:hover {
    background-color: var(--accent-color);
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.post-card {
    background-color: var(--secondary-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
    border: 1px solid #334155;
}

.post-card:hover {
    transform: translateY(-5px);
}

.post-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-card-content {
    padding: 20px;
}

.category-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: bold;
}

.read-time {
    font-size: 0.9rem;
    color: #94a3b8;
}

.wisdom-signup-form {
    background: linear-gradient(135deg, #332b13 0%, #1a1608 100%);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin: 40px 0;
    border: 1px solid var(--primary-color);
}

.wisdom-signup-form .form-group input {
    width: 100%;
    max-width: 400px;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 4px;
    border: 1px solid #d4af37;
    background: #000;
    color: #fff;
}

.wisdom-signup-form button {
    background-color: var(--primary-color);
    color: #000;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1.1rem;
}

.cta-card {
    background-color: var(--secondary-color);
    padding: 30px;
    border-left: 4px solid var(--primary-color);
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

.site-footer {
    background-color: var(--secondary-color);
    padding: 60px 0 20px;
    margin-top: 60px;
    border-top: 1px solid #334155;
    color: #94a3b8;
}

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

.footer-section h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    color: #cbd5e1;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 20px;
    text-align: center;
}

.copyright {
    margin-top: 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.blog-post-full {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-full .hero-image {
    width: 100%;
    border-radius: 12px;
    margin: 20px 0;
}

.faq-section {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #334155;
}

/* Premium Styles */
.gradient-text {
    background: linear-gradient(to right, #d4af37, #fef08a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.glow-text {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.glow-image {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.premium-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
    border-radius: 16px;
    margin-top: 40px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    gap: 40px;
}

.premium-hero-content {
    flex: 1;
}

.premium-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.lead-text {
    font-size: 1.2rem;
    color: #cbd5e1;
}

.premium-hero-image {
    flex: 1;
    text-align: right;
}

.premium-hero-image img {
    max-width: 100%;
    border-radius: 12px;
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.glass-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(212, 175, 55, 0.3);
}

.contact-hero {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 40px;
    align-items: stretch;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.7);
    border-radius: 16px;
    z-index: 0;
}

.contact-info-side {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-side h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.contact-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 20px;
}

.contact-item strong {
    color: var(--primary-color);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.contact-form-card {
    position: relative;
    flex: 1;
    max-width: 500px;
    width: 100%;
    z-index: 1;
    margin-left: auto;
}

.premium-contact-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.premium-contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #e2e8f0;
}

.premium-contact-form input,
.premium-contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 18px 16px;
    font-size: 1.1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-family: var(--font-main);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.premium-contact-form input:focus,
.premium-contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.btn-glow {
    padding: 14px 28px;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    border: none;
    cursor: pointer;
    text-align: center;
    color: #000 !important; /* Ensure text is always black on the golden background */
}

.btn-glow:hover {
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    background-color: var(--accent-color);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
}

.legal-document h2 {
    margin-top: 30px;
    font-size: 1.5rem;
}

.last-updated {
    font-style: italic;
    color: #94a3b8;
    margin-bottom: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-100 {
    margin-top: 100px;
}

.text-center {
    text-align: center;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 80px; /* Below header */
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        flex-direction: column;
        padding: 40px 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.8);
        z-index: 100;
        border-bottom: 2px solid var(--primary-color);
        text-align: center;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        margin: 15px 0;
        font-size: 1.3rem;
        display: block;
    }

    .premium-hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }

    .premium-hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-cta {
        width: 100%;
        box-sizing: border-box;
        padding: 16px 24px;
        font-size: 1.1rem;
    }

    .premium-hero-image {
        text-align: center;
        margin-top: 20px;
    }

    .contact-hero {
        padding: 40px 20px;
    }

    .contact-info-side h1 {
        font-size: 2.2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
