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

/* African Calendar Section - Modern & Beautiful */
.african-calendar-section {
    background: #1E3A8A;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    color: white;
}

.african-calendar-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffd700" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffd700" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffd700" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffd700" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffd700" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.calendar-header {
    text-align: center;
    margin-bottom: 40px;
}

.calendar-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.calendar-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
}

.calendar-container {
    max-width: 1000px;
    margin: 0 auto;
}

.calendar-controls {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.control-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.control-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 120px;
    justify-content: center;
}

.control-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.control-btn.active {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a2e;
    border-color: #ffd700;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.control-btn.inactive {
    background: rgba(255, 255, 255, 0.05);
    color: #94a3b8;
    border-color: rgba(255, 255, 255, 0.1);
}

.calendar-display {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.calendar-loading {
    text-align: center;
    color: #ffd700;
    font-size: 1.1rem;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 215, 0, 0.3);
    border-top: 3px solid #ffd700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.calendar-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 215, 0, 0.4);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.info-card h4 {
    color: #ffd700;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.info-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .african-calendar-section {
        padding: 60px 0;
    }
    
    .calendar-title {
        font-size: 2.5rem;
    }
    
    .calendar-subtitle {
        font-size: 1.1rem;
    }
    
    .calendar-display {
        padding: 30px 20px;
    }
    
    .control-group {
        flex-direction: column;
        align-items: center;
    }
    
    .control-btn {
        width: 100%;
        max-width: 250px;
    }
    
    .calendar-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .info-card {
        padding: 20px;
    }
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    line-height: 1.6;
    color: #1F1F1F !important;
    background: #F8F9FC !important;
    overflow-x: hidden;
}

/* Headings use Lora font */
h1, h2, h3, h4, h5, h6,
.hero-title,
.section-content h2,
.listen-section h2,
.mentorship-text h2,
.host-text h2,
.testimonials h2,
.signup-content h2,
.contact-content h2,
.work-with-us h2,
.donations-content h2 {
    font-family: 'Lora', serif !important;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(248, 249, 252, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo h2 {
    color: #1F1F1F;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
}

.est-date {
    color: #1E3A8A;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #1F1F1F;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #1E3A8A;
}

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

.bar {
    width: 25px;
    height: 3px;
    background: #1F1F1F;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: white !important;
    color: #1F1F1F;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #1E3A8A 0%, #3E3A9B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: #666;
    font-weight: 300;
    letter-spacing: 0.5px;
}



/* Hero CTA - Primary Support Button */
.hero-cta {
    margin-top: 2.5rem;
    text-align: center;
}

.btn-hero-primary {
    background: #FFD166 !important;
    color: #1F1F1F !important;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 8px 30px rgba(255, 209, 102, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::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-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 209, 102, 0.6);
    background: #FFC947 !important;
}

/* Hero Platforms Section */
.hero-platforms {
    margin-top: 2.5rem;
    margin-bottom: 0;
}

.hero-platforms h3 {
    color: #1F1F1F;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
    letter-spacing: 0.5px;
}

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

.platform-btn {
    background: #F8F9FC;
    color: #1F1F1F;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 120px;
    justify-content: center;
}

.platform-btn:hover {
    background: #1E3A8A;
    color: white;
    border-color: #1E3A8A;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.3);
}

.platform-btn.btn-disabled {
    opacity: 0.6;
    cursor: not-allowed;
    position: relative;
}

.platform-btn.btn-disabled:hover {
    transform: none;
    background: #F8F9FC;
    color: #1F1F1F;
    border-color: #e0e0e0;
}

@media (max-width: 768px) {
    .btn-hero-primary {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
    
    .platform-buttons {
        gap: 0.8rem;
    }
    
    .platform-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        min-width: 100px;
    }
    
    .hero-platforms h3 {
        font-size: 1rem;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    min-height: 44px;
}

.btn-primary {
    background: #1E3A8A !important;
    color: white !important;
    border: none;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.btn-primary:hover {
    background: #3E3A9B !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}

.btn-secondary {
    background: #3E3A9B !important;
    color: white !important;
    border: 2px solid #3E3A9B !important;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: #1E3A8A !important;
    transform: translateY(-3px);
    border-color: #1E3A8A !important;
    box-shadow: 0 8px 25px rgba(62, 58, 155, 0.3);
}

.btn-accent {
    background: #FFD166 !important;
    color: #1F1F1F !important;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 209, 102, 0.3);
}

.btn-accent:hover {
    background: #FFC947 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 209, 102, 0.4);
}

.btn-ile-ise {
    background: #4CAF50 !important;
    color: white !important;
    border: none;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-ile-ise:hover {
    background: #45a049 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

.btn-disabled {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-disabled:hover {
    transform: none;
    background: #1E3A8A;
}

.coming-soon-badge {
    background: #FFD166;
    color: #1F1F1F;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    margin-left: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

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

.hero-host-photo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-host-photo:hover {
    transform: scale(1.05);
}

.hero-placeholder {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-placeholder p {
    font-size: 1rem;
    margin-top: 1rem;
}

/* About Podcast Section */
.about-podcast {
    padding: 6rem 0;
    background: #1E3A8A;
    position: relative;
    color: white;
}

.about-podcast::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e0e0e0 50%, transparent 100%);
}

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

.section-content h2 {
    font-size: 3rem;
    margin-bottom: 2.5rem;
    color: white;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.podcast-description {
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
}

/* Listen Section */
.listen-section {
    padding: 6rem 0;
    background: #F8F9FC;
    position: relative;
}

.platform-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.platform-intro h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.platform-stats {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 20px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.platform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #e0e0e0;
}

.platform-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.platform-card:nth-child(1) i { color: #1DB954; }
.platform-card:nth-child(2) i { color: #007AFF; }
.platform-card:nth-child(3) i { color: #FF0000; }
.platform-card:nth-child(4) i { color: #E4405F; }
.platform-card:nth-child(5) i { color: #000000; }


/* Donations & Support Section */
.donations-section {
    padding: 6rem 0;
    background: #1E3A8A;
    color: white;
    position: relative;
    overflow: hidden;
}

.donations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    opacity: 0.1;
    z-index: 1;
}

.donations-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.donations-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: white;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.donations-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height: 1.7;
    font-weight: 500;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.donation-amounts h3 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: white;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.amount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .amount-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

.donation-btn {
    background: rgba(255, 255, 255, 0.25);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    padding: 1.2rem 2rem;
    border-radius: 60px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 120px;
}

.donation-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
}

.donation-btn:active {
    transform: translateY(-1px);
}

.donation-btn[data-amount="other"] {
    background: rgba(255, 255, 255, 0.15);
    border: 2px dashed rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.donation-btn[data-amount="other"]:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.8);
}

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

.donation-info p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    opacity: 0.9;
    justify-content: center;
}

.donation-info i {
    font-size: 1.2rem;
    color: #4CAF50;
}

.donation-benefits {
    background: rgba(255, 255, 255, 0.15);
    padding: 2.5rem;
    border-radius: 20px;
    margin: 2.5rem 0;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.donation-benefits p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
    color: #fff;
}

.donation-benefits ul {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.donation-benefits li {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.donation-benefits li:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.help-text {
    font-size: 1.4rem !important;
    font-weight: 800 !important;
    text-align: center;
    margin-top: 2rem !important;
    color: #fff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}


/* Work With Us Section */
.work-with-us {
    padding: 5rem 0;
    background: #F8F9FC;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1F1F1F;
}

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

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

.work-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

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

.work-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: white;
}

.work-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.work-card p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.work-benefits {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.work-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #555;
}

.work-benefits i {
    color: #4CAF50;
    font-size: 1rem;
    min-width: 20px;
}

/* Marketplace Content */
.marketplace-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.marketplace-text h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1F1F1F;
}

.marketplace-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.7;
}

.marketplace-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.marketplace-photo {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

@media (max-width: 768px) {
    .marketplace-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Mentorship Section */
.mentorship-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1E3A8A 0%, #3E3A9B 100%);
    color: white;
}

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

.mentorship-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.mentorship-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.mentorship-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.mentorship-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.mentorship-benefits i {
    color: #4CAF50;
    font-size: 1.2rem;
}

/* Platform Update Section */
.platform-update {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #ff6b35;
    border-radius: 15px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.platform-update::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e, #ff6b35);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.update-banner {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #ff6b35;
    font-size: 1.1rem;
}

.update-banner i {
    font-size: 1.3rem;
    animation: pulse 2s infinite;
}

.update-text {
    color: #555;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.mentorship-image {
    display: flex;
    justify-content: center;
}

.mentorship-photo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.mentorship-photo:hover {
    transform: scale(1.05);
}

.mentorship-placeholder {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.7);
}

/* About Host Section */
.about-host {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.host-image {
    display: flex;
    justify-content: center;
}

.host-photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #007bff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.host-photo:hover {
    transform: scale(1.05);
}

.host-placeholder {
    width: 250px;
    height: 250px;
    background: #ddd;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: #666;
}

.host-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

.host-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: #007bff;
    border-left: 4px solid #007bff;
    padding-left: 2rem;
    margin: 2rem 0;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: white;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.testimonial-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

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

.testimonial-author strong {
    color: #1a1a1a;
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #007bff;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: #1E3A8A;
    color: white;
}

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

.contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

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

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    text-align: left;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

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

.contact-item i {
    font-size: 2rem;
    color: #FFD166;
    margin-top: 0.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: white;
}

.contact-item a {
    color: #FFD166;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #0056b3;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* Email Signup Section */
.email-signup {
    padding: 5rem 0;
    background: white;
    color: #1F1F1F;
}

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

.signup-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1F1F1F;
}

.signup-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.signup-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.signup-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.signup-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

/* Footer Action Buttons */
.footer-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-footer-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    border: 2px solid transparent;
}

.btn-footer-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
    color: #1a1a1a;
    text-decoration: none;
}

.btn-footer-secondary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-footer-secondary:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #007bff;
}

.footer-est-date {
    color: #007bff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-top: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #007bff;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
}

.social-links a:hover {
    background: #007bff;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #ccc;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #666;
}

.close:hover {
    color: #000;
}

.mentorship-form {
    margin-top: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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


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

    .mentorship-content,
    .host-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .work-options {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .work-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .signup-form {
        flex-direction: column;
    }

    .platform-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .episode-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .episode-actions .btn {
        min-width: 250px;
    }

    .footer-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-footer-primary,
    .btn-footer-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 12px 25px;
        font-size: 1rem;
    }

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

    .social-links {
        justify-content: center;
    }
    
    /* Donations section responsive */
    .donation-amounts h3 {
        font-size: 1.5rem;
    }
    
    .amount-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 0.8rem;
    }
    
    .donation-btn {
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }
    
    .donation-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .donation-info p {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .donations-content h2 {
        font-size: 2.2rem;
    }
    
    .donations-description {
        font-size: 1.1rem;
    }
    
    .donation-amounts h3 {
        font-size: 1.6rem;
    }
    
    .donation-benefits {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .donation-benefits p {
        font-size: 1rem;
    }
    
    .donation-benefits li {
        font-size: 0.9rem;
        padding: 0.6rem 0.8rem;
    }
    
    .help-text {
        font-size: 1.1rem !important;
    }
    
    .donation-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-content h2,
    .platform-intro h2,
    .mentorship-text h2,
    .host-text h2,
    .testimonials h2,
    .signup-content h2 {
        font-size: 2rem;
    }
    
    .platform-stats {
        font-size: 1.1rem;
    }

    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .coming-soon-badge {
        font-size: 0.6rem;
        padding: 0.15rem 0.4rem;
        margin-left: 0.3rem;
    }

    .hero-placeholder,
    .mentorship-placeholder {
        width: 200px;
        height: 200px;
        font-size: 3rem;
    }
    
    .mentorship-photo {
        width: 200px;
        height: 200px;
    }

    .hero-host-photo {
        width: 200px;
        height: 200px;
    }

    .host-placeholder {
        width: 150px;
        height: 150px;
        font-size: 2rem;
    }
    
    .host-photo {
        width: 150px;
        height: 150px;
    }
    
    .episode-player iframe {
        height: 200px;
    }
    
    .episode-actions .btn {
        min-width: 200px;
        font-size: 0.9rem;
    }
    
    /* Donations section mobile */
    .donations-content h2 {
        font-size: 2rem;
    }
    
    .donations-description {
        font-size: 1.1rem;
    }
    
    .donation-amounts h3 {
        font-size: 1.3rem;
    }
    
    .amount-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
    
    .donation-btn {
        padding: 0.7rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .donation-info p {
        font-size: 0.8rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Effects */
.platform-card,
.testimonial-card {
    transition: all 0.3s ease;
}

.platform-card:hover,
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
} 