/* ===== GOHIGHLEVEL COMPATIBILITY & FULL-SCREEN OPTIMIZATION ===== */
/* Ensures full-screen compatibility across all platforms including GHL */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html, body {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    position: relative !important;
}

/* Prevent horizontal scrolling issues in GHL */
body, html, #root, .main-wrapper, .ghl-wrapper {
    overflow-x: hidden !important;
}

/* Full viewport utilization */
.full-width {
    width: 100vw !important;
    max-width: 100vw !important;
}

/* Container optimization for all screen sizes */
.container, .hero-container, .footer-content {
    width: 100% !important;
    max-width: 100% !important;
}

/* Specific GHL iframe and wrapper compatibility */
.ghl-iframe, .ghl-content, .funnel-content {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
}

/* Large laptops and desktop optimization (1200px+) */
@media (min-width: 1200px) {
    .container, .hero-container, .footer-content {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }
    
    /* Ensure hero section uses full width on large screens */
    .hero {
        min-height: 100vh;
        width: 100%;
    }
}

/* Standard laptop optimization (1024px - 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
    .container, .hero-container, .footer-content {
        padding-left: 2.5rem !important;
        padding-right: 2.5rem !important;
        width: 100% !important;
    }
    
    /* Ensure sections use full laptop screen width */
    .hero, .programs, .about, .footer {
        width: 100% !important;
    }
}

/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
}

/* ===== COLOR VARIABLES ===== */
:root {
    --primary-black: #000000;
    --primary-gold: #FFD700;
    --primary-white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #111111;
    --hover-gold: #FFC107;
    --shadow-dark: rgba(0, 0, 0, 0.4);
    --shadow-gold: rgba(255, 215, 0, 0.4);
    --transition: all 0.3s ease;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* ===== LAYOUT UTILITIES ===== */
.container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #666;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== MOTION BACKGROUND SYSTEM ===== */
.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero__bg video,
.hero__bg img {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    filter: brightness(1.3) contrast(1.1) saturate(1.1);
}

/* Video-specific styling */
.hero__bg video {
    opacity: 1;
    filter: brightness(1.2) contrast(1.1) saturate(1.1);
}

/* Fallback image for when video doesn't load */
.hero__bg .fallback-image {
    z-index: 0;
}

/* Enhanced video background effects */
.hero__bg.video-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%);
    z-index: 4;
    pointer-events: none;
}

/* Video loading animation */
.hero__bg video.loading {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero__bg video.loaded {
    opacity: 0.8;
}

.hero__bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(255, 255, 255, 0.05) 100%
    );
    z-index: 2;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 215, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.2) 30%,
        rgba(0, 0, 0, 0.15) 70%,
        rgba(255, 215, 0, 0.08) 100%
    );
    z-index: 3;
}

/* Animated background particles/elements */
.hero__bg .bg-element {
    position: absolute;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero__bg .bg-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.hero__bg .bg-element:nth-child(2) {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.hero__bg .bg-element:nth-child(3) {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.8;
    }
}

/* ===== ENHANCED VIDEO PERFORMANCE & MOBILE OPTIMIZATION ===== */

/* Video performance optimizations */
.hero__bg video {
    will-change: transform;
    transform: translate3d(-50%, -50%, 0); /* Use 3D transform for hardware acceleration */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Mobile video handling */
@media (max-width: 768px) {
    .hero__bg video {
        display: none; /* Hide video on mobile for performance */
    }
    
    .hero__bg .fallback-image {
        display: block !important;
        opacity: 1 !important;
    }
    
    /* Reduce motion on mobile for better performance */
    .hero__bg .bg-element {
        animation-duration: 12s; /* Slower animation on mobile */
        animation-play-state: paused; /* Pause animations on mobile if preferred */
    }
}

/* Reduced motion preference support */
@media (prefers-reduced-motion: reduce) {
    .hero__bg video {
        display: none;
    }
    
    .hero__bg .fallback-image {
        display: block !important;
        opacity: 1 !important;
    }
    
    .hero__bg .bg-element {
        animation: none;
    }
}

/* Low bandwidth optimization */
@media (max-width: 1024px) and (max-height: 768px) {
    .hero__bg video {
        filter: brightness(0.8) contrast(1.1); /* Slightly reduce effects for better performance */
    }
}

/* Video loading states */
.hero__bg video.loading {
    opacity: 0.8;
    transition: opacity 0.5s ease-in-out;
}

/* Testimonial Avatar Icons */
.testimonial-card__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-gold), var(--hover-gold));
    color: var(--primary-black);
    font-size: 24px;
    margin-bottom: 15px;
    flex-shrink: 0;
    overflow: hidden;
    object-fit: cover;
    border: 3px solid var(--primary-gold);
}

/* Style for actual image avatars */
.testimonial-card__avatar img,
img.testimonial-card__avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: none;
}

.testimonial-card__avatar i {
    font-size: 32px;
}

/* Section Visibility Helpers */
.section {
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    pointer-events: none;
}

/* Debug helper for framework pages */
@media (min-width: 1024px) {
    .framework-intro,
    .program-overview,
    .curriculum,
    .testimonials {
        border-left: 3px solid rgba(255, 215, 0, 0.1);
        margin-left: 20px;
        padding-left: 20px;
    }
}

/* ===== COMMUNITY PAGE STYLES ===== */

/* Community Page Global Overrides for Better Readability */
.community-overview,
.online-community,
.events-workshops,
.community-success {
    background: #f8f9fa;
    color: var(--primary-black);
    padding: 80px 0;
}

.community-overview .section-title,
.online-community .highlight-title,
.events-workshops .section-title,
.community-success .section-title {
    color: var(--primary-black);
    text-shadow: none;
}

.community-overview .section-description,
.online-community .highlight-description,
.events-workshops .section-description,
.community-success .section-description {
    color: #2c2c2c;
    font-weight: 400;
}

/* Community Badge */
.community-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), var(--hover-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-black);
    margin: 0 auto 30px;
    animation: float 3s ease-in-out infinite;
}

/* Community Stats */
.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
    padding: 40px 0;
}

/* Community Channels */
.community-channels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.channel-card {
    background: #ffffff;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.channel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.channel-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), var(--hover-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-black);
    margin: 0 auto 25px;
}

.channel-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 15px;
}

.channel-description {
    color: #444444;
    margin-bottom: 30px;
    line-height: 1.6;
}

.channel-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #2c2c2c !important;
    font-weight: 600;
}

.feature-item i {
    color: var(--primary-gold);
    width: 20px;
}

.feature-item span {
    color: #2c2c2c !important;
}

/* Online Community Highlight */
.community-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-gold);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.highlight-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-black);
    margin-bottom: 20px;
}

.highlight-description {
    color: #333333;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.online-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.benefit-item i {
    color: var(--primary-gold);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.benefit-content h4 {
    color: var(--primary-black);
    font-weight: 600;
    margin-bottom: 5px;
}

.benefit-content p {
    color: #555555;
    font-size: 14px;
}

.platform-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Community Preview */
.community-preview {
    background: var(--primary-black);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.preview-header {
    background: linear-gradient(135deg, var(--dark-gray), var(--primary-black));
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.preview-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-white);
    font-weight: 600;
}

.online-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-gold);
    font-size: 14px;
}

.online-dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.preview-content {
    padding: 25px;
}

.discussion-thread {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.thread-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-gold), var(--hover-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.thread-content {
    flex: 1;
}

.user-name {
    color: var(--primary-white);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
}

.thread-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.4;
}

.thread-reactions {
    display: flex;
    gap: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.event-type-card {
    background: #ffffff;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.event-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.event-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-gold), var(--hover-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-black);
    margin: 0 auto 20px;
}

.event-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 15px;
}

.event-description {
    color: #444444;
    margin-bottom: 25px;
    line-height: 1.6;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555555;
    font-size: 14px;
}

.detail-item i {
    color: var(--primary-gold);
    width: 16px;
}

/* Events CTA */
.events-cta {
    background: #ffffff;
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.events-cta h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 15px;
}

.events-cta p {
    color: #444444;
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Success Stories */
.success-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.story-card {
    background: #ffffff;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.story-quote {
    margin-bottom: 25px;
}

.story-quote i {
    color: var(--primary-gold);
    font-size: 24px;
    margin-bottom: 15px;
}

.story-quote p {
    color: var(--primary-black);
    font-size: 16px;
    line-height: 1.6;
    font-style: italic;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold), var(--hover-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-black);
}

.author-info h4 {
    color: var(--primary-black);
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info p {
    color: #555555;
    font-size: 14px;
}

.story-metrics {
    display: flex;
    gap: 30px;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-gold);
}

.metric-label {
    font-size: 12px;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Join Community CTA */
.join-community-cta {
    background: linear-gradient(135deg, var(--dark-gray), var(--primary-black));
    padding: 80px 0;
}

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

.cta-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-white);
    margin-bottom: 20px;
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.membership-options {
    margin-bottom: 60px;
}

.membership-card {
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    margin: 0 auto;
}

.membership-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-white);
    margin-bottom: 10px;
}

.membership-header p {
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 30px;
}

.membership-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    text-align: left;
}

.membership-features .feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-white);
}

.membership-features .feature i {
    color: var(--primary-gold);
    width: 20px;
}

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

.membership-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-top: 15px;
}

.community-contact {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.community-contact h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-white);
    margin-bottom: 15px;
}

.community-contact > p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.contact-options {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-option:hover {
    color: var(--hover-gold);
}

/* Enhanced contrast for join community CTA section with maximum specificity */
.join-community-cta .cta-content .cta-header .cta-title,
.join-community-cta .cta-title,
section.join-community-cta h2 {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7) !important;
    font-weight: 800 !important;
}

.join-community-cta .cta-content .cta-header .cta-description,
.join-community-cta .cta-description,
section.join-community-cta p {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6) !important;
}

.join-community-cta .membership-card .membership-header h3,
.membership-header h3,
section.join-community-cta h3 {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6) !important;
    font-weight: 700 !important;
}

.join-community-cta .membership-card .membership-header p,
.membership-header p {
    color: var(--primary-gold) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
    font-weight: 600 !important;
}

.join-community-cta .membership-card .membership-features .feature span,
.membership-features .feature span,
section.join-community-cta .feature span {
    color: rgba(245, 245, 245, 0.9) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4) !important;
}

.join-community-cta .community-contact h3,
.community-contact h3,
section.join-community-cta .community-contact h3 {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6) !important;
    font-weight: 700 !important;
}

.community-contact > p {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
}

.contact-option {
    color: rgba(245, 245, 245, 0.9) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4) !important;
}

.contact-option i {
    color: var(--primary-gold) !important;
}

/* FORCE WHITE TEXT - "Ready to Join Our Community?" title - MAXIMUM SPECIFICITY */
section.join-community-cta div.container div.cta-content div.cta-header h2.cta-title,
section.join-community-cta .container .cta-content .cta-header .cta-title,
section#join-community .cta-title,
section#join-community h2,
body section.join-community-cta h2.cta-title,
html body section.join-community-cta h2.cta-title {
    color: #FFFFFF !important;
    background: transparent !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9) !important;
    font-weight: 800 !important;
    -webkit-text-fill-color: #FFFFFF !important;
}

/* ADDITIONAL FAILSAFE - Target by content if needed */
section.join-community-cta h2:contains("Ready to Join Our Community?"),
section.join-community-cta *:contains("Ready to Join Our Community?") {
    color: #FFFFFF !important;
    -webkit-text-fill-color: #FFFFFF !important;
}

/* NUCLEAR OPTION - Force all H2 in this section to be white */
section.join-community-cta h2,
section#join-community h2 {
    color: #FFFFFF !important;
    -webkit-text-fill-color: #FFFFFF !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9) !important;
}

/* FORCE WHITE TEXT - "Community Access" title - MAXIMUM SPECIFICITY */
section.join-community-cta div.membership-options div.membership-card div.membership-header h3,
section.join-community-cta .membership-card .membership-header h3,
section#join-community .membership-card h3,
section#join-community h3,
body section.join-community-cta .membership-header h3,
html body section.join-community-cta .membership-header h3,
.membership-card .membership-header h3 {
    color: #FFFFFF !important;
    background: transparent !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9) !important;
    font-weight: 700 !important;
    -webkit-text-fill-color: #FFFFFF !important;
}

/* NUCLEAR OPTION - Force all H3 in this section to be white */
section.join-community-cta h3,
section#join-community h3 {
    color: #FFFFFF !important;
    -webkit-text-fill-color: #FFFFFF !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9) !important;
}

/* Force white text for all elements in join community CTA */
section.join-community-cta *,
section.join-community-cta h1,
section.join-community-cta h2, 
section.join-community-cta h3,
section.join-community-cta h4,
section.join-community-cta p,
section.join-community-cta span,
section.join-community-cta div {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
}

/* Override specific elements with gold color */
section.join-community-cta .membership-header p,
section.join-community-cta i {
    color: var(--primary-gold) !important;
}

/* Additional readability improvements */
.section-header h2,
.section-header .section-title {
    color: var(--primary-black) !important;
    font-weight: 700;
}

.section-header .section-description,
.section-header p {
    color: #2c2c2c !important;
    font-weight: 400;
}

/* Ensure all community page text is readable */
.community-overview *,
.online-community *,
.events-workshops *,
.community-success * {
    text-shadow: none;
}

/* Force all text elements to be dark and readable */
.community-overview span,
.online-community span,
.events-workshops span,
.community-success span,
.channel-features span,
.event-details span {
    color: #2c2c2c !important;
    font-weight: 500;
}

.channel-features .feature-item,
.event-details .detail-item {
    color: #2c2c2c !important;
}

/* Override any remaining bright text */
.community-overview p,
.online-community p,
.events-workshops p,
.community-success p {
    color: #2c2c2c !important;
}

/* ===== FRAMEWORK PAGES (MANAGE & MULTIPLY) READABILITY ===== */

/* Ensure framework page text is dark and readable */
.framework-intro,
.program-overview,
.curriculum,
.testimonials,
.enrollment {
    background: #f8f9fa !important;
    color: var(--primary-black) !important;
}

.framework-intro .section__title,
.program-overview .section__title,
.curriculum .section__title,
.testimonials .section__title {
    color: var(--primary-black) !important;
    text-shadow: none !important;
}

.framework-intro .section__subtitle,
.program-overview .section__subtitle,
.curriculum .section__subtitle,
.testimonials .section__subtitle {
    color: #2c2c2c !important;
}

/* Framework step content */
.framework-step__title {
    color: var(--primary-black) !important;
}

.framework-step__description {
    color: #2c2c2c !important;
}

/* Overview cards text */
.overview-card__title {
    color: var(--primary-black) !important;
}

.overview-card__description {
    color: #2c2c2c !important;
}

.overview-card__features li {
    color: #2c2c2c !important;
}

/* Curriculum module text */
.module__title,
.lesson__title {
    color: var(--primary-black) !important;
}

.module__description,
.lesson__description {
    color: #2c2c2c !important;
}

/* Testimonial text */
.testimonial-card__content p {
    color: #2c2c2c !important;
}

.testimonial-card__author h4 {
    color: var(--primary-black) !important;
}

.testimonial-card__author p {
    color: #555555 !important;
}

/* Force all framework page text to be readable */
.framework-intro *,
.program-overview *,
.curriculum *,
.testimonials * {
    text-shadow: none;
}

/* Override dark sections to be light with dark text */
.section--dark {
    background: #f8f9fa !important;
    color: var(--primary-black) !important;
}

.section--dark .section__title,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
    color: var(--primary-black) !important;
    text-shadow: none !important;
}

.section--dark .section__subtitle,
.section--dark p,
.section--dark .section__description {
    color: #2c2c2c !important;
}

.section--dark .overview-card,
.section--dark .feature-card,
.section--dark .testimonial-card {
    background: #ffffff !important;
    color: var(--primary-black) !important;
    border: 2px solid rgba(255, 215, 0, 0.3) !important;
}

.section--dark .overview-card *,
.section--dark .feature-card *,
.section--dark .testimonial-card * {
    color: #2c2c2c !important;
}

.section--dark .overview-card__title,
.section--dark .feature-card__title,
.section--dark .testimonial-card h4 {
    color: var(--primary-black) !important;
}

/* FAQ and other specific elements */
.section--dark .faq-item,
.section--dark .module,
.section--dark .lesson {
    background: #ffffff !important;
    color: var(--primary-black) !important;
}

.section--dark .faq-item *,
.section--dark .module *,
.section--dark .lesson * {
    color: #2c2c2c !important;
}

.section--dark .faq-item h3,
.section--dark .module h3,
.section--dark .lesson h3 {
    color: var(--primary-black) !important;
}

/* Global override for any remaining bright text elements */
.community-overview li,
.online-community li,
.events-workshops li,
.community-success li,
.section--dark li {
    color: #2c2c2c !important;
}

/* Ensure all spans and small text elements are dark */
.community-overview span,
.online-community span, 
.events-workshops span,
.community-success span,
.section--dark span {
    color: #2c2c2c !important;
}

/* Make sure all card content is readable */
.channel-card p,
.event-type-card p,
.story-card p,
.overview-card p,
.feature-card p,
.testimonial-card p {
    color: #2c2c2c !important;
}

/* ===== FAQ SECTIONS READABILITY FIX ===== */
.faq.section {
    background: #f8f9fa !important;
    color: var(--primary-black) !important;
}

.faq.section .section__title,
.faq.section h2 {
    color: var(--primary-black) !important;
    text-shadow: none !important;
}

.faq.section .section__subtitle,
.faq.section p {
    color: #2c2c2c !important;
}

.faq-container {
    background: transparent !important;
}

.faq-item {
    background: #ffffff !important;
    color: var(--primary-black) !important;
    border: 2px solid rgba(255, 215, 0, 0.3) !important;
    margin-bottom: 20px !important;
    border-radius: 15px !important;
    padding: 25px !important;
}

.faq-item__question h3 {
    color: var(--primary-black) !important;
    text-shadow: none !important;
}

.faq-item__answer p {
    color: #2c2c2c !important;
    line-height: 1.6 !important;
}

/* Additional FAQ styling for better readability */
.faq-item__question {
    border-bottom: 1px solid rgba(255, 215, 0, 0.2) !important;
    padding-bottom: 15px !important;
    margin-bottom: 15px !important;
}

.faq-item__question i {
    color: var(--primary-gold) !important;
}

/* Comprehensive override for any FAQ section variations */
.faq.section.section--dark,
.faq.section--dark,
section.faq,
section.faq.section--dark {
    background: #f8f9fa !important;
    color: var(--primary-black) !important;
}

.faq.section.section--dark *,
.faq.section--dark *,
section.faq *,
section.faq.section--dark * {
    color: #2c2c2c !important;
    text-shadow: none !important;
}

.faq.section.section--dark h2,
.faq.section.section--dark h3,
.faq.section--dark h2,
.faq.section--dark h3,
section.faq h2,
section.faq h3 {
    color: var(--primary-black) !important;
}

/* Force all framework page sections to be readable */
.framework-intro,
.program-overview,
.curriculum,
.testimonials,
.faq,
.features,
.benefits,
.prerequisites,
.roi,
.cta {
    background: #f8f9fa !important;
    color: var(--primary-black) !important;
}

/* Override any remaining white text */
.framework-intro *,
.program-overview *,
.curriculum *,
.testimonials *,
.faq *,
.features *,
.benefits *,
.prerequisites *,
.cta * {
    color: #2c2c2c !important;
    text-shadow: none !important;
}

/* Special styling for ROI section with chart - ensure readability */
.roi * {
    color: var(--primary-black) !important;
    text-shadow: none !important;
    font-weight: 600 !important;
}

.roi .roi__title,
.roi h2 {
    color: var(--primary-black) !important;
    font-weight: 800 !important;
    text-shadow: none !important;
}

.roi .roi__subtitle,
.roi p {
    color: #2c2c2c !important;
    font-weight: 500 !important;
}

.roi-metric__number {
    color: var(--primary-gold) !important;
    font-weight: 900 !important;
}

.roi-metric__label {
    color: var(--primary-black) !important;
    font-weight: 700 !important;
}

.roi-metric__description {
    color: #444444 !important;
    font-weight: 500 !important;
}

/* Chart container styling for better visibility */
.roi-chart {
    background: #ffffff !important;
    padding: 2rem !important;
    border-radius: 1rem !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.roi-visual {
    padding: 1rem !important;
}

/* Ensure all headings are black */
.framework-intro h1,
.framework-intro h2,
.framework-intro h3,
.program-overview h1,
.program-overview h2,
.program-overview h3,
.curriculum h1,
.curriculum h2,
.curriculum h3,
.testimonials h1,
.testimonials h2,
.testimonials h3,
.faq h1,
.faq h2,
.faq h3,
.features h1,
.features h2,
.features h3,
.benefits h1,
.benefits h2,
.benefits h3,
.prerequisites h1,
.prerequisites h2,
.prerequisites h3,
.roi h1,
.roi h2,
.roi h3,
.cta h1,
.cta h2,
.cta h3 {
    color: var(--primary-black) !important;
}

/* FINAL COMPREHENSIVE TEXT READABILITY OVERRIDE */
/* This ensures ALL text elements are dark and readable across all pages */

/* Target all possible white text elements BUT exclude navbar, footer, hero, program-hero, framework hero, about-hero, process section and philosophy quotes */
body *:not(.hero *):not(.program-hero *):not(.hero--framework *):not(.framework-hero *):not(.hero--tradelines *):not(.about-hero *):not(.section--process *):not(.section--cta *):not(.google-reviews-section *):not(.navbar *):not(.footer *):not(.join-community-cta *):not(.membership-card *):not(.community-contact *):not(.framework-philosophy *):not(.framework-philosophy__quote *):not(.nav-container *):not(.footer-content *):not(.dropdown-menu *):not(.programs *):not(.program-card *):not(.booking *):not(.community-cta *):not(.community-features *):not(.feature-item *):not(.founders-mission *):not(.mission-quote):not(.values-section *):not(.value-card *):not(.join-mission-cta *):not(.cta-testimonial *):not(.online-benefits *):not(.benefit-item *):not(.community-preview *):not(.make-graphic *):not(.element):not(.foundation-elements *):not(.element-card *):not(.next-phase-cta *):not(.program-benefits *):not(.customer-login *):not(.program-cta *) {
    color: #2c2c2c !important;
}

/* Ensure all headings are black BUT exclude all hero sections */
body h1:not(.hero h1):not(.program-hero h1):not(.hero--framework h1):not(.framework-hero h1):not(.hero--tradelines h1):not(.about-hero h1):not(.section--process h1):not(.section--cta h1):not(.google-reviews-section h1):not(.navbar h1):not(.footer h1):not(.framework-philosophy h1):not(.programs h1):not(.program-card h1):not(.booking h1):not(.community-cta h1):not(.community-features h1):not(.feature-item h1):not(.founders-mission h1):not(.mission-quote):not(.values-section h1):not(.value-card h1):not(.join-mission-cta h1):not(.cta-testimonial h1):not(.online-benefits h1):not(.benefit-item h1):not(.community-preview h1):not(.program-benefits h1):not(.customer-login h1):not(.program-cta h1),
body h2:not(.hero h2):not(.program-hero h2):not(.hero--framework h2):not(.framework-hero h2):not(.hero--tradelines h2):not(.about-hero h2):not(.section--process h2):not(.section--cta h2):not(.google-reviews-section h2):not(.navbar h2):not(.footer h2):not(.framework-philosophy h2):not(.programs h2):not(.program-card h2):not(.booking h2):not(.community-cta h2):not(.community-features h2):not(.feature-item h2):not(.founders-mission h2):not(.mission-quote):not(.values-section h2):not(.value-card h2):not(.join-mission-cta h2):not(.cta-testimonial h2):not(.online-benefits h2):not(.benefit-item h2):not(.community-preview h2):not(.program-benefits h2):not(.customer-login h2):not(.program-cta h2),
body h3:not(.hero h3):not(.program-hero h3):not(.hero--framework h3):not(.framework-hero h3):not(.hero--tradelines h3):not(.about-hero h3):not(.section--process h3):not(.section--cta h3):not(.google-reviews-section h3):not(.navbar h3):not(.footer h3):not(.framework-philosophy h3):not(.programs h3):not(.program-card h3):not(.booking h3):not(.community-cta h3):not(.community-features h3):not(.feature-item h3):not(.founders-mission h3):not(.mission-quote):not(.values-section h3):not(.value-card h3):not(.join-mission-cta h3):not(.cta-testimonial h3):not(.online-benefits h3):not(.benefit-item h3):not(.community-preview h3):not(.program-benefits h3):not(.customer-login h3):not(.program-cta h3),
body h4:not(.hero h4):not(.program-hero h4):not(.hero--framework h4):not(.framework-hero h4):not(.hero--tradelines h4):not(.about-hero h4):not(.section--process h4):not(.section--cta h4):not(.google-reviews-section h4):not(.navbar h4):not(.footer h4):not(.framework-philosophy h4):not(.programs h4):not(.program-card h4):not(.booking h4):not(.community-cta h4):not(.community-features h4):not(.feature-item h4):not(.founders-mission h4):not(.mission-quote):not(.values-section h4):not(.value-card h4):not(.join-mission-cta h4):not(.cta-testimonial h4):not(.online-benefits h4):not(.benefit-item h4):not(.community-preview h4):not(.program-benefits h4):not(.customer-login h4):not(.program-cta h4) {
    color: var(--primary-black) !important;
}

/* Override any remaining bright text specifically in framework pages */
.framework-intro p:not(.framework-philosophy p),
.program-overview p:not(.framework-philosophy p),
.curriculum p:not(.framework-philosophy p),
.testimonials p:not(.framework-philosophy p),
.faq p:not(.framework-philosophy p),
.features p:not(.framework-philosophy p),
.benefits p:not(.framework-philosophy p),
.prerequisites p:not(.framework-philosophy p),
.roi p:not(.framework-philosophy p),
.cta:not(.join-community-cta) p:not(.framework-philosophy p) {
    color: #2c2c2c !important;
}

/* Specific fix for FAQ answers and questions */
.faq-item__answer,
.faq-item__question,
.faq-container * {
    color: #2c2c2c !important;
}

.faq-item h3,
.faq-container h3 {
    color: var(--primary-black) !important;
}

/* ===== PHILOSOPHY QUOTE SECTION - PRESERVE DARK THEME ===== */
.framework-philosophy {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 50%, var(--primary-black) 100%) !important;
    padding: 60px 0 !important;
    margin: 40px 0 !important;
    position: relative;
}

.framework-philosophy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.framework-philosophy__quote {
    text-align: center !important;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto !important;
    padding: 40px !important;
    background: rgba(0, 0, 0, 0.3) !important;
    border-radius: 20px !important;
    border: 1px solid rgba(255, 215, 0, 0.2) !important;
}

.framework-philosophy__quote i {
    color: var(--primary-gold) !important;
    font-size: 32px !important;
    margin-bottom: 20px !important;
    display: block !important;
}

.framework-philosophy__quote blockquote {
    color: var(--primary-white) !important;
    font-size: 24px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    margin: 0 0 20px 0 !important;
    font-style: italic !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.framework-philosophy__quote cite {
    color: var(--primary-gold) !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    font-style: normal !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

/* Ensure philosophy quote elements are never overridden */
.framework-philosophy *,
.framework-philosophy__quote *,
.framework-philosophy blockquote,
.framework-philosophy cite {
    color: var(--primary-white) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
}

.framework-philosophy .fas,
.framework-philosophy__quote i,
.framework-philosophy cite {
    color: var(--primary-gold) !important;
}

/* ===== ENSURE NAVBAR & FOOTER PROPER CONTRAST ===== */

/* Navbar - White text on black background */
.navbar,
.navbar *,
.nav-container,
.nav-container * {
    color: var(--primary-white) !important;
}

.navbar .logo-text {
    color: var(--primary-white) !important;
}

.navbar .logo-subtitle {
    color: var(--primary-gold) !important;
}

.navbar .nav-link {
    color: var(--primary-white) !important;
}

.navbar .nav-link:hover {
    color: var(--primary-gold) !important;
}

.navbar .dropdown-item {
    color: var(--primary-white) !important;
}

.navbar .dropdown-item:hover {
    color: var(--primary-gold) !important;
}

.navbar .cta-button {
    background-color: var(--primary-gold) !important;
    color: var(--primary-black) !important;
}

/* Footer - White/Gold text on black background */
.footer,
.footer * {
    background-color: var(--primary-black) !important;
}

.footer .footer-logo {
    color: var(--primary-white) !important;
}

.footer .footer-tagline {
    color: var(--primary-gold) !important;
}

.footer .link-group h4 {
    color: var(--primary-gold) !important;
}

.footer .link-group a {
    color: var(--light-gray) !important;
}

.footer .link-group a:hover {
    color: var(--primary-gold) !important;
}

.footer .footer-copyright {
    color: var(--light-gray) !important;
}

.footer .social-link {
    color: var(--primary-gold) !important;
    border-color: var(--primary-gold) !important;
}

.footer .social-link:hover {
    background-color: var(--primary-gold) !important;
    color: var(--primary-black) !important;
}

/* Override any text that might be forced dark in navbar/footer */
.navbar h1,
.navbar h2,
.navbar h3,
.navbar h4,
.navbar p,
.navbar span,
.navbar a {
    color: var(--primary-white) !important;
}

.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer p:not(.footer-copyright),
.footer span {
    color: var(--primary-white) !important;
}

.footer h3.footer-logo {
    color: var(--primary-white) !important;
}

.footer p.footer-tagline {
    color: var(--primary-gold) !important;
}

/* Hero sections - White text with subtle shadows for readability */
.hero,
.hero *,
.program-hero,
.program-hero *,
.hero--framework,
.hero--framework *,
.framework-hero,
.framework-hero *,
.hero--tradelines,
.hero--tradelines *,
.about-hero,
.about-hero * {
    color: var(--primary-white) !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6), 0 0 6px rgba(0, 0, 0, 0.4) !important;
}

.hero .hero-title,
.hero .program-title,
.hero .hero__title,
.hero--tradelines .hero__title {
    color: var(--primary-white) !important;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7), 0 0 10px rgba(0, 0, 0, 0.5) !important;
    font-weight: 700 !important;
}

.hero .hero-tagline,
.hero .program-tagline,
.hero .hero__subtitle {
    color: var(--primary-gold) !important;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7), 0 0 8px rgba(0, 0, 0, 0.5) !important;
    font-weight: 600 !important;
}

.hero .hero-description,
.hero .program-description,
.hero .hero__description {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7), 0 0 6px rgba(0, 0, 0, 0.5) !important;
    font-weight: 500 !important;
    background: rgba(0, 0, 0, 0.2) !important;
    padding: 15px 20px !important;
    border-radius: 10px !important;
    backdrop-filter: blur(3px) !important;
}

/* Hero badge and visual elements */
.hero .hero-badge,
.hero .program-badge,
.hero .hero__badge {
    background: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(8px) !important;
    border: 2px solid var(--primary-gold) !important;
    color: var(--primary-white) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6) !important;
}

.hero .hero-badge span,
.hero .program-badge span,
.hero .hero__badge span {
    color: var(--primary-white) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6) !important;
}

.hero .program-tagline {
    color: var(--primary-gold) !important;
}

.hero .program-description {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Hero badges and statistics */
.hero .community-badge,
.hero .program-badge {
    color: var(--primary-black) !important;
    background: linear-gradient(135deg, var(--primary-gold), var(--hover-gold)) !important;
}

.hero .stat-number {
    color: var(--primary-gold) !important;
}

.hero .stat-label {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Hero buttons maintain their own styling */
.hero .btn {
    /* Keep existing button styling */
}

/* Responsive Design for Community Page */
@media (max-width: 768px) {
    .community-channels {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .community-highlight {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .online-benefits {
        grid-template-columns: 1fr;
    }
    
    .platform-cta {
        justify-content: center;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .success-stories {
        grid-template-columns: 1fr;
    }
    
    .story-metrics {
        justify-content: center;
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .highlight-title {
        font-size: 28px;
    }
}

.hero__bg video.loaded {
    opacity: 0.8;
    transition: opacity 1s ease-in-out;
}

.hero__bg video.error,
.hero__bg video[style*="display: none"] + .fallback-image {
    display: block !important;
    opacity: 1 !important;
}

/* Parallax effect for enhanced motion */
.hero {
    position: relative;
    overflow: hidden;
}

.hero__content {
    position: relative;
    z-index: 10;
}

/* Accessibility - Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
    .hero__bg video {
        animation-play-state: paused;
    }
    
    .hero__bg .bg-element {
        animation: none;
    }
    
    .hero__bg img {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Performance optimization for mobile */
@media (max-width: 768px) {
    .hero__bg video {
        display: none;
    }
    
    .hero__bg::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
        z-index: 1;
    }
}

/* Program Hero Motion Background Support */
.program-hero {
    position: relative;
    overflow: hidden;
}

.program-hero .hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.program-hero .hero__bg img {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.program-hero .hero__bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.08) 0%,
        rgba(0, 0, 0, 0.15) 50%,
        rgba(255, 255, 255, 0.08) 100%
    );
    z-index: 2;
}

.program-hero .hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 215, 0, 0.12) 0%,
        rgba(0, 0, 0, 0.25) 30%,
        rgba(0, 0, 0, 0.2) 70%,
        rgba(255, 215, 0, 0.1) 100%
    );
    z-index: 3;
}

.program-hero .container,
.program-hero .hero-container {
    position: relative;
    z-index: 10;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all var(--transition);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.nav__logo {
    flex-shrink: 0;
}

.nav__logo-img {
    height: 40px;
    width: auto;
    transition: all var(--transition);
}

.nav__logo-img:hover {
    transform: scale(1.05);
}

.nav__menu {
    display: flex;
    align-items: center;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__item {
    position: relative;
}

.nav__link {
    color: var(--primary-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    position: relative;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav__link:hover,
.nav__link.active {
    color: var(--primary-gold);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width var(--transition);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all var(--transition);
}

.nav__toggle:hover {
    color: var(--primary-gold);
}

.nav__toggle.active {
    transform: rotate(90deg);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    min-width: 200px;
    padding: 1rem 0;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition);
    list-style: none;
    z-index: 100;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    color: var(--primary-white);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    transition: all var(--transition);
    border-left: 3px solid transparent;
}

.dropdown-item:hover,
.dropdown-item.active {
    color: var(--primary-gold);
    background: rgba(255, 215, 0, 0.1);
    border-left-color: var(--primary-gold);
}

/* Mobile Navigation */
@media (max-width: 968px) {
    .nav__toggle {
        display: block;
    }
    
    .nav__menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        padding: 2rem 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
    }
    
    .nav__menu.show-menu {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0 2rem;
    }
    
    .nav__item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav__item:last-child {
        border-bottom: none;
    }
    
    .nav__link {
        padding: 1rem 0;
        width: 100%;
        justify-content: center;
    }
    
    .dropdown-menu {
        position: static;
        background: rgba(255, 215, 0, 0.1);
        box-shadow: none;
        border: none;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0.5rem;
    }
    
    .dropdown-item {
        padding: 0.5rem 2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 1rem;
    }
    
    .nav__logo-img {
        height: 35px;
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 2rem;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    min-width: 160px;
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    background-color: var(--primary-black);
    color: var(--primary-gold);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-dark);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-gold);
    border-color: var(--primary-gold);
}

.btn-secondary:hover {
    background-color: var(--primary-gold);
    color: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-gold);
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.2rem;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--primary-black);
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--primary-white);
    transition: var(--transition);
}

.logo-link:hover {
    transform: translateY(-2px);
}

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
    transition: var(--transition);
}

.logo-link:hover .logo-image {
    transform: scale(1.05);
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    display: block;
    line-height: 1;
    color: var(--primary-white);
}

.logo-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary-gold);
    letter-spacing: 0.15rem;
    margin-top: -2px;
}

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

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--primary-white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link:hover {
    color: var(--primary-gold);
    text-shadow: 0 0 10px var(--shadow-gold);
    transform: translateY(-2px);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--primary-black);
    min-width: 200px;
    border-radius: 1rem;
    padding: 1rem 0;
    box-shadow: 0 6px 20px var(--shadow-dark);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    color: var(--primary-white);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
    font-weight: 500;
}

.dropdown-item:hover {
    color: var(--primary-gold);
    background-color: var(--dark-gray);
}

.cta-button {
    background-color: var(--primary-gold);
    color: var(--primary-black);
    padding: 0.75rem 1.5rem;
    border-radius: 1.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.cta-button:hover {
    background-color: var(--primary-black);
    color: var(--primary-gold);
    border: 2px solid var(--primary-gold);
    transform: translateY(-2px);
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-white);
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    color: var(--primary-white);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    color: var(--light-gray);
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-badge {
    background: linear-gradient(45deg, var(--primary-gold), var(--hover-gold));
    color: var(--primary-black);
    padding: 2rem;
    border-radius: 2rem;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 20px 40px var(--shadow-dark);
    transform: rotate(-5deg);
    animation: float 6s ease-in-out infinite;
}

.hero-badge i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.hero-badge span {
    font-size: 1.2rem;
    font-weight: 800;
}

@keyframes float {
    0%, 100% { transform: rotate(-5deg) translateY(0px); }
    50% { transform: rotate(-5deg) translateY(-20px); }
}

/* ===== PROGRAMS SECTION ===== */
.programs {
    padding: 8rem 0;
    background-color: var(--primary-white);
}

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

.program-card {
    background-color: var(--primary-black);
    color: var(--primary-white);
    padding: 2.5rem;
    border-radius: 2rem;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.05));
    opacity: 0;
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px var(--shadow-dark), 0 0 10px var(--shadow-gold);
    border-color: var(--primary-gold);
}

.program-card:hover::before {
    opacity: 1;
}

.card-icon {
    background: linear-gradient(45deg, var(--primary-gold), var(--hover-gold));
    color: var(--primary-black);
    width: 80px;
    height: 80px;
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    transition: var(--transition);
}

.program-card:hover .card-icon {
    transform: scale(1.1);
}

.card-title {
    color: var(--primary-gold);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 0.1rem;
}

.card-description {
    color: var(--light-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature {
    background-color: var(--dark-gray);
    color: var(--primary-gold);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== BOOKING SECTION ===== */
.booking {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
}

.booking-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.booking .section-subtitle {
    color: var(--light-gray);
}

.calendar-container {
    background-color: var(--primary-black);
    border: 2px solid var(--primary-gold);
    border-radius: 2rem;
    padding: 3rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.calendar-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.05));
}

.calendar-embed {
    position: relative;
    z-index: 2;
    min-height: 600px;
}

.calendar-embed iframe {
    width: 100% !important;
    min-height: 600px !important;
    border: none !important;
    border-radius: 1rem;
    background-color: transparent;
}

.calendar-placeholder {
    position: relative;
    z-index: 2;
}

.calendar-placeholder i {
    font-size: 4rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
}

.calendar-placeholder h3 {
    color: var(--primary-white);
    margin-bottom: 1rem;
}

.calendar-placeholder p {
    color: var(--light-gray);
    margin-bottom: 2rem;
}

.calendar-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--light-gray);
    font-size: 1.1rem;
}

.info-item i {
    color: var(--primary-gold);
    font-size: 1.5rem;
    width: 2rem;
    text-align: center;
}

/* ===== COMMUNITY CTA SECTION ===== */
.community-cta {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--primary-black), var(--dark-gray));
    text-align: center;
}

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

.community-title {
    color: var(--primary-white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.community-subtitle {
    color: var(--light-gray);
    font-size: 1.3rem;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.community-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--light-gray);
    font-weight: 600;
}

.feature-item i {
    color: var(--primary-gold);
    font-size: 2.5rem;
    background-color: var(--dark-gray);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.feature-item:hover i {
    transform: scale(1.1);
    background-color: var(--primary-gold);
    color: var(--primary-black);
}

/* Force light colors for community feature items to ensure proper contrast */
.community-cta .community-features .feature-item,
.community-cta .community-features .feature-item span,
.community-cta .feature-item,
.community-cta .feature-item span {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
}

.community-cta .community-features .feature-item i,
.community-cta .feature-item i {
    color: var(--primary-gold) !important;
    background-color: var(--dark-gray) !important;
}

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

.footer-content {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    color: var(--primary-white);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

/* Footer image logo styling */
.footer__logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 1rem;
    display: block;
}

.footer-tagline {
    color: var(--primary-gold);
    font-size: 1rem;
    font-weight: 500;
}

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

.link-group h4 {
    color: var(--primary-gold);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

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

.link-group a {
    color: var(--light-gray);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.link-group a:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
}

/* Enhanced contrast for footer contact address */
.footer .link-group:last-child li {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
    font-size: 0.95rem;
}

/* Ensure links in contact section still have proper styling */
.footer .link-group:last-child li a {
    color: var(--light-gray) !important;
}

.footer-bottom {
    border-top: 1px solid var(--dark-gray);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.social-link {
    color: var(--primary-gold);
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    text-decoration: none;
}

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

.footer-copyright {
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Laptops and Desktops (1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 3rem;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .programs-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .nav-menu {
        gap: 2.5rem;
    }
}

/* Tablets Only (768px - 1023px) - Excludes larger laptops */
@media (max-width: 1023px) and (min-width: 769px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-container {
        padding: 4rem 1.5rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .programs-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .program-card {
        padding: 2rem;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-hero .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.95rem;
    }
    
    .cta-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.95rem;
    }
}

/* Mobile Devices (768px and below) */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    /* Mobile Navigation Menu */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100vw !important;
        height: calc(100vh - 80px) !important;
        background-color: #1a1a1a !important;
        flex-direction: column !important;
        padding: 2rem !important;
        transform: translateX(-100%) !important;
        transition: transform 0.3s ease !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3) !important;
        z-index: 9999 !important;
        overflow-y: auto !important;
        display: flex !important;
    }

    .nav-menu.active {
        transform: translateX(0) !important;
    }

    /* Hamburger Menu */
    .nav-toggle {
        display: flex !important;
        flex-direction: column;
        cursor: pointer;
        gap: 4px;
        padding: 10px;
        z-index: 10000 !important;
    }

    .nav-toggle .bar {
        width: 25px !important;
        height: 3px !important;
        background-color: #ffffff !important;
        transition: all 0.3s ease !important;
        display: block !important;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px) !important;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0 !important;
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px) !important;
    }

    /* Mobile Navigation Items */
    .nav-item {
        margin-bottom: 1rem !important;
        width: 100% !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    
    .nav-link {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 1rem 0 !important;
        font-size: 1.1rem !important;
        color: #ffffff !important;
        text-decoration: none !important;
        width: 100% !important;
    }

    .nav-link:hover {
        color: #d4af37 !important;
    }
    
    /* Mobile Dropdown Menus */
    .dropdown-menu {
        position: static !important;
        opacity: 0 !important;
        visibility: hidden !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transform: none !important;
        box-shadow: none !important;
        background: transparent !important;
        margin-top: 0 !important;
        margin-left: 1rem !important;
        border-left: 2px solid #d4af37 !important;
        padding-left: 1rem !important;
        transition: all 0.3s ease !important;
    }
    
    .dropdown-menu.active {
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 300px !important;
        margin-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    
    .dropdown-item {
        display: block !important;
        padding: 0.75rem 0 !important;
        color: #cccccc !important;
        text-decoration: none !important;
        font-size: 0.95rem !important;
        transition: color 0.3s ease !important;
    }
    
    .dropdown-item:hover {
        color: #d4af37 !important;
    }

    /* Ensure mobile menu works properly */
    .navbar {
        position: relative !important;
    }

    .nav-container {
        position: relative !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    /* Force hamburger menu visibility on mobile */
    .nav-toggle {
        display: flex !important;
        position: relative !important;
        z-index: 10001 !important;
    }

    /* Hide desktop navigation on mobile */
    .nav-menu:not(.active) {
        display: none !important;
    }

    .nav-menu.active {
        display: flex !important;
    }

    /* Ensure proper mobile layout */
    .nav-logo {
        flex: 1 !important;
    }

    /* Mobile navigation debugging */
    @media (max-width: 768px) {
        body {
            font-size: 16px !important;
        }
        
        .nav-toggle {
            background: rgba(0, 0, 0, 0.1) !important;
            padding: 8px !important;
            border-radius: 4px !important;
            border: 1px solid rgba(255, 255, 255, 0.2) !important;
        }
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 6rem 1rem 4rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .programs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .program-card {
        padding: 2rem;
    }

    .community-features {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .calendar-buttons {
        flex-direction: column;
        align-items: center;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Small Mobile Devices (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .community-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        min-width: 140px;
        width: 100%;
        max-width: 280px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .program-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .card-title {
        font-size: 1.4rem;
    }
    
    .card-description {
        font-size: 0.95rem;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo-link {
        gap: 0.75rem;
    }
    
    .logo-image {
        width: 40px;
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-subtitle {
        font-size: 0.7rem;
    }
    
    .cta-button {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .booking-content {
        padding: 0 0.5rem;
    }
    
    .calendar-container {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .calendar-embed iframe {
        min-height: 500px !important;
    }
    
    .community-features {
        gap: 1.5rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-item i {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Extra Small Mobile Devices (360px and below) */
@media (max-width: 360px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .program-card {
        padding: 1.25rem;
    }
    
    .card-features {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .feature {
        text-align: center;
        font-size: 0.8rem;
    }
    
    .nav-container {
        padding: 0 0.75rem;
    }
    
    .logo-link {
        gap: 0.5rem;
    }
    
    .logo-image {
        width: 35px;
        height: 35px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .logo-subtitle {
        font-size: 0.65rem;
    }
    
    .calendar-container {
        padding: 1rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* ===== PROGRAM PAGES STYLES ===== */
.program-hero {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 6rem;
}

.program-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.program-badge {
    background: linear-gradient(45deg, var(--primary-gold), var(--hover-gold));
    color: var(--primary-black);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    box-shadow: 0 20px 40px var(--shadow-dark);
    position: relative;
    z-index: 2;
}

.program-title {
    color: var(--primary-white);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 0.1rem;
}

.program-tagline {
    color: var(--primary-gold);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.program-description {
    color: var(--light-gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.program-overview {
    padding: 8rem 0;
    background-color: var(--primary-white);
}

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

.program-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-gold);
    line-height: 1;
}

.stat-label {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

.program-highlights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.highlight-item {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 1.5rem;
    border-left: 4px solid var(--primary-gold);
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.highlight-item i {
    color: var(--primary-gold);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.highlight-item h4 {
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.highlight-item p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.curriculum {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--light-gray), var(--primary-white));
}

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

.module-card {
    background-color: var(--primary-white);
    border-radius: 2rem;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.module-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.module-number {
    position: absolute;
    top: -20px;
    right: 2rem;
    background: linear-gradient(45deg, var(--primary-gold), var(--hover-gold));
    color: var(--primary-black);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
}

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

.module-content p {
    color: #666;
    margin-bottom: 1.5rem;
}

.module-topics {
    list-style: none;
    padding: 0;
}

.module-topics li {
    color: #666;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 1.5rem;
}

.module-topics li:before {
    content: '✓';
    color: var(--primary-gold);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.program-benefits {
    padding: 8rem 0;
    background-color: var(--primary-black);
    color: var(--primary-white);
}

.program-benefits .section-title {
    color: var(--primary-white) !important;
}

.program-benefits .section-subtitle {
    color: var(--light-gray) !important;
}

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

.benefit-item {
    text-align: center;
    padding: 2rem;
    border-radius: 1.5rem;
    background-color: var(--dark-gray);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 215, 0, 0.1);
}

.benefit-icon {
    background: linear-gradient(45deg, var(--primary-gold), var(--hover-gold));
    color: var(--primary-black);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.benefit-item h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.benefit-item p {
    color: var(--light-gray);
    font-size: 0.95rem;
    margin: 0;
}

/* Enhanced contrast for online community benefit items */
.benefit-item h4 {
    color: var(--primary-gold) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
}

/* ACQUIRE page benefit items styling - fix hover effects and center text */
.benefits .benefit-item {
    background: #ffffff !important;
    border: 2px solid rgba(255, 215, 0, 0.2) !important;
    border-radius: 1.5rem !important;
    padding: 2.5rem 2rem !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    min-height: 320px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
}

.benefits .benefit-item:hover {
    border-color: var(--primary-gold) !important;
    background: rgba(255, 215, 0, 0.1) !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2) !important;
}

.benefits .benefit-item__icon {
    background: linear-gradient(45deg, var(--primary-gold), var(--hover-gold)) !important;
    color: var(--primary-black) !important;
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 1.5rem !important;
    font-size: 2rem !important;
    transition: all 0.3s ease !important;
}

.benefits .benefit-item:hover .benefit-item__icon {
    background: linear-gradient(45deg, var(--primary-black), var(--dark-gray)) !important;
    color: var(--primary-gold) !important;
    transform: scale(1.1) !important;
}

.benefits .benefit-item__title {
    color: var(--primary-black) !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    margin-bottom: 1.5rem !important;
    text-align: center !important;
    transition: color 0.3s ease !important;
    letter-spacing: 0.5px !important;
}

.benefits .benefit-item:hover .benefit-item__title {
    color: var(--primary-gold) !important;
}

.benefits .benefit-item__description {
    color: #2c2c2c !important;
    font-size: 1.1rem !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    line-height: 1.8 !important;
    text-align: center !important;
    margin: 0 !important;
    letter-spacing: 0.3px !important;
    font-weight: 400 !important;
    max-width: 280px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.benefit-item p {
    color: rgba(245, 245, 245, 0.9) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4) !important;
}

.benefit-item i {
    color: var(--primary-gold) !important;
}

/* Enhanced contrast for community preview */
.preview-title,
.preview-title span {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
}

.online-indicator,
.online-indicator span {
    color: rgba(245, 245, 245, 0.9) !important;
}

.user-name {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4) !important;
}

.thread-text {
    color: rgba(245, 245, 245, 0.9) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
}

.thread-reactions span {
    color: rgba(255, 215, 0, 0.9) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4) !important;
}

.testimonials {
    padding: 8rem 0;
    background-color: var(--light-gray);
}

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

.testimonial-card {
    background-color: var(--primary-white);
    padding: 2.5rem;
    border-radius: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content p {
    color: #666;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    color: var(--primary-black);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.author-info p {
    color: var(--primary-gold);
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.testimonial-rating {
    color: var(--primary-gold);
}

.program-cta {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
    text-align: center;
    color: var(--primary-white);
}

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

.cta-description {
    color: var(--light-gray);
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--primary-gold);
    font-weight: 600;
}

.cta-guarantee i {
    font-size: 1.2rem;
}

/* ===== ABOUT PAGE STYLES ===== */
.about-hero {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-hero .hero-container {
    grid-template-columns: 2fr 1fr;
    align-items: center;
}

.about-content {
    z-index: 2;
}

.about-title {
    color: var(--primary-white);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.about-subtitle {
    color: var(--light-gray);
    font-size: 1.3rem;
    line-height: 1.6;
    max-width: 600px;
}

.mission-badge {
    background: linear-gradient(45deg, var(--primary-gold), var(--hover-gold));
    color: var(--primary-black);
    padding: 2rem;
    border-radius: 2rem;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 20px 40px var(--shadow-dark);
    transform: rotate(5deg);
}

.mission-badge i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.mission-badge span {
    font-size: 1.2rem;
    font-weight: 800;
}

.company-story {
    padding: 8rem 0;
    background-color: var(--primary-white);
}

.story-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
}

.mission-quote {
    background: linear-gradient(45deg, var(--primary-gold), var(--hover-gold));
    color: var(--primary-black);
    padding: 2rem;
    border-radius: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
    font-style: italic;
    margin: 2rem 0;
    text-align: center;
    position: relative;
}

.mission-quote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -1rem;
    left: 1rem;
    opacity: 0.3;
}

.story-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 1.5rem;
    text-align: center;
    transition: var(--transition);
    border-left: 4px solid var(--primary-gold);
}

.stat-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    color: var(--primary-black);
    font-weight: 600;
    font-size: 1rem;
}

.our-approach {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--light-gray), var(--primary-white));
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.approach-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background-color: var(--primary-white);
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.approach-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.approach-number {
    background: linear-gradient(45deg, var(--primary-gold), var(--hover-gold));
    color: var(--primary-black);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
}

.approach-content h3 {
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.approach-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.values-section {
    padding: 8rem 0;
    background-color: var(--primary-black);
    color: var(--primary-white);
}

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

.values-section .section-subtitle {
    color: var(--light-gray);
}

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

.value-card {
    background-color: var(--dark-gray);
    padding: 2.5rem;
    border-radius: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.value-icon {
    background: linear-gradient(45deg, var(--primary-gold), var(--hover-gold));
    color: var(--primary-black);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

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

.value-card p {
    color: var(--light-gray);
    line-height: 1.6;
    margin: 0;
}

/* Enhanced contrast for values section */
.values-section .section-title {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7) !important;
}

.values-section .section-subtitle {
    color: rgba(245, 245, 245, 0.9) !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6) !important;
}

.value-card h3 {
    color: var(--primary-gold) !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6) !important;
}

.value-card p {
    color: rgba(245, 245, 245, 0.9) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
    line-height: 1.7 !important;
}

.recognition {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.recognition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.recognition-item {
    background-color: var(--primary-white);
    padding: 2rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.recognition-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.recognition-badge {
    background: linear-gradient(45deg, var(--primary-gold), var(--hover-gold));
    color: var(--primary-black);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.recognition-item h4 {
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.recognition-item p {
    color: var(--primary-gold);
    font-weight: 600;
    margin: 0;
}

.join-mission-cta {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
    text-align: center;
    color: var(--primary-white);
}

.join-mission-cta .cta-title {
    color: var(--primary-white);
}

.join-mission-cta .cta-description {
    color: var(--light-gray);
}

.cta-testimonial {
    margin-top: 3rem;
    background-color: var(--dark-gray);
    padding: 2rem;
    border-radius: 1.5rem;
    border-left: 4px solid var(--primary-gold);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-testimonial p {
    color: var(--light-gray);
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.cta-testimonial cite {
    color: var(--primary-gold);
    font-weight: 600;
    font-style: normal;
}

/* Enhanced contrast for join mission CTA section */
.join-mission-cta .cta-title {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7) !important;
}

.join-mission-cta .cta-description {
    color: rgba(245, 245, 245, 0.9) !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6) !important;
}

.cta-testimonial p {
    color: rgba(245, 245, 245, 0.9) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
}

.cta-testimonial cite {
    color: var(--primary-gold) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
}

/* ===== SPECIALIZATION SECTION ===== */
.specialization {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--primary-white), var(--light-gray));
}

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

.spec-card {
    background-color: var(--primary-white);
    border-radius: 2rem;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.spec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.spec-card.featured {
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, var(--primary-white) 0%, rgba(255, 215, 0, 0.05) 100%);
}

.spec-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.spec-header i {
    color: var(--primary-gold);
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.spec-header h3 {
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.spec-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(45deg, var(--primary-gold), var(--hover-gold));
    color: var(--primary-black);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(15deg);
}

.spec-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.spec-features li {
    color: #666;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid #eee;
}

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

.spec-features li:last-child {
    border-bottom: none;
}

/* ===== FRAMEWORK PAGES STYLES ===== */

/* Hero Framework Variant */
.hero--framework {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 50%, var(--primary-black) 100%);
    position: relative;
}

.hero--framework::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero__badge--framework {
    background: linear-gradient(45deg, var(--primary-gold), var(--hover-gold));
    color: var(--primary-black);
    border: 2px solid var(--primary-gold);
}

/* Framework Introduction Section */
.framework-intro {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--light-gray) 0%, var(--bg-white) 100%);
}

.framework-intro__header {
    text-align: center;
    margin-bottom: 4rem;
}

.framework-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.framework-step {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px var(--shadow-light);
    text-align: center;
    max-width: 350px;
    position: relative;
    transition: all var(--transition-smooth);
}

.framework-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.framework-step--active {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--hover-gold) 100%);
    color: var(--primary-black);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.3);
}

.framework-step__number {
    background: var(--primary-black);
    color: var(--primary-gold);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--primary-gold);
}

.framework-step--active .framework-step__number {
    background: var(--bg-white);
    color: var(--primary-black);
}

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

.framework-step__title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-black);
}

.framework-step--active .framework-step__title {
    color: var(--primary-black);
}

.framework-step__description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.framework-step__status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.1);
}

.framework-step--active .framework-step__status {
    background: rgba(255, 255, 255, 0.2);
}

.framework-arrow {
    font-size: 2rem;
    color: var(--primary-gold);
    opacity: 0.7;
}

@media (max-width: 768px) {
    .framework-flow {
        flex-direction: column;
        gap: 2rem;
    }
    
    .framework-arrow {
        transform: rotate(90deg);
    }
}

.framework-philosophy {
    background: var(--primary-black);
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
}

.framework-philosophy__quote blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--bg-white);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.framework-philosophy__quote i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.framework-philosophy__quote cite {
    color: var(--primary-gold);
    font-size: 1rem;
    font-weight: 600;
}

/* ROI Metrics for Framework Pages */
.roi-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.roi-metric {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-light);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all var(--transition-smooth);
}

.roi-metric:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px var(--shadow-medium);
}

.roi-metric__icon {
    background: linear-gradient(45deg, var(--primary-gold), var(--hover-gold));
    color: var(--primary-black);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.roi-metric__content {
    flex: 1;
}

.roi-metric__number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.roi-metric__label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 0.3rem;
}

.roi-metric__description {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
}

.framework-hero {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding-top: 6rem;
    position: relative;
    overflow: hidden;
}

.framework-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.framework-badge {
    background: linear-gradient(45deg, var(--primary-gold), var(--hover-gold));
    color: var(--primary-black);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    font-weight: 800;
    box-shadow: 0 20px 40px var(--shadow-dark);
}

.framework-number {
    font-size: 3rem;
    font-weight: 800;
}

.framework-title {
    color: var(--primary-white);
    font-size: clamp(4rem, 8vw, 6rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 0.2rem;
}

.framework-tagline {
    color: var(--primary-gold);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.framework-description {
    color: var(--light-gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.framework-navigation {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.framework-overview {
    padding: 8rem 0;
    background-color: var(--primary-white);
}

.framework-principles {
    margin-top: 3rem;
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-info {
    padding: 6rem 0;
    background: var(--light-gray);
}

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

.contact-card {
    background: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-light);
    text-align: center;
    transition: all var(--transition-smooth);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.contact-card__icon {
    background: linear-gradient(45deg, var(--primary-gold), var(--hover-gold));
    color: var(--primary-black);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.contact-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.contact-card__description {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-smooth);
}

.contact-link:hover {
    color: var(--hover-gold);
    transform: translateX(5px);
}

.contact-card__response,
.contact-card__hours,
.contact-card__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-address {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--primary-gold);
    font-weight: 600;
}

.contact-form-section {
    padding: 6rem 0;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 968px) {
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    color: var(--bg-white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--bg-white);
    font-size: 1rem;
    transition: all var(--transition-smooth);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(255, 255, 255, 0.1);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: #ff6b6b;
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.form-check {
    margin-top: 0.25rem;
    width: 20px;
    height: 20px;
}

.form-check-label {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    font-size: 0.9rem;
}

.btn--full {
    width: 100%;
}

.success-message {
    background: rgba(40, 167, 69, 0.2);
    border: 1px solid #28a745;
    color: #28a745;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.contact-form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-sidebar-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.contact-sidebar-title {
    color: var(--primary-gold);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-sidebar-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.contact-response-list {
    list-style: none;
    padding: 0;
}

.contact-response-list li {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-response-list li:last-child {
    border-bottom: none;
}

.faq-preview {
    padding: 6rem 0;
    background: var(--light-gray);
}

.principle-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--light-gray);
    border-radius: 1.5rem;
    transition: var(--transition);
}

.principle-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.principle-icon {
    background: linear-gradient(45deg, var(--primary-gold), var(--hover-gold));
    color: var(--primary-black);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.principle-content h4 {
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.principle-content p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.make-graphic {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
}

.graphic-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(45deg, var(--primary-gold), var(--hover-gold));
    color: var(--primary-black);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 10px 30px var(--shadow-dark);
}

.graphic-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    background-color: var(--dark-gray);
    color: var(--primary-white);
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.element.employment { top: 20px; left: 50%; transform: translateX(-50%); }
.element.business { right: 20px; top: 50%; transform: translateY(-50%); }
.element.skills { bottom: 20px; left: 50%; transform: translateX(-50%); }
.element.credit { left: 20px; top: 50%; transform: translateY(-50%); }

/* Enhanced contrast for make-graphic elements */
.make-graphic .element,
.element.employment,
.element.business,
.element.skills,
.element.credit {
    color: rgba(255, 255, 255, 0.95) !important;
    background-color: var(--dark-gray) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7) !important;
    font-weight: 600 !important;
    border: 1px solid rgba(255, 215, 0, 0.3) !important;
}

.graphic-center span {
    color: var(--primary-black) !important;
    text-shadow: none !important;
    font-weight: 800 !important;
}

.income-streams {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--light-gray), var(--primary-white));
}

.streams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.stream-card {
    background-color: var(--primary-white);
    border-radius: 2rem;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 2px solid transparent;
}

.stream-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stream-card.primary {
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, var(--primary-white) 0%, rgba(255, 215, 0, 0.05) 100%);
}

.stream-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.stream-header i {
    color: var(--primary-gold);
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

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

.stability-badge, .growth-badge, .passive-badge, .flexible-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.stability-badge { background-color: #e3f2fd; color: #1976d2; }
.growth-badge { background-color: #e8f5e8; color: #388e3c; }
.passive-badge { background-color: #fff3e0; color: #f57c00; }
.flexible-badge { background-color: #f3e5f5; color: #7b1fa2; }

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

.stream-features li {
    color: #666;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    border-bottom: 1px solid #eee;
}

.stream-features li:before {
    content: '•';
    color: var(--primary-gold);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.foundation-elements {
    padding: 8rem 0;
    background-color: var(--primary-black);
    color: var(--primary-white);
}

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

.foundation-elements .section-subtitle {
    color: var(--light-gray);
}

.elements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.element-card {
    background-color: var(--dark-gray);
    padding: 2.5rem;
    border-radius: 2rem;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
}

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

.element-number {
    position: absolute;
    top: -15px;
    right: 2rem;
    background: linear-gradient(45deg, var(--primary-gold), var(--hover-gold));
    color: var(--primary-black);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
}

.element-content h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.element-content p {
    color: var(--light-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.element-programs {
    color: var(--primary-gold);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Enhanced contrast for foundation elements section */
.foundation-elements .section-title {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7) !important;
}

.foundation-elements .section-subtitle {
    color: rgba(245, 245, 245, 0.9) !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6) !important;
}

.element-card .element-content h3 {
    color: var(--primary-gold) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
    font-weight: 700 !important;
}

.element-card .element-content p {
    color: rgba(245, 245, 245, 0.9) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4) !important;
}

.element-card .element-programs span {
    color: var(--primary-gold) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
    font-weight: 600 !important;
}

.element-number {
    background: linear-gradient(45deg, var(--primary-gold), var(--hover-gold)) !important;
    color: var(--primary-black) !important;
    text-shadow: none !important;
    font-weight: 800 !important;
}

/* FORCE WHITE TEXT for specific titles on MAKE page */
.foundation-elements .section-title,
.foundation-elements h2,
section.foundation-elements .section-title {
    color: #FFFFFF !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
    -webkit-text-fill-color: #FFFFFF !important;
}

.element-card h3,
.element-content h3,
section.foundation-elements h3 {
    color: #FFFFFF !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7) !important;
    -webkit-text-fill-color: #FFFFFF !important;
    font-weight: 700 !important;
}

/* FORCE WHITE TEXT for "Ready to Move to MANAGE?" section */
.next-phase-cta .cta-title,
.next-phase-cta h2,
section.next-phase-cta h2 {
    color: #FFFFFF !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
    -webkit-text-fill-color: #FFFFFF !important;
    font-weight: 800 !important;
}

.next-phase-cta .cta-description,
.next-phase-cta p,
section.next-phase-cta p {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6) !important;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.9) !important;
}

.action-steps {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--light-gray), var(--primary-white));
}

.steps-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-gold), var(--hover-gold));
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 5rem;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(45deg, var(--primary-gold), var(--hover-gold));
    color: var(--primary-black);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 5px 15px var(--shadow-gold);
}

.timeline-content {
    background-color: var(--primary-white);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--primary-gold);
}

.timeline-content h4 {
    color: var(--primary-black);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.timeline-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.timeline-duration {
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 0.9rem;
}

.next-phase-cta {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
    text-align: center;
    color: var(--primary-white);
}

.next-phase-cta .cta-title {
    color: var(--primary-white);
}

.next-phase-cta .cta-description {
    color: var(--light-gray);
}

.phase-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 3rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.phase-prev, .phase-next {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.phase-label {
    color: var(--light-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.phase-note {
    color: var(--primary-gold);
    font-weight: 600;
}

.phase-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--primary-white);
    background-color: var(--dark-gray);
    padding: 1.5rem;
    border-radius: 1.5rem;
    transition: var(--transition);
    border: 2px solid transparent;
}

.phase-link:hover {
    border-color: var(--primary-gold);
    transform: translateY(-3px);
}

.phase-number {
    background: linear-gradient(45deg, var(--primary-gold), var(--hover-gold));
    color: var(--primary-black);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.phase-name {
    color: var(--primary-gold);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.phase-desc {
    color: var(--light-gray);
    font-size: 0.9rem;
}

/* Framework Pages Responsive */

/* Tablets (769px - 1199px) */
@media (max-width: 1199px) and (min-width: 769px) {
    .framework-hero {
        min-height: 65vh;
        padding-top: 5rem;
    }
    
    .framework-title {
        font-size: 4rem;
    }
    
    .framework-tagline {
        font-size: 1.6rem;
    }
    
    .streams-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .elements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .make-graphic {
        width: 280px;
        height: 280px;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    .framework-hero {
        min-height: 60vh;
        padding-top: 4rem;
    }
    
    .framework-title {
        font-size: 3rem;
    }
    
    .framework-tagline {
        font-size: 1.3rem;
    }
    
    .framework-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .framework-navigation {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .make-graphic {
        width: 250px;
        height: 250px;
    }
    
    .streams-grid {
        grid-template-columns: 1fr;
    }
    
    .stream-card {
        padding: 2rem 1.5rem;
    }
    
    .elements-grid {
        grid-template-columns: 1fr;
    }
    
    .element-card {
        padding: 2rem 1.5rem;
    }
    
    .steps-timeline::before {
        display: none;
    }
    
    .timeline-item {
        padding-left: 0;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .timeline-marker {
        position: relative;
        margin: 0 auto 1rem;
    }
    
    .timeline-content {
        text-align: left;
    }
    
    .phase-navigation {
        flex-direction: column;
        gap: 2rem;
    }
    
    .phase-link {
        padding: 2rem;
        width: 100%;
        max-width: 300px;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .framework-hero {
        min-height: 50vh;
        padding-top: 3rem;
    }
    
    .framework-badge {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .framework-title {
        font-size: 2.5rem;
    }
    
    .framework-tagline {
        font-size: 1.2rem;
    }
    
    .make-graphic {
        width: 200px;
        height: 200px;
    }
    
    .graphic-center {
        width: 100px;
        height: 100px;
        font-size: 1.2rem;
    }
    
    .element {
        font-size: 0.8rem;
        padding: 0.75rem 1rem;
    }
    
    .stream-card {
        padding: 1.5rem;
    }
    
    .stream-header i {
        font-size: 2rem;
    }
    
    .element-card {
        padding: 1.5rem;
    }
    
    .element-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        top: -10px;
        right: 1.5rem;
    }
    
    .timeline-marker {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .phase-link {
        padding: 1.5rem;
    }
    
    .phase-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* About Page Responsive */

/* Tablets (769px - 1199px) */
@media (max-width: 1199px) and (min-width: 769px) {
    .about-title {
        font-size: 3rem;
    }
    
    .about-subtitle {
        font-size: 1.2rem;
    }
    
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .recognition-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    .about-hero {
        min-height: 60vh;
        padding-top: 4rem;
    }
    
    .about-hero .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .mission-badge {
        padding: 1.5rem;
        transform: rotate(0deg);
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    .stat-card {
        flex: 1;
        min-width: 140px;
        max-width: 180px;
        padding: 1.5rem;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .recognition-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .recognition-item {
        padding: 1.5rem;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .about-hero {
        min-height: 50vh;
        padding-top: 3rem;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
    
    .about-subtitle {
        font-size: 1rem;
    }
    
    .mission-badge {
        padding: 1.25rem;
    }
    
    .mission-badge i {
        font-size: 2rem;
    }
    
    .story-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-card {
        width: 100%;
        max-width: 250px;
        padding: 1.25rem;
    }
    
    .stat-card .stat-number {
        font-size: 2rem;
    }
    
    .approach-item {
        padding: 1.25rem;
    }
    
    .approach-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .recognition-grid {
        grid-template-columns: 1fr;
    }
    
    .recognition-badge {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .cta-testimonial {
        padding: 1.5rem;
        margin-top: 2rem;
    }
}

/* Program Pages Responsive */

/* Tablets (769px - 1199px) */
@media (max-width: 1199px) and (min-width: 769px) {
    .program-hero {
        min-height: 65vh;
        padding-top: 5rem;
    }
    
    .program-title {
        font-size: 3.5rem;
    }
    
    .program-tagline {
        font-size: 1.4rem;
    }
    
    .program-description {
        font-size: 1.1rem;
    }
    
    .curriculum-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .specialization-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .spec-card.featured {
        grid-column: span 2;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    .program-hero {
        min-height: 60vh;
        padding-top: 4rem;
    }
    
    .program-title {
        font-size: 2.5rem;
    }
    
    .program-tagline {
        font-size: 1.2rem;
    }
    
    .program-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        padding: 0 1rem;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .program-stats {
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .stat-item {
        min-width: 120px;
    }
    
    .curriculum-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .module-card {
        padding: 2rem 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .benefit-item {
        padding: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .specialization-grid {
        grid-template-columns: 1fr;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .program-hero {
        min-height: 50vh;
        padding-top: 3rem;
    }
    
    .program-title {
        font-size: 2rem;
    }
    
    .program-tagline {
        font-size: 1.1rem;
    }
    
    .program-badge {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .program-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .stat-item {
        text-align: center;
        min-width: auto;
    }
    
    .module-card {
        padding: 1.5rem;
    }
    
    .module-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        top: -15px;
        right: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-item {
        padding: 1.5rem;
        text-align: center;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-guarantee {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .spec-card {
        padding: 2rem 1.5rem;
    }
    
    .spec-badge {
        position: static;
        transform: none;
        margin-bottom: 1rem;
        display: inline-block;
    }
}

/* ===== ACCESSIBILITY IMPROVEMENTS ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== LEGAL PAGES STYLES ===== */
.terms-content {
    max-width: 900px;
    margin: 0 auto;
}

.terms-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: var(--light-gray);
    border-radius: 1.5rem;
    border-left: 4px solid var(--primary-gold);
}

.terms-section h2 {
    color: var(--primary-black);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--primary-gold);
    padding-bottom: 0.5rem;
}

.terms-section h3 {
    color: var(--primary-black);
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
}

.terms-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.terms-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.terms-list li {
    color: #666;
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
    border-bottom: 1px solid #ddd;
}

.terms-list li:before {
    content: '▶';
    color: var(--primary-gold);
    font-weight: bold;
    position: absolute;
    left: 0.5rem;
    font-size: 0.8rem;
}

.terms-list li:last-child {
    border-bottom: none;
}

.contact-info {
    background-color: var(--primary-white);
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid var(--primary-gold);
    margin: 2rem 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: var(--primary-black);
}

.contact-info p:first-child {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.last-updated {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(45deg, var(--primary-gold), var(--hover-gold));
    color: var(--primary-black);
    border-radius: 1.5rem;
    margin-top: 3rem;
}

.last-updated p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

/* ===== LOGIN BUTTON STYLES ===== */
.login-button {
    background-color: var(--primary-gold) !important;
    color: var(--primary-black) !important;
    margin-right: 1rem;
    border: 2px solid var(--primary-gold);
    position: relative;
    overflow: hidden;
}

.login-button:hover {
    background-color: var(--primary-black) !important;
    color: var(--primary-gold) !important;
    border-color: var(--primary-gold);
    transform: translateY(-2px);
}

.login-button i {
    margin-right: 0.5rem;
}

.login-btn {
    background: linear-gradient(45deg, var(--primary-gold), var(--hover-gold)) !important;
    color: var(--primary-black) !important;
    border-color: var(--primary-gold);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.login-btn:hover {
    background: linear-gradient(45deg, var(--primary-black), var(--dark-gray)) !important;
    color: var(--primary-gold) !important;
    border-color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-gold);
}

.login-btn i {
    margin-right: 0.5rem;
    font-size: 1rem;
}

/* Navigation CTA Updates for Multiple Buttons */
.nav-cta {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

/* Responsive Login Button Styles */
@media (max-width: 768px) {
    .nav-cta {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
    
    .login-button {
        margin-right: 0;
        width: 100%;
        text-align: center;
        order: 1;
    }
    
    .cta-button:not(.login-button) {
        width: 100%;
        text-align: center;
        order: 2;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .login-button, .login-btn {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }
    
    .login-button i, .login-btn i {
        font-size: 0.9rem;
    }
}

/* ===== FOUNDERS SECTION ===== */
.founders-section {
    padding: 8rem 0;
    background-color: var(--primary-white);
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
    margin: 4rem 0;
}

.founder-card {
    background-color: var(--light-gray);
    border-radius: 2rem;
    padding: 3rem;
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.founder-card.antonio {
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(255, 215, 0, 0.05) 100%);
}

.founder-card.tashia {
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(255, 215, 0, 0.03) 100%);
}

.founder-image {
    position: relative;
    text-align: center;
    margin-bottom: 2rem;
}

.founder-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.founder-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

/* Tashia's photo now uses the same styling as Antonio's - no custom scaling needed */

.founder-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--dark-gray), var(--primary-black));
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin: 0 auto;
    border: 4px solid var(--primary-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.founder-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(45deg, var(--primary-gold), var(--hover-gold));
    color: var(--primary-black);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

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

.founder-name {
    color: var(--primary-black);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.founder-title {
    color: var(--primary-gold);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.founder-bio {
    color: #666;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: left;
}

.founder-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.expertise-tag {
    background-color: var(--primary-gold);
    color: var(--primary-black);
    padding: 0.5rem 1rem;
    border-radius: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}

.expertise-tag:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.founders-mission {
    margin-top: 4rem;
    text-align: center;
}

.founders-mission .mission-quote {
    background: linear-gradient(45deg, var(--primary-black), var(--dark-gray));
    color: var(--primary-white);
    padding: 3rem;
    border-radius: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
    font-style: italic;
    position: relative;
    border-left: 4px solid var(--primary-gold);
    max-width: 800px;
    margin: 0 auto;
}

.founders-mission .mission-quote::before {
    content: '"';
    font-size: 6rem;
    color: var(--primary-gold);
    position: absolute;
    top: -1rem;
    left: 2rem;
    opacity: 0.3;
}

/* Enhanced contrast for mission quote */
.founders-mission .mission-quote {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7) !important;
    font-weight: 600 !important;
}

.founders-mission .mission-quote::before {
    color: var(--primary-gold) !important;
}

/* Vision Section */
.vision-section {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--light-gray), var(--primary-white));
}

.vision-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.vision-header {
    margin-bottom: 3rem;
}

.vision-text {
    margin-bottom: 4rem;
}

.vision-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: left;
}

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

/* Founders Responsive */
@media (max-width: 768px) {
    .founders-section {
        padding: 6rem 0;
    }
    
    .founders-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin: 3rem 0;
    }
    
    .founder-card {
        padding: 2rem;
    }
    
    .founder-photo, .founder-placeholder {
        width: 150px;
        height: 150px;
    }
    
    .founder-placeholder {
        font-size: 3rem;
    }
    

    
    .founder-name {
        font-size: 1.5rem;
    }
    
    .founder-bio {
        text-align: center;
        font-size: 0.95rem;
    }
    
    .founders-mission .mission-quote {
        padding: 2rem;
        font-size: 1.3rem;
    }
    
    .founders-mission .mission-quote::before {
        font-size: 4rem;
        top: -0.5rem;
        left: 1rem;
    }
    
    .vision-text p {
        text-align: center;
    }
    
    .vision-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .founder-card {
        padding: 1.5rem;
    }
    
    .founder-photo, .founder-placeholder {
        width: 120px;
        height: 120px;
    }
    
    .founder-placeholder {
        font-size: 2.5rem;
    }
    

    
    .founder-name {
        font-size: 1.3rem;
    }
    
    .founder-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        right: 10px;
    }
    
    .expertise-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .founders-mission .mission-quote {
        padding: 1.5rem;
        font-size: 1.2rem;
    }
    
    .vision-stats {
        grid-template-columns: 1fr;
    }
}

/* ===== CUSTOMER LOGIN SECTION ===== */
.customer-login {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
    position: relative;
    overflow: hidden;
}

.customer-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.login-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.login-header {
    margin-bottom: 4rem;
}

.login-icon {
    background: linear-gradient(45deg, var(--primary-gold), var(--hover-gold));
    color: var(--primary-black);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    box-shadow: 0 20px 40px var(--shadow-dark);
}

.login-title {
    color: var(--primary-white);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 0.1rem;
}

.login-subtitle {
    color: var(--light-gray);
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.login-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.login-features .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1rem;
    background-color: var(--dark-gray);
    border-radius: 1.5rem;
    transition: var(--transition);
    border: 2px solid transparent;
}

.login-features .feature-item:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    background-color: rgba(255, 215, 0, 0.1);
}

.login-features .feature-item i {
    color: var(--primary-gold);
    font-size: 2rem;
    background-color: rgba(255, 215, 0, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-features .feature-item span {
    color: var(--primary-white) !important;
    font-weight: 600;
    text-align: center;
}

.login-cta {
    margin-top: 4rem;
}

.login-portal-btn {
    background: linear-gradient(45deg, var(--primary-gold), var(--hover-gold)) !important;
    color: var(--primary-black) !important;
    font-size: 1.3rem;
    padding: 1.5rem 3rem;
    margin-bottom: 2rem;
    border: 3px solid var(--primary-gold);
    box-shadow: 0 10px 30px var(--shadow-gold);
}

.login-portal-btn:hover {
    background: linear-gradient(45deg, var(--primary-white), var(--light-gray)) !important;
    color: var(--primary-black) !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--shadow-gold);
}

.login-portal-btn i {
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.login-help {
    color: var(--light-gray);
    margin-top: 2rem;
    font-size: 1rem;
}

.login-help a {
    text-decoration: none;
    transition: var(--transition);
}

.login-help a:hover {
    text-shadow: 0 0 10px var(--primary-gold);
}

/* Customer Login Responsive */
@media (max-width: 768px) {
    .customer-login {
        padding: 6rem 0;
    }
    
    .login-title {
        font-size: 2rem;
    }
    
    .login-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .login-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin: 3rem 0;
    }
    
    .login-features .feature-item {
        padding: 1.5rem 1rem;
    }
    
    .login-portal-btn {
        width: 100%;
        max-width: 320px;
        font-size: 1.2rem;
        padding: 1.25rem 2rem;
    }
}

@media (max-width: 480px) {
    .login-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .login-title {
        font-size: 1.8rem;
    }
    
    .login-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .login-features .feature-item {
        padding: 1.25rem;
    }
    
    .login-features .feature-item i {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .login-portal-btn {
        font-size: 1.1rem;
        padding: 1rem 1.5rem;
    }
}

/* Legal Pages Responsive */
@media (max-width: 768px) {
    .terms-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .terms-section h2 {
        font-size: 1.5rem;
    }
    
    .terms-section h3 {
        font-size: 1.2rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .terms-section {
        padding: 1.25rem;
    }
    
    .terms-section h2 {
        font-size: 1.3rem;
    }
    
    .terms-list li {
        padding-left: 1.5rem;
    }
    
    .contact-info {
        padding: 1.25rem;
    }
}

/* Focus states for accessibility */
.btn:focus,
.nav-link:focus,
.cta-button:focus,
.social-link:focus {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
}

/* ===== ENHANCED TEXT READABILITY WITH BRIGHT IMAGES ===== */

/* Light overlay for video backgrounds while maintaining brightness */
.hero__bg video + .hero__overlay {
    background: linear-gradient(
        135deg,
        rgba(255, 215, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.25) 30%,
        rgba(0, 0, 0, 0.2) 70%,
        rgba(255, 215, 0, 0.12) 100%
    ) !important;
    z-index: 5 !important;
}

/* Video brightness enhancement instead of darkening */
.hero__bg.video-bg video {
    opacity: 1 !important;
    filter: brightness(1.25) contrast(1.15) saturate(1.1) !important;
}

/* Light overlay for program page videos */
.program-hero .hero__bg video + .hero__overlay {
    background: linear-gradient(
        135deg,
        rgba(255, 215, 0, 0.18) 0%,
        rgba(0, 0, 0, 0.3) 30%,
        rgba(0, 0, 0, 0.25) 70%,
        rgba(255, 215, 0, 0.15) 100%
    ) !important;
}

/* Text enhancement with subtle backgrounds for readability */
.hero .hero-content,
.program-hero .hero-content,
.hero .hero-container > * {
    position: relative;
    z-index: 15 !important;
}

/* Optimized text shadows for bright backgrounds */
.hero .hero-title,
.hero .program-title,
.program-hero .program-title {
    text-shadow: 
        2px 2px 5px rgba(0, 0, 0, 0.8),
        0 0 12px rgba(0, 0, 0, 0.6),
        1px 1px 3px rgba(0, 0, 0, 0.9) !important;
    font-weight: 800 !important;
}

.hero .hero-subtitle,
.hero .program-tagline,
.program-hero .program-tagline {
    text-shadow: 
        1px 1px 4px rgba(0, 0, 0, 0.8),
        0 0 8px rgba(0, 0, 0, 0.6),
        1px 1px 2px rgba(0, 0, 0, 0.9) !important;
    font-weight: 700 !important;
}

/* Light button containers for better visibility */
.hero .hero-buttons,
.program-hero .hero-buttons {
    position: relative;
    z-index: 16 !important;
    padding: 15px 20px !important;
    background: rgba(0, 0, 0, 0.25) !important;
    border-radius: 12px !important;
    backdrop-filter: blur(4px) !important;
}

/* Framework hero specific light enhancements */
.hero--framework .hero__title,
.hero--framework .hero__subtitle,
.hero--framework .hero__description {
    color: var(--primary-white) !important;
    text-shadow: 
        2px 2px 5px rgba(0, 0, 0, 0.8),
        0 0 10px rgba(0, 0, 0, 0.6),
        1px 1px 3px rgba(0, 0, 0, 0.9) !important;
}

.hero--framework .hero__badge {
    background: rgba(0, 0, 0, 0.4) !important;
    border: 2px solid var(--primary-gold) !important;
    box-shadow: 
        0 0 15px rgba(255, 215, 0, 0.5),
        inset 0 0 8px rgba(255, 215, 0, 0.2) !important;
}

/* ===== COMPREHENSIVE WHITE TEXT ENFORCEMENT FOR ALL HERO SECTIONS ===== */

/* Program Hero Pages - All text should be white */
.program-hero *,
.program-hero h1,
.program-hero h2,
.program-hero h3,
.program-hero h4,
.program-hero p,
.program-hero span,
.program-hero div {
    color: var(--primary-white) !important;
}

/* Program titles and taglines - preserve gold accent */
.program-hero .program-tagline,
.hero .hero-tagline,
.hero--framework .hero__subtitle {
    color: var(--primary-gold) !important;
}

/* Framework Hero Pages - All text should be white */
.hero--framework *,
.hero--framework h1,
.hero--framework h2,
.hero--framework h3,
.hero--framework h4,
.hero--framework p,
.hero--framework span,
.hero--framework div {
    color: var(--primary-white) !important;
}

/* About page hero - All text should be white */
.about-hero *,
.about-hero h1,
.about-hero h2,
.about-hero h3,
.about-hero h4,
.about-hero p,
.about-hero span,
.about-hero div {
    color: var(--primary-white) !important;
}

/* Legal pages with hero sections - All text should be white */
.terms-hero *,
.privacy-hero *,
.terms-hero h1,
.terms-hero h2,
.terms-hero h3,
.terms-hero h4,
.terms-hero p,
.terms-hero span,
.terms-hero div,
.privacy-hero h1,
.privacy-hero h2,
.privacy-hero h3,
.privacy-hero h4,
.privacy-hero p,
.privacy-hero span,
.privacy-hero div {
    color: var(--primary-white) !important;
}

/* Contact hero - All text should be white */
.contact-hero *,
.contact-hero h1,
.contact-hero h2,
.contact-hero h3,
.contact-hero h4,
.contact-hero p,
.contact-hero span,
.contact-hero div {
    color: var(--primary-white) !important;
}

/* ===== MOBILE SPECIFIC BRIGHT BACKGROUND ADJUSTMENTS ===== */

@media (max-width: 768px) {
    /* Maintain bright images with minimal overlays on mobile */
    .hero__overlay {
        background: linear-gradient(
            135deg,
            rgba(255, 215, 0, 0.12) 0%,
            rgba(0, 0, 0, 0.3) 30%,
            rgba(0, 0, 0, 0.25) 70%,
            rgba(255, 215, 0, 0.1) 100%
        ) !important;
    }
    
    .program-hero .hero__overlay {
        background: linear-gradient(
            135deg,
            rgba(255, 215, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.35) 30%,
            rgba(0, 0, 0, 0.3) 70%,
            rgba(255, 215, 0, 0.12) 100%
        ) !important;
    }
    
    /* Enhanced text shadows on mobile with subtle backgrounds */
    .hero .hero-title,
    .hero .program-title,
    .program-hero .program-title,
    .hero--framework .hero__title {
        text-shadow: 
            3px 3px 7px rgba(0, 0, 0, 0.9),
            0 0 15px rgba(0, 0, 0, 0.7),
            2px 2px 5px rgba(0, 0, 0, 1) !important;
        background: rgba(0, 0, 0, 0.3) !important;
        padding: 12px 18px !important;
        border-radius: 8px !important;
        margin-bottom: 15px !important;
    }
    
    .hero .hero-description,
    .hero .program-description,
    .program-hero .program-description,
    .hero--framework .hero__description {
        background: rgba(0, 0, 0, 0.35) !important;
        padding: 15px 20px !important;
        border-radius: 12px !important;
        border: 1px solid rgba(255, 215, 0, 0.3) !important;
    }
    
    /* Mobile button enhancements */
    .hero .hero-buttons,
    .program-hero .hero-buttons {
        background: rgba(0, 0, 0, 0.3) !important;
        padding: 20px !important;
        border-radius: 15px !important;
        border: 1px solid rgba(255, 215, 0, 0.4) !important;
    }
}

@media (max-width: 480px) {
    /* Slightly stronger contrast for very small screens while keeping brightness */
    .hero__overlay {
        background: linear-gradient(
            135deg,
            rgba(255, 215, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(255, 215, 0, 0.12) 100%
        ) !important;
    }
    
    .program-hero .hero__overlay {
        background: linear-gradient(
            135deg,
            rgba(255, 215, 0, 0.18) 0%,
            rgba(0, 0, 0, 0.45) 50%,
            rgba(255, 215, 0, 0.15) 100%
        ) !important;
    }
    
    /* Slightly enhanced text backgrounds for small screens */
    .hero .hero-title,
    .hero .program-title,
    .program-hero .program-title {
        background: rgba(0, 0, 0, 0.4) !important;
        padding: 15px 20px !important;
        border-radius: 12px !important;
        border: 1px solid rgba(255, 215, 0, 0.4) !important;
    }
}

/* ===== TRADELINE PAGE SPECIFIC STYLES ===== */

/* Tradeline Hero Section */
.hero--tradelines {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 8rem; /* Extra padding to ensure content is visible below navbar */
    padding-bottom: 4rem;
}

.hero--tradelines .hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    margin-top: 80px !important; /* Push background down to avoid navbar overlap */
    padding-top: 40px !important;
}

.hero--tradelines .hero__content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding-top: 2rem;
}

.hero--tradelines .hero__title {
    color: var(--primary-white) !important;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 
        2px 2px 5px rgba(0, 0, 0, 0.8),
        0 0 12px rgba(0, 0, 0, 0.6),
        1px 1px 3px rgba(0, 0, 0, 0.9) !important;
    line-height: 1.2;
}

.hero--tradelines .hero__subtitle {
    color: var(--accent-gold) !important;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 
        1px 1px 4px rgba(0, 0, 0, 0.8),
        0 0 8px rgba(0, 0, 0, 0.6) !important;
}

.hero--tradelines .hero__description {
    color: var(--primary-white) !important;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7) !important;
}

.hero--tradelines .hero__badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero--tradelines .badge {
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid var(--accent-gold);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    color: var(--primary-white) !important;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7) !important;
}

.hero--tradelines .badge i {
    color: var(--accent-gold) !important;
    font-size: 1.2rem;
}

/* Tradeline sections styling */
.section--tradelines {
    background: var(--primary-white);
    color: var(--primary-black);
}

.section--what-are-tradelines,
.section--au-tradelines,
.section--primary-tradelines,
.section--business-tradelines,
.section--packages,
.section--process,
.section--faq {
    padding: 4rem 0;
}

.section--what-are-tradelines {
    background: #f8f9fa;
}

.section--business-tradelines {
    background: #f8f9fa;
}

.section--process {
    background: var(--primary-black);
    color: var(--primary-white);
}

/* White text enforcement with shadows for process section */
.section--process,
.section--process * {
    color: var(--primary-white) !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6), 0 0 6px rgba(0, 0, 0, 0.4) !important;
}

.section--process h1,
.section--process h2,
.section--process h3,
.section--process h4 {
    color: var(--primary-white) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 8px rgba(0, 0, 0, 0.6) !important;
    font-weight: 600 !important;
}

.section--cta {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--dark-gray) 100%);
    color: var(--primary-white);
    padding: 5rem 0;
}

/* White text enforcement with shadows for CTA section */
.section--cta,
.section--cta * {
    color: var(--primary-white) !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6), 0 0 6px rgba(0, 0, 0, 0.4) !important;
}

.section--cta h1,
.section--cta h2,
.section--cta h3,
.section--cta h4 {
    color: var(--primary-white) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 8px rgba(0, 0, 0, 0.6) !important;
    font-weight: 600 !important;
}

/* ===== GOOGLE REVIEWS SECTION ===== */
.google-reviews-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
    position: relative;
    color: #2c2c2c !important;
}

.google-reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23f0f0f0" fill-opacity="0.3"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>') repeat;
    opacity: 0.1;
    z-index: 0;
}

.google-reviews-section .container {
    position: relative;
    z-index: 1;
}

.google-reviews-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.google-reviews-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c2c2c !important;
    margin-bottom: 1rem;
}

.google-reviews-section .section-header p {
    font-size: 1.2rem;
    color: #6b7280 !important;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.rating-stars {
    display: flex;
    gap: 0.25rem;
}

.rating-stars i {
    color: #fbbf24;
    font-size: 1.5rem;
}

.rating-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-score {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c2c2c !important;
}

.rating-text {
    color: #6b7280 !important;
    font-weight: 500;
}

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

.review-card {
    background: var(--primary-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), #f59e0b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 1.5rem;
    overflow: hidden;
}

.reviewer-avatar--image {
    background: none;
    padding: 0;
}

.reviewer-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.reviewer-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c2c2c !important;
    margin-bottom: 0.5rem;
}

.review-stars {
    display: flex;
    gap: 0.2rem;
}

.review-stars i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.google-icon {
    color: #4285f4;
    font-size: 1.5rem;
}

.review-content {
    margin-bottom: 1.5rem;
}

.review-content p {
    color: #6b7280 !important;
    line-height: 1.6;
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
}

.review-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 2rem;
    color: var(--primary-gold);
    font-family: Georgia, serif;
}

.review-date {
    text-align: right;
}

.review-date span {
    color: #9ca3af !important;
    font-size: 0.9rem;
    font-weight: 500;
}

.reviews-cta {
    text-align: center;
    margin-top: 3rem;
}

.reviews-cta p {
    font-size: 1.1rem;
    color: #6b7280 !important;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.reviews-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reviews-cta .btn i {
    font-size: 1.1rem;
}

/* Mobile Responsive for Google Reviews */
@media (max-width: 768px) {
    .google-reviews-section {
        padding: 3rem 0 !important;
        background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%) !important;
    }
    
    .google-reviews-section .section-header h2 {
        font-size: 2rem !important;
        color: #2c2c2c !important;
    }
    
    .google-reviews-section .section-header p {
        font-size: 1rem !important;
        color: #6b7280 !important;
        padding: 0 1rem !important;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 !important;
    }
    
    .review-card {
        padding: 1.5rem !important;
        margin: 0 1rem !important;
        background: #ffffff !important;
        border: 1px solid rgba(0, 0, 0, 0.05) !important;
    }

    .review-card .reviewer-name {
        color: #2c2c2c !important;
        font-size: 1rem !important;
    }

    .review-card .review-content p {
        color: #6b7280 !important;
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }

    .review-card .review-date span {
        color: #9ca3af !important;
        font-size: 0.8rem !important;
    }
    
    .google-rating {
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
    
    .rating-info {
        justify-content: center !important;
    }

    .rating-score {
        color: #2c2c2c !important;
    }

    .rating-text {
        color: #6b7280 !important;
    }

    .rating-stars i,
    .review-stars i {
        color: #fbbf24 !important;
    }

    .google-icon {
        color: #4285f4 !important;
    }

    .reviews-cta {
        padding: 0 1rem !important;
    }

    .reviews-cta p {
        color: #6b7280 !important;
    }
}

/* Force proper text colors in Google Reviews section */
.google-reviews-section,
.google-reviews-section * {
    color: #2c2c2c !important;
}

.google-reviews-section h1,
.google-reviews-section h2,
.google-reviews-section h3,
.google-reviews-section h4 {
    color: #2c2c2c !important;
    font-weight: 700 !important;
}

.google-reviews-section p {
    color: #6b7280 !important;
}

.google-reviews-section .review-content p {
    color: #6b7280 !important;
    font-style: italic !important;
}

.google-reviews-section .review-date span {
    color: #9ca3af !important;
}

.google-reviews-section .rating-stars i,
.google-reviews-section .review-stars i {
    color: #fbbf24 !important;
}

.google-reviews-section .google-icon {
    color: #4285f4 !important;
}

.google-reviews-section .review-card {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

/* Updated CTA styling for no-pricing layout */
.cta-value {
    text-align: center;
    margin: 1.5rem 0;
}

.cta-value__statement {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.cta-value__label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-gray);
}

.cta-value__description {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-gold);
}

.cta-benefits {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    margin-top: 1rem;
}

.cta-benefits i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.cta-benefits span {
    font-weight: 600;
    color: var(--primary-black);
}

/* Mobile adjustments for tradeline hero */
@media (max-width: 768px) {
    .hero--tradelines {
        padding-top: 6rem;
        min-height: 70vh;
    }
    
    .hero--tradelines .hero__title {
        font-size: 2.5rem;
        background: rgba(0, 0, 0, 0.3) !important;
        padding: 15px 20px !important;
        border-radius: 12px !important;
        margin-bottom: 1rem;
    }
    
    .hero--tradelines .hero__subtitle {
        font-size: 1.4rem;
    }
    
    .hero--tradelines .hero__description {
        font-size: 1.1rem;
        background: rgba(0, 0, 0, 0.25) !important;
        padding: 15px 20px !important;
        border-radius: 12px !important;
        margin-bottom: 1.5rem;
    }
    
    .hero--tradelines .hero__badges {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .hero--tradelines .badge {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero--tradelines .hero__title {
        font-size: 2rem;
        padding: 12px 16px !important;
    }
    
    .hero--tradelines .hero__subtitle {
        font-size: 1.2rem;
    }
    
    .hero--tradelines .hero__badges {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
}

/* ===== AU TRADELINES SECTION STYLES ===== */

.section--au-tradelines {
    padding: 5rem 0;
    background: var(--primary-white);
}

.section--au-tradelines .section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.au-intro {
    margin-bottom: 4rem;
}

.content-block--large {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.content-block--large p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.au-benefits {
    margin-bottom: 4rem;
}

.au-benefits h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-black);
    margin-bottom: 2rem;
}

.au-build-program {
    margin-bottom: 4rem;
    padding: 3rem 0;
    background: #f8f9fa;
    border-radius: 15px;
}

.program-link {
    margin-top: 1.5rem;
}

.compliance-badges {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.compliance-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    background: var(--primary-gold);
    color: var(--primary-black);
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.compliance-badge i {
    font-size: 1rem;
}

.au-vs-primary {
    margin-top: 4rem;
}

.au-vs-primary h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-black);
    margin-bottom: 2rem;
}

.comparison-table {
    background: var(--primary-white);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-top: 2rem;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #e9ecef;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row--header {
    background: var(--primary-black);
    color: var(--primary-white);
}

.comparison-row--header .comparison-cell {
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-cell {
    padding: 1.5rem;
    text-align: center;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.comparison-cell i {
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.comparison-row:nth-child(even):not(.comparison-row--header) {
    background: #f8f9fa;
}

/* Mobile responsiveness for AU section */
@media (max-width: 768px) {
    .section--au-tradelines {
        padding: 3rem 0;
    }
    
    .content-block--large p {
        font-size: 1rem;
        text-align: left;
    }
    
    .au-benefits h3,
    .au-vs-primary h3 {
        font-size: 1.6rem;
    }
    
    .compliance-badges {
        justify-content: center;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-cell {
        padding: 1rem 0.5rem;
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-cell {
        border-bottom: 1px solid #e9ecef;
        text-align: left;
        justify-content: flex-start;
        flex-direction: row;
    }
    
    .comparison-row--header .comparison-cell {
        background: var(--primary-gold);
        color: var(--primary-black);
        font-size: 1rem;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .au-build-program {
        padding: 2rem 1rem;
    }
    
    .compliance-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .compliance-badge {
        justify-content: center;
    }
}

/* ===== MOTION AND ANIMATION STYLES ===== */

/* Floating Elements in Hero */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    color: rgba(255, 215, 0, 0.3);
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.floating-element--1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element--2 {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
}

.floating-element--3 {
    top: 60%;
    left: 20%;
    animation-delay: 2s;
}

.floating-element--4 {
    top: 40%;
    right: 25%;
    animation-delay: 3s;
}

.floating-element--5 {
    top: 70%;
    right: 10%;
    animation-delay: 4s;
}

.floating-element--6 {
    top: 80%;
    left: 60%;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }
}

/* Animated Grid Pattern */
.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 215, 0, 0.2) 50%, transparent 100%);
}

.grid-line--horizontal {
    width: 100%;
    height: 2px;
    animation: slideRight 8s linear infinite;
}

.grid-line--vertical {
    width: 2px;
    height: 100%;
    background: linear-gradient(0deg, transparent 0%, rgba(255, 215, 0, 0.2) 50%, transparent 100%);
    animation: slideUp 6s linear infinite;
}

.grid-line--delay-1 {
    animation-delay: 2s;
}

.grid-line--delay-2 {
    animation-delay: 4s;
}

.grid-line:nth-child(1) { top: 20%; }
.grid-line:nth-child(2) { top: 50%; }
.grid-line:nth-child(3) { top: 80%; }
.grid-line:nth-child(4) { left: 20%; }
.grid-line:nth-child(5) { left: 50%; }
.grid-line:nth-child(6) { left: 80%; }

@keyframes slideRight {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100%);
        opacity: 0;
    }
}

/* Scroll-triggered Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll[data-animation="fadeInUp"].animated {
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-on-scroll[data-animation="slideInLeft"].animated {
    animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-on-scroll[data-animation="slideInRight"].animated {
    animation: slideInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-on-scroll[data-animation="scaleIn"].animated {
    animation: scaleIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Button Animations */
.btn-animated {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-animated:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-animated:hover:before {
    left: 100%;
}

.btn-animated:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-animated span {
    position: relative;
    z-index: 2;
}

.btn-animated i {
    transition: transform 0.3s ease;
    margin-left: 0.5rem;
}

.btn-animated:hover i {
    transform: translateX(5px);
}

/* Badge Animations */
.badge-animated {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    animation: badgeAppear 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.badge-animated:nth-child(1) { animation-delay: 0.2s; }
.badge-animated:nth-child(2) { animation-delay: 0.4s; }
.badge-animated:nth-child(3) { animation-delay: 0.6s; }

@keyframes badgeAppear {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Icon Animations */
.icon-animated {
    position: relative;
    overflow: hidden;
}

.icon-animated:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.content-block:hover .icon-animated:before,
.benefit-card:hover .icon-animated:before {
    transform: scale(1);
}

.icon-animated i {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.content-block:hover .icon-animated i,
.benefit-card:hover .icon-animated i {
    transform: scale(1.2) rotate(10deg);
    color: var(--primary-gold);
}

/* Hover Lift Effect */
.hover-lift {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Pulse Effect for Important Elements */
.pulse-on-hover:hover {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Loading Animation for Cards */
.benefit-card,
.content-block {
    position: relative;
    overflow: hidden;
}

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

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

/* Mobile Optimizations for Animations */
@media (max-width: 768px) {
    .floating-element {
        font-size: 1.5rem;
    }
    
    .animate-on-scroll {
        transform: translateY(30px);
    }
    
    .hover-lift:hover {
        transform: translateY(-4px);
    }
    
    /* Reduce motion for mobile performance */
    .floating-element {
        animation-duration: 8s;
    }
    
    .grid-line {
        animation-duration: 10s;
    }
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    .floating-element,
    .grid-line,
    .animate-on-scroll,
    .btn-animated,
    .icon-animated,
    .hover-lift {
        animation: none !important;
        transition: none !important;
    }
    
    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}