/**
 * Josh Tolley Theme - Main Stylesheet
 * 
 * INSTRUCTIONS: This is a placeholder CSS file. You should copy your original site's CSS here.
 * The original CSS is typically found in the static site's css/ directory.
 * 
 * Copy all styles from your original site and paste them below this comment block.
 */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d4af37; /* Gold */
    --secondary-color: #1a1a1a; /* Dark */
    --text-color: #333;
    --background-color: #ffffff;
    --accent-color: #d4af37;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

/* Container */
.site {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-content {
    flex: 1;
}

/* Header */
.site-header {
    padding: 1rem 2rem;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

/* Navigation */
.main-navigation .nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-navigation a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
}

.contact-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

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

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-modal-content {
    background-color: #fefefe;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form button {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
}

.contact-form button:hover {
    opacity: 0.9;
}

/* Form Message Styles */
.form-message {
    padding: 15px;
    margin: 15px 0;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Book Pages */
.book-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.book-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.book-details h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.book-purchase {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
}

.book-price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .book-page-container {
        grid-template-columns: 1fr;
    }
    
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-navigation .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Screen Reader Text */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}


 * Josh Tolley Complete CSS Stylesheet
 * Compiled from index.html, evangelpreneur.html, and acquisitional-wealth.html
 * WordPress Ready - Organized by Sections
 */

/* ==========================================================================
   CSS RESET & BASE STYLES
   ========================================================================== */

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

/* ==========================================================================
   CSS CUSTOM PROPERTIES (VARIABLES)
   ========================================================================== */

:root {
    --primary-black: #0D0D0D;
    --accent-gold: #d8bf95;
    --dark-gold: #c4a878;
    --rich-black: #000000;
    --light-gray: #F5F5F5;
    --medium-gray: #6C757D;
    --white: #FFFFFF;
    --charcoal: #2B2B2B;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

body {
    font-family: 'Inter', 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    overflow-x: hidden;
    background: var(--white);
    width: 100%;
    max-width: 100vw;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

p, span, div, li {
    font-family: 'Inter', 'Roboto', Arial, sans-serif;
}

.narrative-text {
    font-family: 'Inter', 'Roboto', Arial, sans-serif;
    line-height: 1.7;
    letter-spacing: 0.2px;
}

.lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   LAYOUT & CONTAINERS
   ========================================================================== */

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

.foundation-wide-container {
    max-width: 100%;
    width: 100%;
    padding: 0 2rem;
    margin: 0;
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo img {
    height: 45px;
    width: auto;
}

.logo h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 1px;
    display: block;
}

.logo .gold {
    color: var(--accent-gold);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--accent-gold);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
    transform-origin: center;
}

.back-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--white);
}

/* ==========================================================================
   BUTTONS & CALLS TO ACTION
   ========================================================================== */

.cta-button {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--accent-gold);
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.4s ease;
    font-size: 0.85rem;
    cursor: pointer;
    border-radius: 4px;
    display: inline-block;
}

.cta-button.primary {
    background: var(--accent-gold);
    color: var(--primary-black);
    border-color: var(--accent-gold);
}

.cta-button:hover {
    background: var(--accent-gold);
    color: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.cta-button.primary:hover {
    background: var(--dark-gold);
    border-color: var(--dark-gold);
}

.cta-button.secondary {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--charcoal);
}

.cta-button.secondary:hover {
    background: var(--charcoal);
    color: var(--white);
}

.cta-button.large {
    padding: 1.2rem 2.5rem;
    font-size: 0.95rem;
    min-width: fit-content;
    white-space: nowrap;
    box-sizing: border-box;
}

.card-cta {
    background: var(--accent-gold);
    color: var(--primary-black);
    border: none;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

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

.play-button {
    background: var(--accent-gold);
    color: var(--primary-black);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    margin-top: 2rem;
    margin-bottom: 1rem;
    display: inline-block;
    text-decoration: none;
    clear: both;
}

.play-button:hover {
    background: var(--dark-gold);
    transform: scale(1.05);
}

.contact-inline-btn {
    font-size: 0.9rem !important;
    padding: 0.8rem 1.5rem !important;
    margin: 0 !important;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
    min-height: 100vh;
    background: 
        linear-gradient(135deg, rgba(13, 13, 13, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%),
        url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?w=1920&h=1080&fit=crop') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 13, 13, 0.6);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 13, 13, 0.3);
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    padding: 0 2rem;
    z-index: 2;
    position: relative;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 120px);
    padding-top: 120px;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-title .gold {
    color: var(--accent-gold);
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 auto 3rem;
    line-height: 1.7;
    font-weight: 300;
    max-width: 800px;
    text-align: center;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    padding: 0 1rem;
    max-width: 100%;
    overflow: hidden;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap !important;
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
    padding: 0 2rem;
    gap: 2rem;
    overflow-x: auto;
    overflow-y: visible;
}

.stat {
    text-align: center;
    flex-shrink: 0;
    min-width: 200px;
    white-space: nowrap;
}

.stat-number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    line-height: 1;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    line-height: 1.3;
}

/* ==========================================================================
   SECTION TITLES & COMMON ELEMENTS
   ========================================================================== */

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    text-align: center;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.section-title .gold {
    color: var(--accent-gold);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
}

/* ==========================================================================
   CONTENT CARDS & GRIDS
   ========================================================================== */

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.content-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    border-top: 4px solid var(--accent-gold);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(216, 191, 149, 0.1), transparent);
    transition: left 0.6s ease;
}

.content-card:hover::before {
    left: 100%;
}

.content-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    border-top: 4px solid var(--dark-gold);
}

.card-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.content-card:hover .card-image img {
    transform: scale(1.05);
}

.content-card h3 {
    font-size: 1.5rem;
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-weight: 600;
}

.content-card p {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   METRICS & STATISTICS
   ========================================================================== */

.metrics-section {
    padding: 6rem 0;
    background: 
        linear-gradient(rgba(13, 13, 13, 0.9), rgba(0, 0, 0, 0.9)),
        url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?w=1920&h=1080&fit=crop') center/cover;
    background-attachment: fixed;
    color: var(--white);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.metric-item {
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(216, 191, 149, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.metric-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(216, 191, 149, 0.1), transparent);
    transition: left 0.6s ease;
}

.metric-item:hover::before {
    left: 100%;
}

.metric-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-gold);
}

.metric-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    display: block;
}

.metric-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.3;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */

.about-section {
    padding: 8rem 0;
    background: 
        linear-gradient(rgba(13, 13, 13, 0.9), rgba(0, 0, 0, 0.9)),
        url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=1920&h=1080&fit=crop') center/cover;
    background-attachment: fixed;
    color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-text h2 .gold {
    color: var(--accent-gold);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.credentials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.credential {
    text-align: center;
    padding: 1.5rem 1rem;
    background: transparent;
    border-radius: 8px;
}

.credential-title {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.credential-desc {
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 500;
}

.about-image img {
    width: 115%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transform: scale(1.15);
    transform-origin: center;
}

/* ==========================================================================
   FEATURED CONTENT
   ========================================================================== */

.featured-content {
    padding: 6rem 0;
    background: 
        linear-gradient(rgba(248, 245, 245, 0.95), rgba(248, 245, 245, 0.95)),
        url('https://images.unsplash.com/photo-1559223607-a43c990c692c?w=1920&h=1080&fit=crop') center/cover;
    background-attachment: fixed;
}

/* ==========================================================================
   PODCAST SECTION
   ========================================================================== */

.podcast-section {
    padding: 8rem 0;
    background: 
        linear-gradient(rgba(13, 13, 13, 0.9), rgba(0, 0, 0, 0.9)),
        url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?w=1920&h=1080&fit=crop') center/cover;
    background-attachment: fixed;
    color: var(--white);
}

.podcast-section .section-title {
    color: var(--white);
}

.podcast-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.podcast-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.episode-featured {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-gold);
}

.episode-featured h3 {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.episode-featured h4 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.episode-featured p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.podcast-links h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.platform-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.platform-link {
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.platform-link:hover {
    background: var(--dark-gold) !important;
    color: var(--primary-black) !important;
    transform: translateY(-2px);
}

.recent-episodes h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.episodes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.episode-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent-gold);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}

.episode-card .cta-button {
    border-radius: 50px;
    margin-top: auto;
    align-self: flex-start;
}

.episode-card h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.episode-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.8rem;
}

.episode-date {
    font-size: 0.85rem;
    color: var(--accent-gold);
    font-weight: 500;
}

/* ==========================================================================
   EDUCATION SECTION
   ========================================================================== */

.education-section {
    padding: 8rem 0;
    background: 
        linear-gradient(rgba(248, 245, 245, 0.95), rgba(248, 245, 245, 0.95)),
        url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?w=1920&h=1080&fit=crop') center/cover;
    background-attachment: fixed;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.education-grid.education-two-columns {
    grid-template-columns: 1fr 1fr;
    max-width: 800px;
    margin: 0 auto;
}

.education-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
}

.education-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(216, 191, 149, 0.1), transparent);
    transition: left 0.6s ease;
}

.education-card:hover::before {
    left: 100%;
}

.education-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.education-card.featured {
    border: 2px solid var(--accent-gold);
    transform: scale(1.02);
}

.education-card h3 {
    color: var(--primary-black);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.education-card ul {
    list-style: none;
    margin: 1rem 0;
}

.education-card li {
    padding: 0.3rem 0;
    color: var(--charcoal);
    position: relative;
    padding-left: 1.2rem;
}

.education-card li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

/* ==========================================================================
   FOUNDATION SECTION
   ========================================================================== */

.foundation-section {
    padding: 8rem 0;
    background: 
        linear-gradient(rgba(13, 13, 13, 0.9), rgba(0, 0, 0, 0.9)),
        url('https://images.unsplash.com/photo-1514525253161-7a46d19cd819?w=1920&h=1080&fit=crop') center/cover;
    background-attachment: fixed;
    color: var(--white);
}

.foundation-section .section-title {
    color: var(--white);
}

.foundation-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.foundation-top-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 3rem 0 4rem 0;
    flex-wrap: wrap;
}

.foundation-content {
    max-width: 1200px;
    margin: 0 auto;
    display: block;
    text-align: center;
}

.impact-stats {
    display: grid;
    gap: 2rem;
}

.impact-stat {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-top: 4px solid var(--accent-gold);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(216, 191, 149, 0.2);
    transition: all 0.4s ease;
}

.impact-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-gold);
}

.impact-stat h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.impact-stat p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.foundation-mission {
    max-width: 1000px;
    margin: 0 auto;
}

.foundation-mission h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.foundation-mission p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    text-align: left;
    max-width: 100%;
}

/* Foundation Tabs */
.foundation-tabs {
    margin-top: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.tab-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(216, 191, 149, 0.3);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.tab-btn:hover {
    background: rgba(216, 191, 149, 0.2);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: var(--accent-gold);
    color: var(--primary-black);
    border-color: var(--accent-gold);
}

.tab-content {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(216, 191, 149, 0.2);
}

.tab-content.active {
    display: block;
}

/* Pillars Content */
.pillars-content {
    display: grid;
    gap: 0.8rem;
}

.pillar-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(216, 191, 149, 0.1);
}

.pillar-item:last-child {
    border-bottom: none;
}

.pillar-number {
    color: var(--accent-gold);
    font-weight: 900;
    font-size: 1.4rem;
    min-width: 35px;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.pillar-item p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    margin: 0;
    text-align: justify;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Rules Content */
.rules-content {
    display: grid;
    gap: 1.2rem;
}

.rule-item {
    display: flex;
    align-items: flex-start;
    gap: 1.8rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(216, 191, 149, 0.15);
}

.rule-item:last-child {
    border-bottom: none;
}

.rule-number {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.3rem;
    flex-shrink: 0;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.gold-circle {
    background: var(--accent-gold);
    color: var(--primary-black);
    box-shadow: 0 4px 12px rgba(216, 191, 149, 0.4);
}

.dark-circle {
    background: var(--primary-black);
    color: var(--white);
    border: 2px solid var(--accent-gold);
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.rule-item p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    margin: 0;
    font-size: 1.1rem;
    text-align: justify;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.involvement-options h4 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.involvement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.involvement-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.8rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(216, 191, 149, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.involvement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(216, 191, 149, 0.1), transparent);
    transition: left 0.5s ease;
}

.involvement-card:hover::before {
    left: 100%;
}

.involvement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-gold);
}

.involvement-card h5 {
    color: var(--white);
    margin-bottom: 0.8rem;
}

.involvement-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

/* ==========================================================================
   BOOKS SECTION
   ========================================================================== */

.books-section {
    padding: 8rem 0;
    background: 
        linear-gradient(rgba(13, 13, 13, 0.9), rgba(0, 0, 0, 0.9)),
        url('https://images.unsplash.com/photo-1524995997946-a1c2e315a42f?w=1920&h=1080&fit=crop') center/cover;
    background-attachment: fixed;
    color: var(--white);
}

.books-section .section-title {
    color: var(--white);
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.book-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(216, 191, 149, 0.2);
    position: relative;
}

.book-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(216, 191, 149, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.book-card:hover::before {
    left: 100%;
}

.book-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-gold);
}

.book-cover img {
    width: 100%;
    height: 350px;
    object-fit: contain;
    background: transparent;
    border-radius: 8px;
}

.book-info {
    padding: 2rem;
}

.book-info h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.book-subtitle {
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.book-badges {
    margin: 1rem 0;
}

.badge {
    background: var(--accent-gold);
    color: var(--primary-black);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.bestseller-badge {
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

/* ==========================================================================
   PRODUCT PAGES
   ========================================================================== */

.product-section {
    padding: 8rem 0 4rem 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--charcoal) 100%);
    color: var(--white);
    margin-top: 80px;
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

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

.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.product-info h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.product-info .subtitle {
    font-size: 1.3rem;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.product-info .tagline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-style: italic;
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.features {
    margin: 2rem 0;
}

.features h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.features ul {
    list-style: none;
    padding: 0;
}

.features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

.price-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.price {
    font-size: 2.5rem;
    color: var(--accent-gold);
    font-weight: bold;
    margin-bottom: 1rem;
}

.testimonials {
    margin: 3rem 0;
}

.testimonials h3 {
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.testimonial {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--accent-gold);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 0.5rem;
}

.testimonial .author {
    font-weight: 600;
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.guarantee {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(216, 191, 149, 0.1);
    border-left: 4px solid var(--accent-gold);
    border-radius: 8px;
}

.guarantee h4 {
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

/* ==========================================================================
   SPEAKING SECTION
   ========================================================================== */

.speaking-section {
    padding: 8rem 0;
    background: 
        linear-gradient(rgba(13, 13, 13, 0.9), rgba(0, 0, 0, 0.9)),
        url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=1920&h=1080&fit=crop') center/cover;
    background-attachment: fixed;
    color: var(--white);
}

.speaking-section .section-title {
    color: var(--white);
}

.speaking-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.speaking-content {
    margin-top: 3rem;
}

.speaking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.speaking-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border-top: 4px solid var(--accent-gold);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(216, 191, 149, 0.2);
}

.speaking-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(216, 191, 149, 0.1), transparent);
    transition: left 0.6s ease;
}

.speaking-card:hover::before {
    left: 100%;
}

.speaking-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    border-top: 4px solid var(--dark-gold);
}

.speaking-card h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 600;
}

.speaking-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.speaking-card ul {
    list-style: none;
    margin: 1rem 0;
    text-align: left;
}

.speaking-card li {
    padding: 0.3rem 0;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-left: 1.2rem;
}

.speaking-card li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
    font-weight: bold;
}

.speaking-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--primary-black);
    border-radius: 16px;
    border: 2px solid var(--accent-gold);
    backdrop-filter: blur(10px);
}

.speaking-cta h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.speaking-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

/* ==========================================================================
   CTA SECTIONS
   ========================================================================== */

.cta-section {
    padding: 8rem 0;
    background: 
        linear-gradient(rgba(13, 13, 13, 0.9), rgba(0, 0, 0, 0.9)),
        url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=1920&h=1080&fit=crop') center/cover;
    background-attachment: fixed;
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.cta-section h2 .gold {
    color: var(--accent-gold);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-options {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .cta-button {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-black);
}

.cta-section .cta-button:hover {
    background: var(--dark-gold);
    border-color: var(--dark-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(216, 191, 149, 0.4);
}

.cta-section .cta-button.secondary {
    background: transparent;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */

.contact-section {
    padding: 8rem 0;
    background: 
        linear-gradient(rgba(13, 13, 13, 0.9), rgba(0, 0, 0, 0.9)),
        url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?w=1920&h=1080&fit=crop') center/cover;
    background-attachment: fixed;
    text-align: center;
    color: var(--white);
}

.contact-section .section-title {
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(216, 191, 149, 0.2);
}

.contact-info p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-info h2 {
    font-size: 1.8rem;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 2rem;
    font-weight: 600;
    text-align: center;
}

.contact-cta {
    text-align: center;
    margin-top: 2rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    background: var(--primary-black);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-links-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-brand h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-brand .gold {
    color: var(--accent-gold);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.link-group h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.link-group ul {
    list-style: none;
}

.link-group li {
    margin-bottom: 0.5rem;
}

.link-group a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-group a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    color: var(--accent-gold);
    background: rgba(216, 191, 149, 0.2);
    transform: translateY(-2px);
}

.social-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.dei-policy {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.dei-policy h4 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.dei-policy p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* ==========================================================================
   ANIMATIONS & EFFECTS
   ========================================================================== */

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

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

/* Parallax effect enhancement */
.parallax-section {
    position: relative;
    background-attachment: fixed;
}

/* ==========================================================================
   RESPONSIVE DESIGN - MOBILE
   ========================================================================== */

@media (max-width: 768px) {
    * {
        max-width: 100vw;
        box-sizing: border-box;
    }

    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    /* Navigation Mobile */
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(13, 13, 13, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem 0;
        gap: 0;
        display: none;
        z-index: 999;
        border-top: 1px solid rgba(216, 191, 149, 0.3);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        display: flex;
        top: 80px;
    }

    .nav-menu li {
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(216, 191, 149, 0.1);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.5rem 0;
        display: block;
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1000;
    }

    .logo h1 {
        display: none;
    }

    .logo img {
        height: 40px;
    }

    /* Hero Section Mobile */
    .hero-title {
        font-size: 3rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 2rem;
    }

    .hero-cta .cta-button.large {
        width: 100%;
        max-width: 300px;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        text-align: center;
        justify-content: center;
        display: flex;
        align-items: center;
    }

    .hero-stats {
        gap: 1rem;
        padding: 0 1rem;
        margin-top: 1.5rem;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        justify-content: center;
        box-sizing: border-box;
    }

    .hero-stats::-webkit-scrollbar {
        display: none;
    }

    .stat {
        min-width: 150px;
        flex-shrink: 0;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }

    /* General Mobile */
    .section-title {
        font-size: 2.5rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .product-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    /* About Section Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    /* Podcast Section Mobile */
    .podcast-content {
        grid-template-columns: 1fr;
    }

    /* Foundation Section Mobile */
    .foundation-top-stats {
        gap: 2rem;
        margin: 2rem 0 3rem 0;
    }

    .foundation-wide-container {
        padding: 0 1rem;
    }

    .foundation-tabs {
        margin-top: 3rem;
    }

    .tab-navigation {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }

    .tab-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        flex: 1;
        min-width: 0;
        text-align: center;
    }

    .tab-content {
        padding: 1.5rem;
    }

    .pillar-item {
        flex-direction: row;
        align-items: flex-start;
        gap: 1rem;
        padding: 0.6rem 0;
    }

    .pillar-number {
        font-size: 1.2rem;
        min-width: 30px;
    }

    .pillar-item p {
        font-size: 1rem;
        text-align: justify;
    }

    .rule-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 1.2rem;
        padding: 1rem 0;
    }

    .rule-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 0;
    }

    .rule-item p {
        font-size: 1rem;
        text-align: justify;
    }

    /* Education Section Mobile */
    .education-grid {
        grid-template-columns: 1fr;
    }

    .education-grid.education-two-columns {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin: 0;
        gap: 1.5rem;
    }

    .education-card {
        padding: 2rem;
        margin: 0 1rem;
        min-height: auto;
    }

    /* Metrics Section Mobile */
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .metric-number {
        font-size: 2.5rem;
    }

    /* Speaking Section Mobile */
    .speaking-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Disable parallax on mobile for performance */
    .hero,
    .featured-content,
    .about-section,
    .metrics-section,
    .podcast-section,
    .education-section,
    .foundation-section,
    .books-section,
    .speaking-section,
    .cta-section,
    .contact-section {
        background-attachment: scroll !important;
    }
}

/* ==========================================================================
   DESKTOP SPECIFIC OVERRIDES
   ========================================================================== */

@media (min-width: 769px) {
    .header .nav-menu {
        display: flex !important;
        flex-direction: row !important;
        align-items: center;
        gap: 2.5rem;
        list-style: none;
    }

    .header .mobile-menu-toggle {
        display: none !important;
    }
}

/* ==========================================================================
   MODAL STYLES (WordPress Compatible)
   ========================================================================== */

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
}

.close {
    color: var(--medium-gray);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.close:hover,
.close:focus {
    color: var(--primary-black);
    text-decoration: none;
}

/* Contact Form Styling */
.contact-form {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-form label {
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 0.8rem;
    border: 2px solid var(--light-gray);
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form button {
    margin-top: 1rem;
    background: var(--accent-gold);
    color: var(--primary-black);
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background: var(--dark-gold);
}

/* Form Message Styling */
.form-message {
    padding: 12px;
    border-radius: 6px;
    margin: 15px 0;
    font-weight: 500;
    text-align: center;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ==========================================================================
   END OF CSS
   ========================================================================== */