/* Base Styles */
:root {
    --primary-black: #121212;
    --primary-yellow: #FFD700;
    --yellow-light: #FFEE32;
    --black-light: #1E1E1E;
    --gray-dark: #2D2D2D;
    --gray-medium: #4A4A4A;
    --gray-light: #E0E0E0;
    --white: #FFFFFF;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 80px 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid var(--primary-yellow);
    cursor: pointer;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--primary-yellow);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.cta-button.outline {
    background-color: transparent;
    color: var(--primary-yellow);
    border: 2px solid var(--primary-yellow);
}

.cta-button.outline:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
}

.cta-button.small {
    padding: 8px 20px;
    font-size: 0.8rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(18, 18, 18, 0.9);
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.header.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.logo-text {
    color: var(--white);
}

.logo-highlight {
    color: var(--primary-yellow);
    margin-left: 5px;
}

.nav-menu {
    display: flex;
}

.nav-item {
    margin-left: 30px;
    position: relative;
}

.nav-link {
    font-weight: 500;
    transition: var(--transition);
    padding: 5px 0;
}

.nav-link:hover {
    color: var(--primary-yellow);
}

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

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--white);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/herobg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero-title .title-line {
    display: block;
}

.hero-title .highlight {
    color: var(--primary-yellow);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--gray-light);
}

.hero-tagline {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.scroll-down p {
    font-size: 0.8rem;
    margin-top: 10px;
    color: var(--gray-light);
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--gray-light);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding: 5px 0;
}

.scroller {
    width: 3px;
    height: 10px;
    background-color: var(--primary-yellow);
    border-radius: 3px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.5;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-yellow);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-light);
    margin-top: 20px;
}

/* About Section */
.about-content {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.3));
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-yellow);
    font-weight: 600;
    margin-top: 20px;
}

.read-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Pillars */
.pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.pillar {
    background-color: var(--black-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.pillar:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary-yellow);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.pillar-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--primary-yellow);
}

.pillar h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Programs Section */
.programs {
    background-color: var(--black-light);
}

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

.program-card {
    background-color: var(--primary-black);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    perspective: 1000px;
    height: 300px;
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 0.6s;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.card-front {
    background-color: var(--primary-black);
    transform: rotateY(0deg);
}

.card-back {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    transform: rotateY(180deg);
}

.program-card:hover .card-front {
    transform: rotateY(-180deg);
}

.program-card:hover .card-back {
    transform: rotateY(0deg);
}

.program-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: var(--primary-yellow);
}

.program-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.section-footer {
    text-align: center;
    margin-top: 50px;
}

/* Affirmations Specific Styles */
.affirmations-hero {
    background-image: linear-gradient(rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.9)), url('images/affirmations-hero.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

.affirmations-hero .hero-title {
    font-size: 3.5rem;
    margin-bottom: 15px;
    animation: fadeInDown 1s ease;
    color: var(--primary-yellow);
}

.affirmations-hero .hero-subtitle {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
    color: var(--gray-light);
}

/* Daily Affirmation Card */
.daily-affirmation-card {
    background: var(--black-light);
    border-radius: 15px;
    padding: 40px;
    margin: 40px auto;
    max-width: 800px;
    color: var(--white);
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    animation: fadeIn 1.5s ease;
    border: 1px solid var(--gray-dark);
}

.daily-affirmation-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0) 70%);
    transform: rotate(30deg);
}

.daily-affirmation-text {
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: var(--white);
}

.daily-affirmation-category {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    color: var(--primary-yellow);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.affirmation-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

/* Affirmations Grid */
.affirmations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px auto;
}

.affirmation-card {
    background: var(--black-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--gray-dark);
}

.affirmation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--primary-yellow);
}

.affirmation-card-content {
    padding: 25px;
    position: relative;
}

.affirmation-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--white);
}

.affirmation-category {
    display: inline-block;
    padding: 5px 12px;
    background: var(--gray-dark);
    color: var(--primary-yellow);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--primary-yellow);
}

.save-affirmation {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(30, 30, 30, 0.8);
    border: 1px solid var(--gray-medium);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-light);
    backdrop-filter: blur(5px);
}

.save-affirmation.saved {
    color: var(--primary-yellow);
    border-color: var(--primary-yellow);
}

.save-affirmation:hover {
    background: var(--gray-dark);
    color: var(--primary-yellow);
}

/* Categories Filter */
.affirmation-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0;
}

.category-btn {
    padding: 8px 20px;
    border-radius: 20px;
    background: var(--primary-black);
    border: 1px solid var(--gray-medium);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    color: var(--gray-light);
}

.category-btn:hover, .category-btn.active {
    background: var(--gray-dark);
    color: var(--primary-yellow);
    border-color: var(--primary-yellow);
}

/* Benefits Section */
.affirmation-benefits {
    background: var(--primary-black);
    padding: 80px 0;
    border-top: 1px solid var(--gray-dark);
    border-bottom: 1px solid var(--gray-dark);
}

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

.benefit-card {
    background: var(--black-light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    border: 1px solid var(--gray-dark);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-yellow);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-yellow);
    margin-bottom: 20px;
}

/* How to Use Section */
.how-to-use {
    padding: 80px 0;
    background: var(--black-light);
    color: var(--white);
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
    justify-content: center;
}

.step-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background: var(--gray-dark);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-medium);
    transition: var(--transition);
}

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

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: bold;
    color: rgba(255, 215, 0, 0.05);
    z-index: 1;
}

.step-content {
    position: relative;
    z-index: 2;
}

/* Testimonials */
.program-testimonials {
    background: var(--primary-black);
    padding: 80px 0;
    border-top: 1px solid var(--gray-dark);
}

/* Call to Action */
.program-cta {
    background: var(--black-light);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid var(--primary-yellow);
}

/* Button Styles */
.cta-button {
    background: var(--primary-yellow);
    color: var(--primary-black);
    border: none;
    font-weight: 600;
    transition: var(--transition);
}

.cta-button:hover {
    background: var(--yellow-light);
    transform: translateY(-2px);
}

.cta-button.outline {
    background: transparent;
    border: 2px solid var(--primary-yellow);
    color: var(--primary-yellow);
}

.cta-button.outline:hover {
    background: var(--primary-yellow);
    color: var(--primary-black);
}

/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--primary-yellow);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    color: var(--gray-light);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .daily-affirmation-text {
        font-size: 1.5rem;
        min-height: 100px;
    }
    
    .affirmations-grid {
        grid-template-columns: 1fr;
    }
    
    .affirmation-controls {
        flex-wrap: wrap;
    }
    
    .affirmations-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .affirmations-hero .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Affirmations Section - Homepage */
.affirmations {
    background: var(--primary-black);
    padding: 80px 0;
    border-top: 1px solid var(--gray-dark);
    border-bottom: 1px solid var(--gray-dark);
}

.affirmation-card-home {
    background: var(--black-light);
    border-radius: 12px;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--gray-dark);
    transition: var(--transition);
}

.affirmation-card-home:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-yellow);
}

.affirmation-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 25px;
}

.affirmation-icon {
    font-size: 2rem;
    color: var(--primary-yellow);
    margin-bottom: 15px;
}

.affirmation-text-home p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 500;
}

.affirmation-meta-home {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 300px;
}

.affirmation-meta-home .date {
    color: var(--gray-light);
    font-size: 0.9rem;
}

.affirmation-meta-home .category {
    color: var(--primary-yellow);
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(255, 215, 0, 0.1);
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid var(--primary-yellow);
}

.affirmation-controls-home {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.affirmation-nav-btn {
    background: var(--gray-dark);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--gray-light);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.affirmation-nav-btn:hover {
    background: var(--primary-yellow);
    color: var(--primary-black);
}

.affirmation-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.affirmation-main-btn {
    padding: 10px 20px;
    font-weight: 600;
}

.affirmation-save-btn {
    background: transparent;
    border: none;
    color: var(--gray-light);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.affirmation-save-btn.saved {
    color: var(--primary-yellow);
}

.affirmation-save-btn:hover {
    transform: scale(1.1);
}

.affirmation-benefits-home {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.affirmation-benefits-home h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.affirmation-benefits-home ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.affirmation-benefits-home li {
    margin-bottom: 8px;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .affirmation-text-home p {
        font-size: 1.3rem;
    }
    
    .affirmation-controls-home {
        flex-wrap: wrap;
    }
}

/* Testimonials */
.testimonials {
    background-color: var(--primary-black);
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    animation: fade 1s ease;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fade {
    from {opacity: 0.4}
    to {opacity: 1}
}

.testimonial-content {
    background-color: var(--black-light);
    padding: 40px;
    border-radius: 10px;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    color: var(--primary-yellow);
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    padding-top: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--primary-yellow);
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--gray-light);
    margin-bottom: 0;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

.slider-prev, .slider-next {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.slider-prev:hover, .slider-next:hover {
    color: var(--primary-yellow);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gray-medium);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-yellow);
}

/* Podcast Section */
.podcast-player {
    display: flex;
    gap: 40px;
    background-color: var(--black-light);
    border-radius: 10px;
    padding: 30px;
    align-items: center;
}

.podcast-artwork {
    position: relative;
    flex: 1;
    max-width: 300px;
}

.podcast-artwork img {
    border-radius: 10px;
    width: 100%;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 215, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-black);
    cursor: pointer;
    transition: var(--transition);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.waveform {
    width: 100%;
    height: 60px;
    background-color: var(--gray-dark);
    border-radius: 5px;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.waveform::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
    animation: waveform 2s infinite linear;
}

@keyframes waveform {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.podcast-info {
    flex: 2;
}

.episode-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.episode-description {
    margin-bottom: 20px;
}

.podcast-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    color: var(--gray-light);
}

.podcast-meta i {
    margin-right: 5px;
    color: var(--primary-yellow);
}

.podcast-actions {
    display: flex;
    gap: 15px;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: var(--black-light);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.member-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-5px);
    background-color: var(--white);
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.member-info p {
    color: var(--primary-yellow);
    font-size: 0.9rem;
}

/* Stats Section */
.stats {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    padding: 60px 0;
}

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

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Get Involved Section */
.involvement-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.option-card {
    background-color: var(--black-light);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.option-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary-yellow);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.option-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary-yellow);
}

.option-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.option-card p {
    margin-bottom: 20px;
}

/* Newsletter Section */
.newsletter {
    background-color: var(--black-light);
    padding: 60px 0;
}

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

.newsletter h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.newsletter p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px;
    background-color: var(--gray-dark);
    color: var(--white);
    font-family: inherit;
}

.newsletter-form input::placeholder {
    color: var(--gray-light);
}

.newsletter-form button {
    padding: 15px 30px;
}

/* Partners Section */
.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 30px 0;
}

.logo-slide {
    flex: 0 0 calc(20% - 40px);
    display: flex;
    justify-content: center;
    align-items: center;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.logo-slide:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.logo-slide img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
}

/* Footer */
.footer {
    background-color: var(--black-light);
    padding: 80px 0 0;
}

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

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-yellow);
}

.footer-about {
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    transform: translateY(-5px);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.95rem;
    color: var(--gray-light);
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-yellow);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-yellow);
    width: 20px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid var(--gray-dark);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--gray-light);
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: var(--gray-light);
    transition: var(--transition);
}

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

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--white);
    transform: translateY(-5px);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    height: 50px;
}

.loader-square {
    width: 10px;
    height: 50px;
    background-color: var(--primary-yellow);
    animation: loader 1.2s infinite ease-in-out;
}

.loader-square:nth-child(1) {
    animation-delay: -1.1s;
}

.loader-square:nth-child(2) {
    animation-delay: -1.0s;
}

.loader-square:nth-child(3) {
    animation-delay: -0.9s;
}

.loader-square:nth-child(4) {
    animation-delay: -0.8s;
}

.loader-square:nth-child(5) {
    animation-delay: -0.7s;
}

.loader-square:nth-child(6) {
    animation-delay: -0.6s;
}

@keyframes loader {
    0%, 40%, 100% {
        transform: scaleY(0.4);
    }
    20% {
        transform: scaleY(1);
    }
}

/* Animations CSS */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

/* Typewriter Effect */
.typewriter {
    overflow: hidden;
    border-right: 3px solid var(--primary-yellow);
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: 2px;
    animation: typing 3.5s steps(30, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

@keyframes blink-caret {
    from, to {
        border-color: transparent;
    }
    50% {
        border-color: var(--primary-yellow);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .podcast-player {
        flex-direction: column;
    }
    
    .podcast-artwork {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background-color: var(--primary-black);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 15px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input, .newsletter-form button {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stats .container {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

/* About Page Specific Styles */
.page-hero {
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.page-hero .hero-content {
    text-align: center;
    max-width: 100%;
}

.page-hero .hero-title {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.page-hero .hero-subtitle {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Mission Section */
.mission-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-card {
    background-color: var(--black-light);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.mission-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary-yellow);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary-yellow);
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Timeline Section */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--primary-yellow);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 100%;
}

.timeline-item:nth-child(odd) {
    padding-right: calc(50% + 30px);
    text-align: right;
}

.timeline-item:nth-child(even) {
    padding-left: calc(50% + 30px);
    text-align: left;
}

.timeline-date {
    position: absolute;
    top: 0;
    width: 150px;
    padding: 10px;
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    font-weight: 600;
    border-radius: 5px;
    text-align: center;
}

.timeline-item:nth-child(odd) .timeline-date {
    right: calc(50% + 30px);
}

.timeline-item:nth-child(even) .timeline-date {
    left: calc(50% + 30px);
}

.timeline-content {
    background-color: var(--black-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-yellow);
}

/* Pillars Tabs */
.pillars-tabs {
    margin-top: 40px;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tab-button {
    padding: 12px 25px;
    background-color: var(--gray-dark);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.tab-button:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
}

.tab-button.active {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
}

.tab-pane {
    display: none;
    animation: fadeIn 0.5s ease;
}

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

.pane-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.pane-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.pane-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

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

.pane-text {
    flex: 1;
}

.pane-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-yellow);
}

.pane-list {
    margin: 20px 0;
}

.pane-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.pane-list i {
    margin-right: 10px;
    color: var(--primary-yellow);
}

/* Impact Section */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

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

.testimonial-card {
    background-color: var(--black-light);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

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

.testimonial-video {
    position: relative;
    height: 200px;
}

.testimonial-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 215, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-black);
    cursor: pointer;
    transition: var(--transition);
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.testimonial-info {
    padding: 20px;
}

.testimonial-info h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* CTA Section */
.cta-section {
    background-color: var(--black-light);
    padding: 80px 0;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

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

/* Responsive Adjustments */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        padding-left: 70px !important;
        padding-right: 0 !important;
        text-align: left !important;
    }
    
    .timeline-date {
        left: 0 !important;
        right: auto !important;
    }
    
    .pane-content {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .page-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .page-hero .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
    }
}

/* Team Page Specific Styles */
.team-section {
    padding: 80px 0;
    background-color: var(--primary-black);
}

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

.team-member {
    background-color: var(--black-light);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.team-member.small {
    max-width: 250px;
    margin: 0 auto;
}

.member-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.team-member:hover .member-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-5px);
    background-color: var(--white);
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.member-info p {
    color: var(--primary-yellow);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.view-profile {
    background-color: transparent;
    border: 2px solid var(--primary-yellow);
    color: var(--primary-yellow);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.view-profile:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
}

/* Member Profile Expanded View */
.member-profile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 20px;
}

.member-profile.show {
    opacity: 1;
    visibility: visible;
}

.profile-content {
    background-color: var(--black-light);
    max-width: 800px;
    width: 100%;
    border-radius: 10px;
    padding: 40px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close-profile {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-profile:hover {
    color: var(--primary-yellow);
    transform: rotate(90deg);
}

.profile-header {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    align-items: center;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-yellow);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-details h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.position {
    color: var(--primary-yellow);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.profile-social {
    display: flex;
    gap: 15px;
}

.profile-social a {
    width: 35px;
    height: 35px;
    background-color: var(--gray-dark);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
}

.profile-social a:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
}

.profile-bio h4 {
    margin: 20px 0 10px;
    color: var(--primary-yellow);
}

.profile-bio ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.profile-bio ul li {
    margin-bottom: 8px;
}

/* Country Teams */
.country-teams {
    padding: 80px 0;
    background-color: var(--black-light);
}

.country-tabs .tab-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.country-tabs .tab-button {
    padding: 12px 25px;
    background-color: var(--gray-dark);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.country-tabs .tab-button:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
}

.country-tabs .tab-button.active {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
}

.country-tabs .tab-pane {
    display: none;
}

.country-tabs .tab-pane.active {
    display: block;
}

/* Join Team CTA */
.join-team {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/join-team-bg.jpg') no-repeat center center/cover;
    text-align: center;
}

.join-content {
    max-width: 700px;
    margin: 0 auto;
}

.join-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.join-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Responsive Adjustments */
@media (max-width: 992px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .member-profile {
        padding: 10px;
    }
    
    .profile-content {
        padding: 30px 20px;
    }
    
    .join-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .country-tabs .tab-buttons {
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .profile-image {
        width: 120px;
        height: 120px;
    }
    
    .profile-details h3 {
        font-size: 1.5rem;
    }
    
    .join-content h2 {
        font-size: 2rem;
    }
    
    .join-content p {
        font-size: 1rem;
    }
}

/* Programs Page Specific Styles */
.programs-filter {
    padding: 30px 0;
    background-color: var(--black-light);
}

.filter-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-button {
    padding: 10px 20px;
    background-color: var(--gray-dark);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-button:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
}

.filter-button.active {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
}

/* Programs Grid */
.programs-grid-section {
    padding: 80px 0;
    background-color: var(--primary-black);
}

.programs-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.program-card {
    background-color: var(--black-light);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.program-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.program-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-yellow);
    color: var(--primary-black);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.program-content {
    padding: 25px;
}

.program-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary-yellow);
}

.program-content p {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.program-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--gray-light);
}

.program-meta i {
    margin-right: 5px;
    color: var(--primary-yellow);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.page-button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--black-light);
    color: var(--white);
    border-radius: 5px;
    transition: var(--transition);
}

.page-button:hover {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
}

.page-button.active {
    background-color: var(--primary-yellow);
    color: var(--primary-black);
}

.page-button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Program Benefits */
.program-benefits {
    padding: 80px 0;
    background-color: var(--black-light);
}

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

.benefit-card {
    background-color: var(--primary-black);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary-yellow);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary-yellow);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Program Testimonials */
.program-testimonials {
    padding: 80px 0;
    background-color: var(--primary-black);
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    animation: fade 1s ease;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fade {
    from {opacity: 0.4}
    to {opacity: 1}
}

.testimonial-content {
    background-color: var(--black-light);
    padding: 40px;
    border-radius: 10px;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    color: var(--primary-yellow);
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 30px;
    padding-top: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--primary-yellow);
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--gray-light);
    margin-bottom: 0;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
}

.slider-prev, .slider-next {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.slider-prev:hover, .slider-next:hover {
    color: var(--primary-yellow);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gray-medium);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--primary-yellow);
}

/* Program CTA */
.program-cta {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('images/program-cta-bg.jpg') no-repeat center center/cover;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

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

/* Responsive Adjustments */
@media (max-width: 992px) {
    .programs-container {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .filter-options {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-button {
        width: 200px;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .programs-container {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}