﻿/* ===== ROOT COLORS - MODERN PROFESSIONAL THEME ===== */
:root {
    --saffron-start: #2B5F8A;
    --saffron-end: #1E3A5F;
    --saffron-dark: #143250;
    --white-color: #FFFFFF;
    --green-color: #2E7D64;
    --accent-gold: #E6B450;
    --primary-crimson: #2B5F8A;
    --primary-dark: #1E3A5F;
    --golden: #E6B450;
    --dark-charcoal: #1E293B;
    --light-bg: #F8FAFC;
    --text-dark: #1E293B;
    --text-muted: #64748B;
    /* Additional colors for biographies & stories */
    --saffron-sacred: #2B5F8A;
    --kumkum-red: #C44B3C;
    --peacock-blue: #2C6E8F;
    --terracotta: #B85C38;
    --lotus-pink: #C65D7E;
    --neem-green: #2E7D64;
    --turmeric-yellow: #E6B450;
}

/* ===== RESET & GLOBAL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-padding-top: 80px;
}

/* ===== STICKY HEADER FIX ===== */
.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1030;
    width: 100%;
}

header {
    position: relative;
    z-index: 1030;
}

main {
    position: relative;
    z-index: 1;
}

/* ===== NAVBAR ===== */
.navbar {
    background: linear-gradient(135deg, var(--saffron-start), var(--saffron-end));
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: padding 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

    /* Tricolor stripes at the bottom */
    .navbar::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--saffron-start) 0%, var(--saffron-start) 33%, var(--white-color) 33%, var(--white-color) 66%, var(--green-color) 66%, var(--green-color) 100%);
    }

    .navbar .container {
        position: relative;
        z-index: 2;
    }

    .navbar.scrolled {
        padding: 0.5rem 0;
        background: linear-gradient(135deg, var(--saffron-start), var(--saffron-end));
    }

/* Navbar Brand */
.navbar-brand {
    font-size: 1.8rem;
    font-weight: 800;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

    .navbar-brand img {
        transition: all 0.3s ease;
        height: 40px;
        width: auto;
        /*filter: brightness(0) invert(1);*/
    }

.navbar.scrolled .navbar-brand img {
    height: 32px;
}

.navbar-brand i {
    color: var(--white-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.brand-tag {
    font-size: 0.7rem;
    display: block;
    font-weight: 400;
    color: var(--white-color);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.navbar.scrolled .brand-tag {
    font-size: 0.6rem;
}

/* Navigation Links */
.nav-link {
    font-weight: 500;
    color: var(--white-color) !important;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0.95;
    padding: 0.5rem 1rem !important;
}

    .nav-link:hover,
    .nav-link.active {
        color: var(--white-color) !important;
        opacity: 1;
        transform: translateY(-2px);
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 30px;
            height: 2px;
            background: var(--white-color);
            border-radius: 2px;
        }

/* Mobile navbar fix */
.navbar-collapse {
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

@media (min-width: 992px) {
    .navbar-collapse {
        max-height: none;
        overflow-y: visible;
    }
}

/* Toggler icon color */
.navbar-toggler {
    border-color: var(--white-color);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== BUTTONS ===== */
.btn-primary-custom {
    background: var(--white-color);
    border: none;
    padding: 10px 24px;
    font-weight: 600;
    border-radius: 30px;
    color: var(--saffron-start);
    transition: all 0.3s;
}

    .btn-primary-custom:hover {
        transform: translateY(-2px);
        opacity: 0.95;
        color: var(--saffron-start);
        background: var(--white-color);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

.btn-outline-light {
    border: 2px solid var(--white-color);
    color: var(--white-color);
    transition: all 0.3s ease;
    background: transparent;
    border-radius: 30px;
    padding: 10px 24px;
}

    .btn-outline-light:hover {
        background: var(--white-color);
        border-color: var(--white-color);
        color: var(--saffron-start);
        transform: translateY(-2px);
    }

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(120deg, rgba(43, 95, 138, 0.92), rgba(30, 58, 95, 0.88)), url('/img/banner/banner.png') center/cover no-repeat;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
    border-radius: 0 0 40px 40px;
    overflow: hidden;
}

    .hero::before {
        content: "⚔️";
        font-size: 20rem;
        position: absolute;
        bottom: -80px;
        right: -50px;
        opacity: 0.05;
        pointer-events: none;
    }

    .hero .container {
        position: relative;
        z-index: 2;
    }

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-highlight {
    color: var(--white-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white-color);
}

/* ===== CARDS ===== */
.story-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

    .story-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(43, 95, 138, 0.15);
    }

.card-img-placeholder {
    background: linear-gradient(135deg, #2c2c3a, #1e1e2a);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--golden);
}

.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--saffron-start);
    color: white;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.story-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.read-more {
    color: var(--saffron-start);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

    .read-more:hover {
        color: var(--golden);
        letter-spacing: 0.5px;
    }

/* Small story cards */
.story-card-sm {
    transition: 0.3s;
    border-radius: 20px;
    background: white;
}

    .story-card-sm:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    }

/* Category cards */
.category-card {
    background: #fff;
    border-radius: 25px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: block;
}

    .category-card i {
        font-size: 2.5rem;
        color: var(--saffron-start);
        transition: 0.3s;
    }

    .category-card:hover {
        background: var(--saffron-start);
        transform: translateY(-6px);
    }

        .category-card:hover i,
        .category-card:hover h5 {
            color: #fff;
        }

/* Poem cards */
.poem-card {
    transition: 0.3s;
    border-radius: 24px;
    background: white;
}

    .poem-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    }

/* Newsletter */
.newsletter {
    background: linear-gradient(110deg, var(--saffron-end), var(--saffron-start));
    color: white;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

/* ===== PAGE HEADER ===== */
.page-header {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--saffron-start), var(--saffron-end));
    padding: 3.5rem 0;
}

/* Breadcrumb Styling */
.breadcrumb {
    --bs-breadcrumb-divider: '/';
    background: transparent;
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

    .breadcrumb-item a:hover {
        color: var(--white-color);
        transform: translateX(-2px);
    }

.breadcrumb-item.active {
    color: var(--white-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: rgba(255, 255, 255, 0.5);
    padding: 0 0.5rem;
    font-weight: 300;
}

/* ===== TIMELINE CARDS ===== */
.timeline-card {
    transition: transform 0.3s ease;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    height: 100%;
}

    .timeline-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(43, 95, 138, 0.1);
    }

.timeline-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--saffron-start), var(--golden));
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-weight: bold;
    font-size: 1.2rem;
}

/* ===== TEAM CARDS ===== */
.team-card {
    transition: all 0.3s ease;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    text-align: center;
    height: 100%;
}

    .team-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

.team-avatar {
    background: linear-gradient(135deg, var(--saffron-start), var(--golden));
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

    .team-avatar i {
        font-size: 3.5rem;
        color: white;
    }

/* ===== IMPACT STATS ===== */
.impact-stat {
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    padding: 1rem;
}

    .impact-stat:hover {
        transform: scale(1.05);
    }

        .impact-stat:hover i {
            color: var(--golden) !important;
        }

    .impact-stat h3 {
        font-size: 2rem;
        font-weight: bold;
        color: var(--saffron-start);
        margin: 0.5rem 0;
    }

    .impact-stat p {
        color: var(--text-muted);
        margin: 0;
    }

/* ===== VALUE CARDS ===== */
.value-card {
    background: white;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
}

    .value-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(43, 95, 138, 0.1);
    }

    .value-card i {
        font-size: 2.5rem;
        color: var(--saffron-start);
        margin-bottom: 1rem;
    }

    .value-card h5 {
        color: var(--text-dark);
        margin-bottom: 0.5rem;
        font-weight: 600;
    }

    .value-card p {
        color: var(--text-muted);
        font-size: 0.95rem;
    }

/* ===== CONTACT INFO ===== */
.contact-info {
    transition: all 0.3s ease;
    background: #f8f9fa;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
}

.info-item {
    margin-bottom: 1.5rem;
    display: flex;
    gap: 15px;
}

    .info-item:last-child {
        margin-bottom: 0;
    }

.info-icon i {
    transition: transform 0.3s ease;
    color: var(--saffron-start);
    font-size: 1.8rem;
}

.info-item:hover .info-icon i {
    transform: scale(1.1);
}

.info-item h6 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.info-item p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}

/* ===== CONTACT FORM ===== */
.contact-form {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

    .contact-form .form-label {
        color: var(--text-dark);
        font-weight: 500;
        margin-bottom: 0.5rem;
    }

    .contact-form .form-control,
    .contact-form .form-select {
        border-radius: 12px;
        border: 1px solid #e0e0e0;
        padding: 12px 15px;
        transition: all 0.3s ease;
        color: var(--text-dark);
        width: 100%;
    }

        .contact-form .form-control:focus,
        .contact-form .form-select:focus {
            border-color: var(--saffron-start);
            box-shadow: 0 0 0 0.2rem rgba(43, 95, 138, 0.25);
            outline: none;
        }

/* ===== MAP CONTAINER ===== */
.map-container {
    border: 3px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

/* ===== ACCORDION ===== */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background: white;
    font-weight: 600;
    padding: 1.2rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

    .accordion-button:not(.collapsed) {
        background: linear-gradient(135deg, var(--saffron-start), var(--saffron-end));
        color: white;
    }

        .accordion-button:not(.collapsed)::after {
            filter: brightness(0) invert(1);
        }

    .accordion-button:focus {
        box-shadow: none;
        border-color: rgba(43, 95, 138, 0.5);
    }

.accordion-body {
    color: var(--text-muted);
    background: white;
    padding: 1.2rem;
    line-height: 1.6;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 48px;
    height: 48px;
    background: var(--saffron-start);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 99;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

    .back-to-top.show {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        background: var(--golden);
        transform: scale(1.1);
    }

/* ===== FOOTER STYLES ===== */
.site-footer {
    background: linear-gradient(135deg, var(--dark-charcoal) 0%, #1a1a2a 100%);
    color: #e0e0e0;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
    position: relative;
}

    .site-footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--saffron-start), var(--golden), var(--saffron-start));
    }

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

    .footer-logo img {
        max-height: 60px;
        width: auto;
    }

.footer-description {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
}

    .social-icon:hover {
        background: linear-gradient(135deg, var(--saffron-start), var(--golden));
        transform: translateY(-3px);
        color: white;
    }

.footer-title {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

    .footer-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 2px;
        background: linear-gradient(90deg, var(--golden), var(--saffron-start));
    }

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-menu li {
        margin-bottom: 0.75rem;
    }

        .footer-menu li a {
            color: #b0b0b0;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
        }

            .footer-menu li a i {
                font-size: 0.7rem;
                color: var(--golden);
                transition: all 0.3s ease;
            }

            .footer-menu li a:hover {
                color: var(--golden);
                transform: translateX(5px);
            }

.contact-info-footer p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    color: #b0b0b0;
    font-size: 0.95rem;
}

.contact-info-footer i {
    width: 30px;
    color: var(--golden);
    font-size: 1.1rem;
}

.contact-info-footer a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .contact-info-footer a:hover {
        color: var(--golden);
    }

.footer-divider {
    margin: 1.5rem 0 1rem;
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-bottom {
    text-align: center;
}

.copyright p {
    color: #888;
    font-size: 0.85rem;
    margin: 0;
    padding: 0.5rem 0;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* ===== BIOGRAPHIES PAGE STYLES ===== */
.biography-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

    .biography-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(43, 95, 138, 0.15);
    }

.biography-image {
    position: relative;
    overflow: hidden;
}

.image-placeholder {
    background: linear-gradient(135deg, #2c2c3a, #1e1e2a);
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--golden);
}

.bio-info {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 10px 0;
    flex-wrap: wrap;
}

    .bio-info i {
        width: 20px;
        color: var(--saffron-start);
    }

.bio-stats {
    display: flex;
    gap: 20px;
    font-size: 0.8rem;
    color: var(--text-muted);
    padding-top: 10px;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
}

    .bio-stats i {
        color: var(--saffron-start);
        margin-right: 5px;
    }

/* Category Badge Variations */
.category-badge.freedom {
    background: var(--saffron-start);
}

.category-badge.revolutionary {
    background: #C44B3C;
}

.category-badge.scientist {
    background: var(--peacock-blue);
}

.category-badge.warrior {
    background: var(--terracotta);
}

.category-badge.spiritual {
    background: var(--lotus-pink);
}

.category-badge.social {
    background: var(--neem-green);
}

/* ===== STORIES PAGE STYLES ===== */
.story-card-modern {
    background: white;
    border-radius: 20px;
    transition: all 0.35s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
    padding-bottom: 1rem;
}

    .story-card-modern:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

.story-footer {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 0.75rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

    .story-footer i {
        margin-right: 5px;
        color: var(--saffron-start);
    }

.story-cat-card {
    background: white;
    border-radius: 15px;
    transition: all 0.3s;
    text-decoration: none;
    color: var(--text-dark);
    display: block;
}

    .story-cat-card:hover {
        background: linear-gradient(135deg, var(--saffron-start), var(--golden));
        color: white;
        transform: translateY(-3px);
    }

    .story-cat-card i {
        color: var(--saffron-start);
    }

    .story-cat-card:hover i {
        color: white;
    }

/* Featured Story Card */
.featured-story-card {
    border-radius: 20px;
    overflow: hidden;
}

/* Pagination Styling */
.pagination {
    margin-top: 2rem;
}

    .pagination .page-link {
        color: var(--saffron-start);
        border-radius: 30px;
        margin: 0 5px;
        border: none;
        background: white;
        padding: 8px 16px;
    }

    .pagination .page-item.active .page-link {
        background: linear-gradient(135deg, var(--saffron-start), var(--golden));
        color: white;
    }

    .pagination .page-link:hover {
        background: var(--saffron-start);
        color: white;
    }

/* ===== RESPONSIVE MEDIA QUERIES ===== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 992px) {
    .hero {
        min-height: 70vh;
        text-align: center;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .page-header {
        padding: 3rem 0;
    }

        .page-header h1 {
            font-size: 2.5rem;
        }

    .site-footer {
        padding: 2.5rem 0 1rem;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    body {
        scroll-padding-top: 60px;
    }

    .hero {
        padding: 60px 0;
        min-height: auto;
    }

    .hero-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .navbar-brand {
        font-size: 1.3rem;
    }

        .navbar-brand img {
            height: 32px;
        }

    .category-card {
        padding: 15px 10px;
    }

        .category-card i {
            font-size: 1.8rem;
        }

    .hero-emblem {
        width: 140px;
        height: 140px;
    }

    .newsletter {
        padding: 2rem 1rem;
    }

    .display-5 {
        font-size: 2rem;
    }

    .page-header {
        padding: 2.5rem 0;
    }

        .page-header h1 {
            font-size: 2rem;
        }

    .team-card {
        margin-bottom: 1.5rem;
    }

    .contact-info {
        margin-bottom: 2rem;
    }

    .site-footer {
        padding: 2rem 0 1rem;
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-menu li a {
        justify-content: center;
    }

    .contact-info-footer p {
        justify-content: center;
    }

    .bio-info {
        flex-direction: column;
        gap: 5px;
    }

    .story-footer {
        flex-direction: column;
        gap: 5px;
    }

    .featured-story-card {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.7rem;
    }

    .brand-tag {
        font-size: 0.55rem;
    }

    .btn-primary-custom, .btn-outline-light {
        padding: 8px 16px;
        font-size: 13px;
    }

    .story-meta {
        flex-wrap: wrap;
        gap: 8px;
    }

    .category-card h5 {
        font-size: 0.9rem;
    }

    .input-group {
        flex-direction: column;
        gap: 12px;
    }

        .input-group .form-control,
        .input-group .btn {
            border-radius: 40px !important;
            width: 100%;
        }

    footer .row [class^="col-"] {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .page-header {
        padding: 2rem 0;
    }

        .page-header h1 {
            font-size: 1.8rem;
        }

    .breadcrumb {
        font-size: 0.85rem;
    }

    .site-footer {
        padding: 1.5rem 0 1rem;
    }

    .footer-logo {
        font-size: 1.4rem;
    }

        .footer-logo img {
            max-height: 45px;
        }

    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .copyright p {
        font-size: 0.75rem;
    }

    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
    }

    .impact-stat h3 {
        font-size: 1.3rem;
    }

    .timeline-card {
        margin-bottom: 1rem;
    }

    .value-card {
        padding: 1.5rem;
    }

    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }

    .accordion-button {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

.text-start {
    text-align: left;
}

.text-end {
    text-align: right;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 1rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.p-3 {
    padding: 1rem;
}

.p-4 {
    padding: 1.5rem;
}

.p-5 {
    padding: 3rem;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}


/* ===== POEMS PAGE STYLES ===== */

/* Poem Cards */
.poem-card-modern {
    background: var(--white-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

    .poem-card-modern:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(43, 95, 138, 0.15);
    }

.poem-header {
    border-bottom: 2px solid rgba(43, 95, 138, 0.1);
}

.poem-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.poem-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.75rem;
    color: var(--text-muted);
    padding-top: 10px;
    border-top: 1px solid #eee;
}

    .poem-meta i {
        width: 16px;
        color: var(--kumkum-red);
        margin-right: 4px;
    }

/* Poem Category Cards */
.poem-cat-card {
    background: var(--white-color);
    border-radius: 15px;
    transition: all 0.3s;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

    .poem-cat-card:hover {
        background: linear-gradient(135deg, var(--saffron-start), var(--golden));
        color: var(--white-color);
        transform: translateY(-3px);
    }

    .poem-cat-card i {
        color: var(--saffron-start);
    }

    .poem-cat-card:hover i {
        color: var(--white-color);
    }

    .poem-cat-card:hover .text-muted {
        color: rgba(255, 255, 255, 0.7) !important;
    }

/* Poet Cards */
.poet-card {
    background: var(--white-color);
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    height: 100%;
}

    .poet-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(43, 95, 138, 0.1);
    }

.poet-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--saffron-start), var(--golden));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
}

.poet-stats {
    font-size: 0.8rem;
    color: var(--text-muted);
}

    .poet-stats i {
        color: var(--saffron-start);
        margin-right: 5px;
    }

/* Writing Tips Section */
.writing-tips {
    border-left: 4px solid var(--saffron-start);
}

    .writing-tips ul li i {
        width: 20px;
    }

/* Featured Poem */
.featured-poem {
    position: relative;
    overflow: hidden;
}

    .featured-poem::before {
        content: '❝';
        position: absolute;
        bottom: 20px;
        right: 30px;
        font-size: 120px;
        opacity: 0.08;
        font-family: serif;
    }

/* Responsive Adjustments for Poems Page */
@media (max-width: 768px) {
    .poem-excerpt {
        font-size: 0.85rem;
    }

    .poem-meta {
        gap: 10px;
        font-size: 0.7rem;
    }

    .poet-avatar {
        width: 60px;
        height: 60px;
    }

        .poet-avatar i {
            font-size: 2rem;
        }

    .poet-card h5 {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .poem-header {
        padding: 1rem !important;
    }

        .poem-header h4 {
            font-size: 1.1rem;
        }

    .poem-body {
        padding: 1rem !important;
    }

    .poem-excerpt {
        font-size: 0.8rem;
    }

    .poem-cat-card {
        padding: 0.75rem !important;
    }

        .poem-cat-card i {
            font-size: 1.2rem;
        }

        .poem-cat-card span {
            font-size: 0.8rem;
        }

    .writing-tips {
        margin-top: 1.5rem;
    }
}


/* ===== DETAIL PAGES STYLES ===== */

/* Sidebar Cards */
.sidebar-card {
    transition: transform 0.3s ease;
}

    .sidebar-card:hover {
        transform: translateY(-3px);
    }

/* Timeline List */
.timeline-list li {
    position: relative;
    padding-left: 15px;
}

    .timeline-list li i {
        position: absolute;
        left: 0;
        top: 6px;
    }

/* Quote Block */
.quote-block {
    position: relative;
    overflow: hidden;
}

    .quote-block::after {
        content: '❝';
        position: absolute;
        bottom: -20px;
        right: 20px;
        font-size: 80px;
        opacity: 0.1;
        font-family: serif;
    }

/* Story Highlight */
.story-highlight {
    border-left: 4px solid var(--kumkum-red);
}

/* Poem Text Styling */
.poem-text .stanza {
    line-height: 1.8;
}

.poem-text .lead {
    font-size: 1.1rem;
    letter-spacing: 0.3px;
}

/* Author Box */
.author-box {
    border-left: 4px solid var(--turmeric-yellow);
}

/* Progress Bar */
.progress {
    height: 8px;
    border-radius: 4px;
    background-color: #e0e0e0;
}

.progress-bar {
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .poem-detail-card {
        padding: 1.5rem !important;
    }

    .poem-text .lead {
        font-size: 0.95rem;
    }

    .story-meta-header {
        flex-direction: column;
        gap: 10px;
    }

    .bio-hero-placeholder {
        height: 250px !important;
    }

    .quick-info .row {
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .poem-text .lead {
        font-size: 0.85rem;
    }

    .quote-block p {
        font-size: 0.9rem;
    }
}

/* ===== DETAIL PAGES STYLES - FIXED COLOR COMBINATIONS ===== */

/* Sidebar Cards */
.sidebar-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(43, 95, 138, 0.1);
}

    .sidebar-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(43, 95, 138, 0.1);
        border-color: rgba(43, 95, 138, 0.2);
    }

    .sidebar-card h5 {
        color: #2C3E50;
        border-left: 3px solid var(--saffron-start);
        padding-left: 12px;
        margin-bottom: 1.2rem;
    }

        .sidebar-card h5 i {
            color: var(--saffron-start);
            margin-right: 8px;
        }

/* Stat Items */
.stat-item {
    padding: 8px 0;
    border-bottom: 1px dashed #f0f0f0;
}

    .stat-item:last-child {
        border-bottom: none;
    }

    .stat-item span {
        color: #7A7A7A;
    }

    .stat-item strong {
        color: var(--saffron-end);
    }

/* Related Items */
.related-item {
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.3s ease;
}

    .related-item:last-child {
        border-bottom: none;
    }

    .related-item:hover {
        transform: translateX(5px);
    }

    .related-item i {
        color: var(--saffron-start);
        transition: all 0.3s ease;
    }

    .related-item:hover i {
        color: var(--golden);
    }

    .related-item a {
        color: #2C3E50;
        font-weight: 600;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .related-item a:hover {
            color: var(--saffron-start);
        }

    .related-item p {
        margin-bottom: 0;
        font-size: 0.8rem;
    }

/* Timeline List */
.timeline-list {
    list-style: none;
    padding: 0;
}

    .timeline-list li {
        position: relative;
        padding-left: 20px;
        margin-bottom: 12px;
        color: #5D6D7E;
    }

        .timeline-list li i {
            position: absolute;
            left: 0;
            top: 5px;
            font-size: 8px;
            color: var(--saffron-start);
        }

        .timeline-list li strong {
            color: var(--saffron-end);
            margin-right: 8px;
        }

/* Quick Info Box */
.quick-info {
    background: linear-gradient(135deg, rgba(43, 95, 138, 0.05), rgba(30, 58, 95, 0.05));
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(43, 95, 138, 0.15);
}

    .quick-info i {
        color: var(--saffron-start);
    }

    .quick-info h6 {
        color: #2C3E50;
        margin-top: 0.5rem;
        margin-bottom: 0.25rem;
        font-weight: 600;
    }

    .quick-info small {
        color: #7A7A7A;
    }

/* Quote Block */
.quote-block {
    background: linear-gradient(135deg, var(--saffron-start), var(--saffron-end));
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
}

    .quote-block::after {
        content: '❝';
        position: absolute;
        bottom: -20px;
        right: 20px;
        font-size: 100px;
        opacity: 0.15;
        font-family: serif;
    }

    .quote-block p {
        font-size: 1.2rem;
        font-style: italic;
        margin-bottom: 0.5rem;
    }

    .quote-block footer {
        color: rgba(255, 255, 255, 0.8);
        font-size: 0.9rem;
    }

/* Story Highlight Box */
.story-highlight {
    background: linear-gradient(135deg, rgba(43, 95, 138, 0.05), rgba(30, 58, 95, 0.05));
    border-left: 4px solid var(--saffron-start);
    border-radius: 12px;
    padding: 1.5rem;
}

    .story-highlight p {
        margin-bottom: 0;
        font-style: italic;
        color: #5D6D7E;
    }

/* Author Box */
.author-box {
    background: linear-gradient(135deg, #F0F4F8, #E8EEF4);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(43, 95, 138, 0.2);
}

    .author-box i {
        color: var(--saffron-start);
    }

    .author-box h6 {
        color: #2C3E50;
        margin-bottom: 0.25rem;
        font-weight: 600;
    }

    .author-box p {
        color: #7A7A7A;
        font-size: 0.85rem;
        margin-bottom: 0;
    }

/* Comments Section */
.comments-section {
    margin-top: 2rem;
}

.comment-item {
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

    .comment-item:last-child {
        border-bottom: none;
    }

    .comment-item i {
        color: #BDC3C7;
    }

    .comment-item h6 {
        color: #2C3E50;
        margin-bottom: 0.25rem;
        font-weight: 600;
    }

    .comment-item small {
        color: #95A5A6;
        font-size: 0.7rem;
    }

    .comment-item p {
        color: #5D6D7E;
        margin-top: 0.5rem;
        margin-bottom: 0.25rem;
        font-size: 0.9rem;
    }

    .comment-item a {
        color: var(--saffron-start);
        font-size: 0.75rem;
        text-decoration: none;
    }

        .comment-item a:hover {
            color: var(--saffron-end);
        }

/* Comment Form */
.comment-form textarea {
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

    .comment-form textarea:focus {
        border-color: var(--saffron-start);
        box-shadow: 0 0 0 0.2rem rgba(43, 95, 138, 0.25);
        outline: none;
    }

/* Tags */
.tags .badge {
    padding: 6px 14px;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
}

    .tags .badge:hover {
        transform: translateY(-2px);
    }

/* Progress Bar */
.progress {
    height: 8px;
    border-radius: 10px;
    background-color: #f0f0f0;
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(90deg, var(--saffron-start), var(--saffron-end));
    border-radius: 10px;
}

/* Share Section */
.share-section .btn-outline-danger {
    border-color: var(--saffron-start);
    color: var(--saffron-start);
    width: 38px;
    height: 38px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

    .share-section .btn-outline-danger:hover {
        background: linear-gradient(135deg, var(--saffron-start), var(--saffron-end));
        border-color: transparent;
        color: #FFFFFF;
        transform: translateY(-3px);
    }

/* Biography Hero */
.bio-hero-placeholder {
    background: linear-gradient(135deg, var(--saffron-start), var(--saffron-end));
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

    .bio-hero-placeholder i {
        color: rgba(255, 255, 255, 0.3);
        font-size: 6rem;
    }

/* Story Hero */
.story-hero-placeholder {
    background: linear-gradient(135deg, var(--saffron-start), var(--saffron-end));
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

    .story-hero-placeholder i {
        color: rgba(255, 255, 255, 0.3);
        font-size: 6rem;
    }

/* Poem Detail Card */
.poem-detail-card {
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(43, 95, 138, 0.1);
}

.poem-header {
    border-bottom: 2px solid rgba(43, 95, 138, 0.15);
}

    .poem-header i {
        color: var(--golden);
    }

    .poem-header h1 {
        color: #2C3E50;
    }

    .poem-header p {
        color: #7A7A7A;
    }

/* Poem Text */
.poem-text .stanza {
    margin-bottom: 2rem;
}

.poem-text .lead {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #5D6D7E;
    font-style: italic;
}

.poem-footer {
    border-top: 2px solid rgba(43, 95, 138, 0.15);
}

    .poem-footer .btn-outline-danger {
        border-color: var(--saffron-start);
        color: var(--saffron-start);
        border-radius: 30px;
        padding: 8px 20px;
        transition: all 0.3s ease;
    }

        .poem-footer .btn-outline-danger:hover {
            background: linear-gradient(135deg, var(--saffron-start), var(--saffron-end));
            border-color: transparent;
            color: #FFFFFF;
            transform: translateY(-2px);
        }

/* Poet Info Box */
.poet-info {
    background: linear-gradient(135deg, rgba(43, 95, 138, 0.05), rgba(30, 58, 95, 0.05));
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(43, 95, 138, 0.15);
}

    .poet-info i {
        color: var(--saffron-start);
    }

    .poet-info h5 {
        color: #2C3E50;
        margin-bottom: 0.5rem;
    }

    .poet-info p {
        color: #5D6D7E;
        font-size: 0.9rem;
        line-height: 1.6;
    }

/* Meaning Box */
.meaning-box {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(43, 95, 138, 0.1);
}

    .meaning-box h5 {
        color: #2C3E50;
        border-left: 3px solid var(--golden);
        padding-left: 12px;
    }

        .meaning-box h5 i {
            color: var(--golden);
            margin-right: 8px;
        }

    .meaning-box p {
        color: #5D6D7E;
        line-height: 1.7;
    }

/* Poem Card Small */
.poem-card-sm {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(43, 95, 138, 0.1);
}

    .poem-card-sm:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(43, 95, 138, 0.12);
        border-color: rgba(43, 95, 138, 0.3);
    }

    .poem-card-sm i {
        color: var(--saffron-end);
        margin-bottom: 0.5rem;
    }

    .poem-card-sm h6 {
        color: #2C3E50;
        margin-bottom: 0.25rem;
        font-weight: 600;
    }

    .poem-card-sm p {
        color: #7A7A7A;
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }

/* Story Card Small */
.story-card-sm {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(43, 95, 138, 0.1);
}

    .story-card-sm:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(43, 95, 138, 0.12);
        border-color: rgba(43, 95, 138, 0.3);
    }

    .story-card-sm i {
        color: var(--saffron-end);
        margin-bottom: 0.5rem;
    }

    .story-card-sm h6 {
        color: #2C3E50;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }

    .story-card-sm p {
        color: #7A7A7A;
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .quote-block {
        padding: 1.2rem;
    }

        .quote-block p {
            font-size: 1rem;
        }

    .poem-text .lead {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .bio-hero-placeholder,
    .story-hero-placeholder {
        height: 250px;
    }

        .bio-hero-placeholder i,
        .story-hero-placeholder i {
            font-size: 4rem;
        }

    .sidebar-card {
        padding: 1.2rem;
    }

    .quick-info {
        padding: 1rem;
    }

        .quick-info i {
            font-size: 1.2rem;
        }

        .quick-info h6 {
            font-size: 0.85rem;
        }

        .quick-info small {
            font-size: 0.7rem;
        }
}

@media (max-width: 576px) {
    .poem-detail-card {
        padding: 1rem !important;
    }

    .poem-text .lead {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .quote-block p {
        font-size: 0.85rem;
    }

    .author-box {
        padding: 1rem;
    }

        .author-box i {
            font-size: 2rem;
        }

        .author-box h6 {
            font-size: 0.9rem;
        }

        .author-box p {
            font-size: 0.75rem;
        }

    .comment-item {
        gap: 10px;
    }

        .comment-item i {
            font-size: 1.5rem;
        }

        .comment-item h6 {
            font-size: 0.85rem;
        }

        .comment-item p {
            font-size: 0.8rem;
        }

    .tags .badge {
        font-size: 0.65rem;
        padding: 4px 10px;
    }

    .share-section .btn-outline-danger {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
}

/* ===== CARD COLOR FIXES FOR ALL PAGES ===== */

/* Story Card Fix */
.story-card {
    background: #FFFFFF;
    border: 1px solid rgba(43, 95, 138, 0.08);
}

    .story-card:hover {
        border-color: rgba(43, 95, 138, 0.2);
    }

/* Category Card Fix */
.category-card {
    background: #FFFFFF;
    border: 1px solid rgba(43, 95, 138, 0.1);
}

    .category-card i {
        color: var(--saffron-end);
    }

    .category-card h5 {
        color: #2C3E50;
    }

    .category-card:hover {
        background: linear-gradient(135deg, var(--saffron-start), var(--saffron-end));
    }

        .category-card:hover i,
        .category-card:hover h5 {
            color: #FFFFFF;
        }

/* Timeline Card Fix */
.timeline-card {
    background: #FFFFFF;
    border: 1px solid rgba(43, 95, 138, 0.08);
    transition: all 0.3s ease;
}

    .timeline-card:hover {
        border-color: rgba(43, 95, 138, 0.2);
        box-shadow: 0 15px 35px rgba(43, 95, 138, 0.1);
    }

/* Team Card Fix */
.team-card {
    background: #FFFFFF;
    border: 1px solid rgba(43, 95, 138, 0.08);
}

    .team-card:hover {
        border-color: rgba(43, 95, 138, 0.2);
    }

/* Value Card Fix */
.value-card {
    background: #FFFFFF;
    border: 1px solid rgba(43, 95, 138, 0.08);
}

    .value-card i {
        color: var(--saffron-end);
    }

    .value-card:hover {
        border-color: rgba(43, 95, 138, 0.2);
    }

/* Biography Card Fix */
.biography-card {
    background: #FFFFFF;
    border: 1px solid rgba(43, 95, 138, 0.08);
}

    .biography-card:hover {
        border-color: rgba(43, 95, 138, 0.2);
    }

.bio-stats {
    border-top-color: rgba(43, 95, 138, 0.15);
}

/* Story Card Modern Fix */
.story-card-modern {
    background: #FFFFFF;
    border: 1px solid rgba(43, 95, 138, 0.08);
}

    .story-card-modern:hover {
        border-color: rgba(43, 95, 138, 0.2);
    }

/* Poem Card Modern Fix */
.poem-card-modern {
    background: #FFFFFF;
    border: 1px solid rgba(43, 95, 138, 0.08);
}

    .poem-card-modern:hover {
        border-color: rgba(43, 95, 138, 0.2);
    }

.poem-header {
    border-bottom-color: rgba(43, 95, 138, 0.12);
}

.poem-meta {
    border-top-color: rgba(43, 95, 138, 0.12);
}

/* Accordion Fix */
.accordion-item {
    background: #FFFFFF;
    border: 1px solid rgba(43, 95, 138, 0.08);
}

.accordion-button {
    background: #FFFFFF;
    color: #2C3E50;
}

    .accordion-button:not(.collapsed) {
        background: linear-gradient(135deg, var(--saffron-start), var(--saffron-end));
        color: #FFFFFF;
    }

/* Contact Form Fix */
.contact-form {
    background: #FFFFFF;
    border: 1px solid rgba(43, 95, 138, 0.1);
}

/* Newsletter Fix */
.newsletter {
    background: linear-gradient(135deg, var(--saffron-start), var(--saffron-end));
}

/* Badge Fixes */
.category-badge {
    background: linear-gradient(135deg, var(--saffron-start), var(--saffron-end));
    color: #FFFFFF;
}

    .category-badge.freedom {
        background: linear-gradient(135deg, var(--saffron-start), var(--saffron-end));
    }

    .category-badge.revolutionary {
        background: linear-gradient(135deg, #C44B3C, #A03D30);
    }

    .category-badge.scientist {
        background: linear-gradient(135deg, #2C6E8F, #205670);
    }

    .category-badge.warrior {
        background: linear-gradient(135deg, #B85C38, #9A4A2D);
    }

    .category-badge.spiritual {
        background: linear-gradient(135deg, #C65D7E, #A84D6A);
    }

    .category-badge.social {
        background: linear-gradient(135deg, #2E7D64, #236654);
    }
