        /*
Theme Name: Girl Power Africa
Theme URI: https://girlpowerafricamagazine.com
Author: Your Name
Author URI: https://girlpowerafricamagazine.com
Description: Custom theme for Girl Power Africa Magazine - Inspiring young African women to dream big, rise strong, and shine bright
Version: 1.0
License: GPL v2 or later
Text Domain: girlpower
*/         
         
           /* ===== VARIABLES - Elegant Pink & White ===== */
        :root {
          --pink: #718FC8;        /* Changed from #E83A6F to PRESTIGE BLUE */
    --pink-light: #E8EFF8;   /* Changed from #FFE4EC to Light '''''''' */
    --pink-dark: #4A6A9E;    /* Changed from #C41E54 to Dark '''''''' */
    --white: #FEFEFE;;
    --off-white: #F9F9F9;
    --grey-light: #F0F0F0;
    --grey: #888888;
    --grey-dark: #444444;
    --black: #000000;        /* Changed from #222222 to True Black for gradient */
            
            --font-heading: 'Playfair Display', serif;
            --font-body: 'Raleway', sans-serif;
            
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
            --shadow-hover: 0 20px 40px rgba(232, 58, 111, 0.08);
            --transition: all 0.3s ease;
        }

        /* ===== RESET & BASE ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            color: var(--grey-dark);
            line-height: 1.6;
            background: var(--white);
            font-weight: 300;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
            color: var(--black);
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== HEADER & NAVIGATION ===== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: var(--white);
            z-index: 1000;
            border-bottom: 1px solid var(--grey-light);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo a {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--black);
            letter-spacing: -0.5px;
        }

        .logo span {
            color: var(--pink);
            font-weight: 800;
            font-style: italic;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        .nav-menu a {
            font-weight: 500;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--grey-dark);
            position: relative;
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: var(--pink);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--pink);
            transition: var(--transition);
        }

        .nav-menu a:hover::after,
        .nav-menu a.active::after {
            width: 100%;
        }

        .hamburger {
            display: none;
            cursor: pointer;
        }

        .bar {
            display: block;
            width: 25px;
            height: 2px;
            margin: 5px auto;
            background: var(--black);
            transition: var(--transition);
        }

        /* ===== HERO SECTION ===== */
        .hero {
            height: 100vh;
            min-height: 700px;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            margin-top: 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 0 20px;
            animation: fadeInUp 1s ease;
        }

        .hero-subtitle {
            font-family: var(--font-body);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 1.5rem;
            display: inline-block;
            border-bottom: 2px solid var(--white);
            padding-bottom: 0.5rem;
            font-weight: 300;
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            color: var(--white);
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .hero .highlight {
            color: var(--pink);
            position: relative;
            display: inline-block;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            font-weight: 300;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-scroll {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            text-align: center;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            animation: bounce 2s infinite;
        }

        .hero-scroll span {
            display: block;
            margin-bottom: 0.5rem;
        }

        .hero-scroll i {
            font-size: 1rem;
        }

        /* ===== BUTTONS ===== */
        .btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-family: var(--font-body);
            border-radius: 0;
        }

        .btn-primary {
            background: var(--pink);
            color: var(--white);
        }

        .btn-primary:hover {
            background: var(--pink-dark);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: transparent;
            color: var(--pink);
            border: 1px solid var(--pink);
        }

        .btn-secondary:hover {
            background: var(--pink);
            color: var(--white);
        }

        /* ===== MISSION SECTION - Your Write Up ===== */
        .mission-section {
            padding: 6rem 0;
            background: var(--white);
            border-bottom: 1px solid var(--grey-light);
        }

        .mission-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .mission-tagline {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--pink);
            margin-bottom: 2rem;
            line-height: 1.2;
            position: relative;
            display: inline-block;
        }

        .mission-tagline::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 2px;
            background: var(--pink);
        }

        .mission-text {
            font-size: 1.1rem;
            color: var(--grey-dark);
            margin-bottom: 2rem;
            line-height: 1.8;
            font-weight: 300;
        }

        .mission-text strong {
            color: var(--pink);
            font-weight: 600;
        }

        .mission-quote {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-style: italic;
            color: var(--pink);
            margin: 3rem 0 1rem;
            padding: 2rem 0;
            border-top: 1px solid var(--grey-light);
            border-bottom: 1px solid var(--grey-light);
        }

        .mission-signature {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--black);
            margin-top: 2rem;
        }

        .mission-signature span {
            color: var(--pink);
            font-style: italic;
        }

        /* ===== CATEGORIES SECTION ===== */
        .categories {
            padding: 5rem 0;
            background: var(--off-white);
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .category-item {
            text-align: center;
            padding: 2rem;
            transition: var(--transition);
            background: var(--white);
            border: 1px solid var(--grey-light);
        }

        .category-item:hover {
            transform: translateY(-5px);
            border-color: var(--pink);
            box-shadow: var(--shadow-hover);
        }

        .category-item i {
            font-size: 2.5rem;
            color: var(--pink);
            margin-bottom: 1rem;
            opacity: 0.8;
        }

        .category-item h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .category-item p {
            color: var(--grey);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        /* ===== FEATURED ARTICLES ===== */
        .featured-articles {
            padding: 5rem 0;
            background: var(--white);
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            position: relative;
            display: inline-block;
        }

        .section-title span {
            color: var(--pink);
            font-style: italic;
        }

        .section-subtitle {
            color: var(--grey);
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .article-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2.5rem;
            margin-bottom: 3rem;
        }

        .article-card {
            background: var(--white);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            border: 1px solid var(--grey-light);
        }

        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
            border-color: var(--pink);
        }

        .card-image {
            position: relative;
            height: 280px;
            overflow: hidden;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .article-card:hover .card-image img {
            transform: scale(1.05);
        }

        .category-tag {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--white);
            color: var(--pink);
            padding: 0.3rem 1rem;
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
            z-index: 2;
        }

        .card-content {
            padding: 1.8rem;
            background: var(--white);
        }

        .card-content h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        .card-content h3 a:hover {
            color: var(--pink);
        }

        .excerpt {
            color: var(--grey);
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-top: 1px solid var(--grey-light);
            padding-top: 1rem;
        }

        .author {
            font-size: 0.85rem;
            color: var(--grey);
            font-weight: 500;
        }

        .share-dropdown {
            position: relative;
        }

        .share-dropdown > i {
            cursor: pointer;
            color: var(--grey);
            font-size: 1rem;
            padding: 0.5rem;
        }

        .share-tooltip {
            position: absolute;
            bottom: 100%;
            right: 0;
            background: var(--white);
            box-shadow: var(--shadow-hover);
            padding: 0.5rem;
            display: flex;
            gap: 0.5rem;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            border: 1px solid var(--grey-light);
            margin-bottom: 0.5rem;
        }

        .share-dropdown:hover .share-tooltip {
            opacity: 1;
            visibility: visible;
        }

        .share-tooltip a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            background: var(--off-white);
            color: var(--grey-dark);
            border-radius: 50%;
            font-size: 0.9rem;
        }

        .share-tooltip a:hover {
            background: var(--pink);
            color: var(--white);
        }

        .view-all {
            text-align: center;
            margin-top: 2rem;
        }

        /* ===== NEWSLETTER ===== */
        .newsletter {
            padding: 5rem 0;
            background: var(--off-white);
        }

        .newsletter-wrapper {
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        .newsletter-icon {
            margin-bottom: 2rem;
        }

        .newsletter-icon i {
            font-size: 3rem;
            color: var(--pink);
            opacity: 0.5;
        }

        .newsletter h2 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }

        .newsletter p {
            color: var(--grey);
            margin-bottom: 2rem;
        }

        .newsletter-form {
            margin-bottom: 1rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .newsletter-form input {
            padding: 1rem;
            border: 1px solid var(--grey-light);
            font-size: 0.95rem;
            font-family: var(--font-body);
            background: var(--white);
            transition: var(--transition);
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: var(--pink);
        }

        .newsletter-form button {
            width: 100%;
            cursor: pointer;
        }

        .form-note {
            font-size: 0.8rem;
            color: var(--grey);
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--white);
            padding: 4rem 0 1rem;
            border-top: 1px solid var(--grey-light);
        }

        .footer-main {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-brand h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .footer-brand span {
            color: var(--pink);
            font-style: italic;
        }

        .footer-brand p {
            color: var(--grey);
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: var(--off-white);
            color: var(--grey-dark);
            border-radius: 50%;
            font-size: 1rem;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--pink);
            color: var(--white);
            transform: translateY(-3px);
        }

        .footer-links h4,
        .footer-contact h4 {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: var(--grey);
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            color: var(--pink);
            padding-left: 5px;
        }

        .footer-contact p {
            color: var(--grey);
            margin-bottom: 0.8rem;
            font-size: 0.95rem;
        }

        .whatsapp-link {
            display: inline-block;
            color: #25D366;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .whatsapp-link i {
            margin-right: 0.5rem;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--grey-light);
            color: var(--grey);
            font-size: 0.9rem;
        }

        .footer-bottom i {
            color: var(--pink);
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0) translateX(-50%);
            }
            40% {
                transform: translateY(-10px) translateX(-50%);
            }
            60% {
                transform: translateY(-5px) translateX(-50%);
            }
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 3rem;
            }
            
            .footer-main {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
            
            .mission-tagline {
                font-size: 2rem;
            }
        }

        @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;
                left: -100%;
                top: 70px;
                gap: 0;
                flex-direction: column;
                background: var(--white);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
                padding: 2rem 0;
                border-top: 1px solid var(--grey-light);
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-menu li {
                margin: 1rem 0;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .mission-section {
                padding: 4rem 0;
            }
            
            .mission-tagline {
                font-size: 1.8rem;
            }
            
            .mission-text {
                font-size: 1rem;
                padding: 0 20px;
            }
            
            .mission-quote {
                font-size: 1.2rem;
                margin: 2rem 20px;
            }
            
            .category-grid {
                grid-template-columns: 1fr;
            }
            
            .article-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-main {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .social-links {
                justify-content: center;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
        }
    

        /* Add these styles to your existing style.css */

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 8rem 0 3rem;
    background: var(--off-white);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-header h1 span {
    color: var(--pink);
    font-style: italic;
}

.page-header p {
    color: var(--grey);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== FILTER BAR ===== */
.filter-bar {
    padding: 2rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--grey-light);
}

.filter-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.filter-categories {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    background: transparent;
    border: 1px solid var(--grey-light);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--grey-dark);
    cursor: pointer;
    transition: var(--transition);
    border-radius: 30px;
}

.filter-btn:hover {
    border-color: var(--pink);
    color: var(--pink);
}

.filter-btn.active {
    background: var(--pink);
    border-color: var(--pink);
    color: var(--white);
}

.filter-search {
    position: relative;
    min-width: 250px;
}

.filter-search input {
    width: 100%;
    padding: 0.6rem 1rem 0.6rem 2.5rem;
    border: 1px solid var(--grey-light);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
}

.filter-search input:focus {
    outline: none;
    border-color: var(--pink);
}

.filter-search i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--grey);
    font-size: 0.9rem;
}

/* ===== ARTICLES PAGE ===== */
.articles-page {
    padding: 4rem 0;
    background: var(--white);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Article Card */
.article-card {
    background: var(--white);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--grey-light);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--pink);
}

.article-card .card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.article-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .card-image img {
    transform: scale(1.05);
}

.article-card .category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--white);
    color: var(--pink);
    padding: 0.3rem 1rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    z-index: 2;
}

.article-card .card-content {
    padding: 1.5rem;
    background: var(--white);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.article-card h3 a:hover {
    color: var(--pink);
}

.article-card .excerpt {
    color: var(--grey);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    flex: 1;
}

.article-card .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--grey-light);
    padding-top: 1rem;
    margin-top: auto;
}

.article-card .author {
    font-size: 0.8rem;
    color: var(--grey);
    font-weight: 500;
}

.article-card .share-dropdown {
    position: relative;
}

.article-card .share-dropdown > i {
    cursor: pointer;
    color: var(--grey);
    font-size: 0.9rem;
    padding: 0.5rem;
}

.article-card .share-tooltip {
    position: absolute;
    bottom: 100%;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-hover);
    padding: 0.5rem;
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: 1px solid var(--grey-light);
    margin-bottom: 0.5rem;
}

.article-card .share-dropdown:hover .share-tooltip {
    opacity: 1;
    visibility: visible;
}

.article-card .share-tooltip a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--off-white);
    color: var(--grey-dark);
    border-radius: 50%;
    font-size: 0.8rem;
}

.article-card .share-tooltip a:hover {
    background: var(--pink);
    color: var(--white);
}

/* Load More Button */
.load-more {
    text-align: center;
    margin-top: 2rem;
}

/* No Results */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem;
    color: var(--grey);
    font-size: 1.1rem;
}

.no-results i {
    font-size: 3rem;
    color: var(--pink-light);
    margin-bottom: 1rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .filter-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-categories {
        justify-content: center;
    }
    
    .filter-search {
        width: 100%;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .article-card .card-image {
        height: 220px;
    }
}

/* Add these styles to your existing style.css */

/* ===== ABOUT PAGE ===== */

/* About Story Section */
.about-story {
    padding: 5rem 0;
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.story-image:hover img {
    transform: scale(1.02);
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.story-content h2 span {
    color: var(--pink);
    font-style: italic;
}

.story-content .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.story-content p {
    color: var(--grey);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--grey-light);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--pink);
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Mission Section */
.about-mission {
    padding: 5rem 0;
    background: var(--off-white);
}

.mission-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 4rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
}

.mission-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pink);
    color: var(--white);
    padding: 0.5rem 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    border-radius: 30px;
}

.mission-box h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--pink);
    line-height: 1.3;
}

.mission-text p {
    color: var(--grey-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.mission-text strong {
    color: var(--pink);
    font-weight: 600;
}

.mission-quote {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--pink);
    text-align: center;
    margin: 2.5rem 0;
    padding: 2rem;
    border-top: 2px solid var(--pink-light);
    border-bottom: 2px solid var(--pink-light);
}

.mission-signature {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    color: var(--black);
    margin-top: 2rem;
}

.mission-signature span {
    color: var(--pink);
    font-style: italic;
}

/* About Values */
.about-values {
    padding: 5rem 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: var(--off-white);
    transition: var(--transition);
    border: 1px solid var(--grey-light);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--pink);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--pink-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon i {
    font-size: 2rem;
    color: var(--pink);
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.value-card p {
    color: var(--grey);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* About Team */
.about-team {
    padding: 5rem 0;
    background: var(--off-white);
}

.team-subtitle {
    text-align: center;
    color: var(--grey);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.team-card {
    background: var(--white);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--grey-light);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: var(--pink);
    box-shadow: var(--shadow-hover);
}

.team-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--pink-light);
    transition: var(--transition);
}

.team-card:hover .team-image {
    border-color: var(--pink);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.team-role {
    color: var(--pink);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--grey);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--off-white);
    color: var(--grey-dark);
    border-radius: 50%;
    font-size: 1rem;
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--pink);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===== RESPONSIVE FOR ABOUT PAGE ===== */
@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-image {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .story-content h2 {
        font-size: 2rem;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .mission-box {
        padding: 3rem 1.5rem;
    }
    
    .mission-box h2 {
        font-size: 1.8rem;
    }
    
    .mission-quote {
        font-size: 1.2rem;
        padding: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Add these styles to your existing style.css */

/* ===== CONTACT PAGE ===== */

/* Contact Info Cards */
.contact-info {
    padding: 4rem 0 2rem;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.contact-card {
    background: var(--off-white);
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid var(--grey-light);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--pink);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--pink-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 1.8rem;
    color: var(--pink);
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--black);
}

.contact-card p {
    color: var(--grey);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.contact-card .mt-2 {
    margin-top: 1rem;
}

.contact-link {
    color: var(--pink);
    font-weight: 600;
    font-size: 0.95rem;
    word-break: break-word;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--pink-dark);
    text-decoration: underline;
}

address {
    font-style: normal;
    color: var(--grey);
    font-size: 0.95rem;
    line-height: 1.6;
}

.btn-whatsapp-small {
    display: inline-block;
    background: #25D366;
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-top: 1rem;
    transition: var(--transition);
}

.btn-whatsapp-small:hover {
    background: #128C7E;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-whatsapp-small i {
    margin-left: 0.3rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 4rem 0;
    background: var(--off-white);
}

.form-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border: 1px solid var(--grey-light);
    box-shadow: var(--shadow);
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact-form-wrapper h2 span {
    color: var(--pink);
    font-style: italic;
}

.contact-form-wrapper p {
    color: var(--grey);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    width: 100%;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--grey-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: var(--off-white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pink);
    background: var(--white);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--grey);
    font-size: 0.9rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 0.3rem;
    accent-color: var(--pink);
}

.btn-submit {
    width: 100%;
    margin-top: 0.5rem;
    cursor: pointer;
}

.form-success {
    text-align: center;
    padding: 2rem;
    background: var(--pink-light);
    margin-top: 2rem;
    border: 1px solid var(--pink);
}

.form-success i {
    font-size: 3rem;
    color: var(--pink);
    margin-bottom: 1rem;
}

.form-success h3 {
    color: var(--pink);
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--grey-dark);
    margin-bottom: 0;
}

/* Map & Social */
.map-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.map-container {
    height: 350px;
    width: 100%;
    border: 1px solid var(--grey-light);
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

.social-connect {
    background: var(--white);
    padding: 2rem;
    border: 1px solid var(--grey-light);
}

.social-connect h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.social-connect h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--pink);
}

.social-large {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    border: 1px solid var(--grey-light);
    transition: var(--transition);
    color: var(--grey-dark);
}

.social-item:hover {
    border-color: var(--pink);
    transform: translateY(-2px);
}

.social-item i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.social-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

.social-item.instagram:hover i { color: #E4405F; }
.social-item.facebook:hover i { color: #1877F2; }
.social-item.twitter:hover i { color: #1DA1F2; }
.social-item.linkedin:hover i { color: #0A66C2; }

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--white);
}

.faq-grid {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    border: 1px solid var(--grey-light);
    margin-bottom: 1rem;
    background: var(--white);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--pink-light);
}

.faq-question {
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

.faq-question i {
    color: var(--pink);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.2rem 1.5rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    color: var(--grey);
    line-height: 1.7;
    margin: 0;
}

/* ===== RESPONSIVE FOR CONTACT PAGE ===== */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-map-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .social-large {
        grid-template-columns: 1fr;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 1rem;
    }
}

/* Add these styles to your existing style.css */

/* ===== SIMPLE VIDEOS CTA SECTION ===== */
.videos-cta {
    position: relative;
    padding: 6rem 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Creates parallax effect */
    text-align: center;
    color: var(--white);
}

.videos-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: 1;
}

.videos-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.videos-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
    animation: fadeInUp 0.8s ease;
}

.videos-content h2 span {
    color: var(--pink);
    font-style: italic;
    position: relative;
}

.videos-content h2 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(108, 92, 231, 0.2);
    z-index: -1;
}

.videos-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.btn-video {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #FF0000;
    color: var(--white);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
    transition: var(--transition);
}

.btn-video:hover {
    background: #cc0000;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.4);
}

.btn-video i {
    font-size: 1.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .videos-cta {
        padding: 4rem 0;
        background-attachment: scroll; /* Remove parallax on mobile */
    }
    
    .videos-content h2 {
        font-size: 2.2rem;
    }
    
    .videos-content p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .btn-video {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Add these styles to your existing style.css */

/* ===== MAGAZINE GRID SECTION ===== */
.magazine-grid-section {
    padding: 5rem 0;
    background: var(--white);
}

.magazine-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.magazine-card {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    display: block;
}

.magazine-card:hover {
    transform: translateY(-10px);
}

.magazine-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.magazine-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.magazine-card:hover .magazine-image img {
    transform: scale(1.08);
}

.magazine-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(232, 58, 111, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.magazine-card:hover .magazine-overlay {
    opacity: 1;
}

.magazine-overlay span {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid var(--white);
    padding: 0.8rem 2rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.magazine-card:hover .magazine-overlay span {
    transform: translateY(0);
}

.magazine-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--black);
    text-align: center;
    font-weight: 700;
}

.magazine-card p {
    color: var(--grey);
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    margin: 0 auto;
    max-width: 250px;
}

/* ===== RESPONSIVE FOR MAGAZINE GRID ===== */
@media (max-width: 992px) {
    .magazine-grid {
        gap: 1.5rem;
    }
    
    .magazine-image {
        height: 250px;
    }
    
    .magazine-card h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .magazine-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .magazine-image {
        height: 280px;
    }
    
    .magazine-card p {
        max-width: 100%;
    }
}

/* Add these styles to your existing css/style.css */

/* ===== FEATURED ARTICLE ===== */
.featured-article {
    padding: 3rem 0 2rem;
    background: var(--white);
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--off-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.featured-image {
    height: 450px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-image:hover img {
    transform: scale(1.03);
}

.featured-content {
    padding: 3rem;
}

.featured-tag {
    display: inline-block;
    background: var(--pink);
    color: var(--white);
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.featured-content h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    line-height: 1.3;
    color: var(--black);
}

.featured-excerpt {
    color: var(--grey);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.featured-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    color: var(--grey);
    font-size: 0.9rem;
}

.featured-meta i {
    color: var(--pink);
    margin-right: 0.3rem;
}

/* ===== ARTICLES GRID ===== */
.articles-page {
    padding: 4rem 0;
    background: var(--white);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.article-card {
    background: var(--white);
    border: 1px solid var(--grey-light);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--pink);
}

.article-card .card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.article-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .card-image img {
    transform: scale(1.05);
}

.article-card .category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--pink);
    color: var(--white);
    padding: 0.3rem 1rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    z-index: 2;
}

.article-card .card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    font-weight: 700;
}

.article-card h3 a {
    color: var(--black);
    text-decoration: none;
}

.article-card h3 a:hover {
    color: var(--pink);
}

.article-card .excerpt {
    color: var(--grey);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    flex: 1;
}

.article-card .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--grey-light);
    padding-top: 1rem;
    margin-top: auto;
}

.article-card .author {
    font-size: 0.8rem;
    color: var(--grey);
    font-weight: 500;
}

.article-card .author i {
    color: var(--pink);
    margin-right: 0.3rem;
    font-size: 0.7rem;
}

.article-card .date {
    font-size: 0.75rem;
    color: var(--grey);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-image {
        height: 350px;
    }
    
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .featured-content {
        padding: 2rem;
    }
    
    .featured-content h2 {
        font-size: 1.6rem;
    }
    
    .featured-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-wrapper {
        flex-direction: column;
    }
}

/* ===== HERO SECTION MOBILE FIXES ===== */

/* Base hero styles (already in your CSS) */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Tablet Fix (768px - 1024px) */
@media (max-width: 1024px) {
    .hero {
        min-height: 600px;
        background-position: center 30%; /* Adjust vertical position */
    }
    
    .hero h1 {
        font-size: 3rem;
    }
}

/* Mobile Fix (below 768px) */
@media (max-width: 768px) {
    .hero {
        min-height: 500px;
        height: 90vh; /* Slightly shorter on mobile */
        background-position: center 20%; /* Move image up to show face better */
        background-attachment: scroll; /* Remove parallax on mobile */
    }
    
    .hero h1 {
        font-size: 2rem;
        padding: 0 15px;
    }
    
    .hero p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .hero-content {
        padding: 0 15px;
    }
}

/* Small Mobile Fix (below 480px) */
@media (max-width: 480px) {
    .hero {
        min-height: 450px;
        background-position: center 15%; /* Adjust for very small screens */
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
}

/* Modal base styles (add if not present) */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    max-width: 500px;
    width: 90%;
    border-radius: 10px;
    max-height: 90vh;
    overflow-y: auto;
}

/* Spinner */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== ARTICLES PAGE STYLES ===== */

/* Page Header */
.page-header {
    padding: 8rem 0 3rem;
    background: var(--off-white);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-header h1 span {
    color: var(--pink);
    font-style: italic;
}

.page-header p {
    color: var(--grey);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Filter Bar */
.filter-bar {
    padding: 2rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--grey-light);
}

.filter-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.filter-categories {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    background: transparent;
    border: 1px solid var(--grey-light);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--grey-dark);
    cursor: pointer;
    transition: var(--transition);
    border-radius: 30px;
}

.filter-btn:hover {
    border-color: var(--pink);
    color: var(--pink);
}

.filter-btn.active {
    background: var(--pink);
    border-color: var(--pink);
    color: var(--white);
}

.filter-search {
    position: relative;
    min-width: 250px;
}

.filter-search input {
    width: 100%;
    padding: 0.6rem 1rem 0.6rem 2.5rem;
    border: 1px solid var(--grey-light);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
}

.filter-search input:focus {
    outline: none;
    border-color: var(--pink);
}

.filter-search i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--grey);
    font-size: 0.9rem;
}

/* Articles Grid */
.articles-page {
    padding: 4rem 0;
    background: var(--white);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.article-card {
    background: var(--white);
    border: 1px solid var(--grey-light);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--pink);
}

.article-card .card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.article-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .card-image img {
    transform: scale(1.05);
}

.article-card .category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--pink);
    color: var(--white);
    padding: 0.3rem 1rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    z-index: 2;
}

.article-card .card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.article-card h3 a {
    color: var(--black);
    text-decoration: none;
}

.article-card h3 a:hover {
    color: var(--pink);
}

.article-card .excerpt {
    color: var(--grey);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    flex: 1;
}

.article-card .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--grey-light);
    padding-top: 1rem;
    margin-top: auto;
}

.article-card .author {
    font-size: 0.8rem;
    color: var(--grey);
    font-weight: 500;
}

.article-card .author i {
    color: var(--pink);
    margin-right: 0.3rem;
    font-size: 0.7rem;
}

.article-card .date {
    font-size: 0.75rem;
    color: var(--grey);
}

/* Load More Button */
.load-more {
    text-align: center;
    margin-top: 2rem;
}

/* No Results */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem;
    background: var(--off-white);
    border: 1px solid var(--grey-light);
}

.no-results i {
    font-size: 3rem;
    color: var(--pink-light);
    margin-bottom: 1rem;
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .filter-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-categories {
        justify-content: center;
    }
    
    .filter-search {
        width: 100%;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== SINGLE ARTICLE PAGE ===== */

.article-header {
    padding: 8rem 0 2rem;
    text-align: center;
    background: var(--off-white);
}

.article-category span {
    display: inline-block;
    background: var(--pink);
    color: var(--white);
    padding: 0.3rem 1.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.article-header h1 {
    font-size: 3rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: var(--grey);
    font-size: 0.95rem;
}

.article-meta i {
    color: var(--pink);
    margin-right: 0.3rem;
}

.article-featured-image {
    padding: 2rem 0;
}

.article-featured-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.article-content {
    padding: 3rem 0 5rem;
}

.article-body {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--grey-dark);
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body h2 {
    font-size: 2rem;
    margin: 2rem 0 1rem;
}

.article-body h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
}

.article-body blockquote {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--pink);
    border-left: 4px solid var(--pink);
    padding-left: 2rem;
    margin: 2rem 0;
}

.article-share {
    max-width: 700px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--grey-light);
    text-align: center;
}

.article-share h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--grey);
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.share-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--off-white);
    color: var(--grey-dark);
    border-radius: 50%;
    transition: var(--transition);
}

.share-buttons a:hover {
    background: var(--pink);
    color: var(--white);
    transform: translateY(-3px);
}

.author-bio {
    max-width: 700px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: var(--off-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.author-bio img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.author-info p {
    color: var(--grey);
    line-height: 1.6;
}

.related-articles {
    padding: 5rem 0;
    background: var(--off-white);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.related-card {
    background: var(--white);
    padding: 1.5rem;
    border: 1px solid var(--grey-light);
    transition: var(--transition);
}

.related-card:hover {
    transform: translateY(-5px);
    border-color: var(--pink);
}

.related-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.related-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.related-card h3 a {
    color: var(--black);
    text-decoration: none;
}

.related-card h3 a:hover {
    color: var(--pink);
}

.related-card .date {
    color: var(--grey);
    font-size: 0.85rem;
}

/* Comments */
.article-comments {
    max-width: 700px;
    margin: 3rem auto 0;
}

@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== COMMENTS SECTION STYLING ===== */

.comments-area {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid var(--pink-light);
}

.comments-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--black);
    font-family: var(--font-heading);
}

.comments-title span {
    color: var(--pink);
}

/* Comment List */
.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 3rem;
}

.comment-list .children {
    list-style: none;
    padding-left: 3rem;
    margin-left: 2rem;
    border-left: 2px solid var(--pink-light);
}

.comment {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--off-white);
    border: 1px solid var(--grey-light);
    border-radius: 10px;
}

.comment-body {
    position: relative;
}

.comment-meta {
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.comment-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--pink);
}

.comment-author .fn {
    font-weight: 600;
    color: var(--black);
    font-style: normal;
}

.comment-author .says {
    display: none;
}

.comment-metadata {
    color: var(--grey);
    font-size: 0.85rem;
}

.comment-metadata a {
    color: var(--grey);
    text-decoration: none;
}

.comment-metadata a:hover {
    color: var(--pink);
}

.comment-content {
    color: var(--grey-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.comment-content p {
    margin-bottom: 0.8rem;
}

.reply {
    text-align: right;
}

.reply a {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: var(--pink-light);
    color: var(--pink);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    text-decoration: none;
    transition: var(--transition);
}

.reply a:hover {
    background: var(--pink);
    color: var(--white);
}

/* Comment Form */
.comment-respond {
    background: var(--white);
    padding: 2rem;
    border: 1px solid var(--grey-light);
    border-radius: 10px;
    margin-top: 3rem;
}

.comment-reply-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.comment-reply-title small {
    margin-left: 1rem;
}

.comment-reply-title a {
    color: var(--pink);
    text-decoration: none;
    font-size: 0.9rem;
}

.comment-notes {
    color: var(--grey);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.comment-form {
    display: grid;
    gap: 1.5rem;
}

.comment-form-author,
.comment-form-email,
.comment-form-url {
    margin: 0;
}

.comment-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--grey-dark);
    font-weight: 600;
    font-size: 0.9rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--grey-light);
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--off-white);
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--pink);
    background: var(--white);
    box-shadow: 0 0 0 3px var(--pink-light);
}

.comment-form textarea {
    resize: vertical;
    min-height: 150px;
}

.comment-form-cookies-consent {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comment-form-cookies-consent input[type="checkbox"] {
    width: auto;
    accent-color: var(--pink);
}

.comment-form-cookies-consent label {
    margin: 0;
    font-size: 0.9rem;
    color: var(--grey);
}

.form-submit {
    margin-top: 1rem;
}

.form-submit .submit {
    background: var(--pink);
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.form-submit .submit:hover {
    background: var(--pink-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 58, 111, 0.3);
}

/* No Comments */
.no-comments {
    text-align: center;
    padding: 2rem;
    background: var(--off-white);
    border: 1px solid var(--grey-light);
    border-radius: 10px;
    color: var(--grey);
}

/* Pingbacks & Trackbacks */
.comment .comment-body .pingback,
.comment .comment-body .trackback {
    padding: 0.5rem 0;
}

/* Navigation */
.comment-navigation {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
}

.comment-navigation a {
    color: var(--pink);
    text-decoration: none;
}

.comment-navigation a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .comment-list .children {
        padding-left: 1rem;
        margin-left: 1rem;
    }
    
    .comment-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .comment-respond {
        padding: 1.5rem;
    }
    
    .form-submit .submit {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .comment-author {
        flex-wrap: wrap;
    }
    
    .comment-list .children {
        padding-left: 0.5rem;
        margin-left: 0.5rem;
    }
}

/* ===== BUY MAGAZINES PAGE STYLES ===== */
.magazine-shop {
    padding: 4rem 0;
    background: var(--white);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.magazine-product {
    background: var(--white);
    border: 1px solid var(--grey-light);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
}

.magazine-product:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--pink);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--pink);
    color: var(--white);
    padding: 0.4rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    border-radius: 25px;
    box-shadow: 0 3px 8px rgba(232, 58, 111, 0.3);
}

.product-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.magazine-product:hover .product-image img {
    transform: scale(1.08);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(232, 58, 111, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.magazine-product:hover .product-overlay {
    opacity: 1;
}

.preview-btn {
    background: var(--white);
    color: var(--pink);
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.magazine-product:hover .preview-btn {
    transform: translateY(0);
}

.preview-btn:hover {
    background: var(--pink-dark);
    color: var(--white);
}

.product-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.product-desc {
    color: var(--grey);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pink);
    margin-bottom: 1rem;
}

.old-price {
    font-size: 1rem;
    color: var(--grey);
    text-decoration: line-through;
    margin-left: 0.5rem;
    font-weight: 400;
}

.btn-buy {
    width: 100%;
    padding: 0.9rem;
    background: var(--pink);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.btn-buy:hover {
    background: var(--pink-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 58, 111, 0.3);
}

/* Product Variations */
.product-bundle {
    border: 2px solid var(--pink-light);
}

.product-subscription {
    border: 2px solid #F5B81B;
}

.bundle-label {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
}

/* Steps Grid */
.how-it-works {
    padding: 5rem 0;
    background: var(--off-white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.step-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border: 1px solid var(--grey-light);
    border-radius: 10px;
    transition: var(--transition);
    position: relative;
}

.step-item:hover {
    transform: translateY(-5px);
    border-color: var(--pink);
    box-shadow: var(--shadow-hover);
}

.step-number {
    width: 45px;
    height: 45px;
    background: var(--pink);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0 auto 1rem;
}

.step-item i {
    font-size: 2rem;
    color: var(--pink);
    margin-bottom: 1rem;
}

.step-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step-item p {
    color: var(--grey);
    font-size: 0.9rem;
}

/* Payment Methods */
.payment-methods {
    padding: 3rem 0;
    text-align: center;
}

.payment-methods h3 {
    color: var(--grey);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 1rem;
}

.payment-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.payment-icons i {
    font-size: 2.5rem;
    color: var(--grey-dark);
    transition: var(--transition);
}

.payment-icons i:hover {
    color: var(--pink);
    transform: translateY(-3px);
}

.payment-icons span {
    padding: 0.5rem 1rem;
    background: var(--off-white);
    border: 1px solid var(--grey-light);
    border-radius: 30px;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--off-white);
}

.faq-grid {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--grey-light);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 1.2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question:hover {
    background: var(--pink-light);
}

.faq-question h3 {
    font-size: 1rem;
    margin: 0;
}

.faq-question i {
    color: var(--pink);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.2rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .shop-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-icons {
        gap: 1.5rem;
    }
    
    .payment-icons i {
        font-size: 2rem;
    }
}

/* Style Stripe payment buttons */
.wp-simple-pay-checkout-button,
.stripe-button-el,
.priconix-pay-button {
    background: var(--pink) !important;
    color: white !important;
    padding: 0.9rem 1.5rem !important;
    border-radius: 5px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border: none !important;
    width: 100% !important;
    margin-top: 0.5rem !important;
    transition: all 0.3s ease !important;
}

.wp-simple-pay-checkout-button:hover,
.stripe-button-el:hover,
.priconix-pay-button:hover {
    background: var(--pink-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 58, 111, 0.3);
}

/* Hide Stripe's default styling that might conflict */
.stripe-button-el span {
    display: none !important;
}

/* ===== PAYMENT RESULT PAGES ===== */

.payment-result {
    padding: 6rem 0;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
}

.result-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: var(--white);
    border: 1px solid var(--grey-light);
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    position: relative;
    overflow: hidden;
}

.result-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--pink), var(--pink-light));
}

/* Result Icons */
.result-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: popIn 0.5s ease;
}

.result-icon.success {
    background: #d4edda;
    color: #28a745;
    font-size: 4rem;
}

.result-icon.cancel {
    background: #fff3cd;
    color: #ffc107;
    font-size: 4rem;
}

.result-icon i {
    animation: scaleIn 0.3s ease 0.2s both;
}

/* Typography */
.result-box h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.payment-result.success h1 {
    color: #28a745;
}

.payment-result.cancel h1 {
    color: #ffc107;
}

.result-box .thank-you,
.result-box .message {
    font-size: 1.2rem;
    color: var(--grey);
    margin-bottom: 2rem;
}

/* Payment Details */
.payment-details {
    background: var(--off-white);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: left;
}

.payment-details h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.payment-details ul {
    list-style: none;
    padding: 0;
}

.payment-details li {
    margin-bottom: 0.8rem;
    color: var(--grey-dark);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.payment-details li i {
    color: var(--pink);
    width: 20px;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.action-buttons .btn {
    min-width: 200px;
    padding: 1rem 1.5rem;
}

/* Support Info */
.support-info {
    color: var(--grey);
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

.support-info a {
    color: var(--pink);
    text-decoration: none;
}

.support-info a:hover {
    text-decoration: underline;
}

.support-info i {
    margin-right: 0.3rem;
}

/* Related Magazines Section */
.related-magazines,
.quick-faq {
    padding: 4rem 0;
    background: var(--off-white);
}

.magazines-mini-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.mini-magazine-card {
    background: var(--white);
    padding: 1.5rem;
    border: 1px solid var(--grey-light);
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.mini-magazine-card:hover {
    transform: translateY(-5px);
    border-color: var(--pink);
}

.mini-magazine-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.mini-magazine-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.mini-magazine-card .price {
    color: var(--pink);
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.btn-small {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--pink-light);
    color: var(--pink);
    border-radius: 5px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-small:hover {
    background: var(--pink);
    color: var(--white);
}

/* FAQ Mini */
.faq-mini {
    max-width: 800px;
    margin: 2rem auto 0;
}

.faq-mini .faq-item {
    background: var(--white);
    border: 1px solid var(--grey-light);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 10px;
}

.faq-mini .faq-item h4 {
    color: var(--pink);
    margin-bottom: 0.5rem;
}

.faq-mini .faq-item p {
    color: var(--grey);
    margin: 0;
}

/* Animations */
@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    80% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .payment-result {
        padding: 4rem 0;
    }
    
    .result-box {
        padding: 2rem;
        margin: 0 20px;
    }
    
    .result-box h1 {
        font-size: 2rem;
    }
    
    .action-buttons .btn {
        width: 100%;
    }
    
    .magazines-mini-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}

/* ===== SHOP/CART STYLES ===== */

/* Shop Grid */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 3rem 0;
}

.product-card {
    background: var(--black-light);
    border: 1px solid var(--grey-light);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: #FF4D6D;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--pink-gradient);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
}

.product-image {
    height: 280px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.product-desc {
    color: var(--grey);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--pink-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.old-price {
    font-size: 0.9rem;
    color: var(--grey);
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.add-to-cart-btn {
    width: 100%;
    padding: 0.8rem;
    background: var(--pink-gradient);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
}

/* Cart Icon */
.cart-icon {
    position: relative;
    margin-left: 1.5rem;
}

.cart-icon a {
    color: var(--white);
    font-size: 1.2rem;
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -12px;
    background: var(--pink-gradient);
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 50%;
}

/* Cart Page */
.cart-section {
    padding: 4rem 0;
    min-height: 60vh;
}

.empty-cart {
    text-align: center;
    padding: 4rem;
}

.empty-cart i {
    font-size: 4rem;
    color: var(--grey);
    margin-bottom: 1rem;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th {
    text-align: left;
    padding: 1rem;
    background: var(--black-light);
    border-bottom: 2px solid var(--grey-light);
}

.cart-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--grey-light);
}

.product-cell {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.product-cell img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-controls button {
    width: 30px;
    height: 30px;
    background: var(--black-lighter);
    border: 1px solid var(--grey-light);
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

.cart-qty {
    width: 60px;
    padding: 0.5rem;
    text-align: center;
    background: var(--black);
    border: 1px solid var(--grey-light);
    color: white;
}

.remove-item {
    background: none;
    border: none;
    color: #ff6b6b;
    cursor: pointer;
    font-size: 1rem;
}

.cart-summary {
    margin-top: 2rem;
    display: flex;
    justify-content: flex-end;
}

.summary-box {
    width: 300px;
    padding: 1.5rem;
    background: var(--black-light);
    border: 1px solid var(--grey-light);
    border-radius: 10px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.summary-row.total {
    font-size: 1.2rem;
    font-weight: 700;
    border-top: 1px solid var(--grey-light);
    padding-top: 1rem;
    margin-top: 1rem;
}

.checkout-btn {
    width: 100%;
    margin-top: 1rem;
}

/* Checkout Page */
.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    padding: 3rem 0;
}

.checkout-form {
    background: var(--black-light);
    padding: 2rem;
    border: 1px solid var(--grey-light);
    border-radius: 10px;
}

.checkout-form .form-group {
    margin-bottom: 1.5rem;
}

.checkout-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.checkout-form input,
.checkout-form select {
    width: 100%;
    padding: 0.8rem;
    background: var(--black);
    border: 1px solid var(--grey-light);
    color: white;
    border-radius: 5px;
}

.checkout-form input:focus,
.checkout-form select:focus {
    outline: none;
    border-color: #FF4D6D;
}

.order-summary {
    background: var(--black-light);
    padding: 2rem;
    border: 1px solid var(--grey-light);
    border-radius: 10px;
    height: fit-content;
}

.order-items {
    margin: 1.5rem 0;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--grey-light);
}

.order-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 1rem 0;
    border-top: 2px solid var(--grey-light);
    margin-top: 1rem;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--grey-light);
    border-radius: 8px;
    margin-bottom: 0.8rem;
    cursor: pointer;
}

.payment-option:hover {
    border-color: #FF4D6D;
}

.btn-block {
    width: 100%;
    margin-top: 1rem;
}

.secure-notice {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--grey);
}

/* Download Page */
.download-section {
    padding: 4rem 0;
}

.download-success {
    text-align: center;
    margin-bottom: 3rem;
}

.download-success i {
    font-size: 4rem;
    background: var(--pink-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.download-success h1 {
    margin-top: 1rem;
}

.download-items {
    max-width: 800px;
    margin: 0 auto;
}

.download-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--black-light);
    border: 1px solid var(--grey-light);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.download-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.download-info {
    flex: 1;
}

.download-info h3 {
    margin-bottom: 0.3rem;
}

.download-btn {
    white-space: nowrap;
}

.download-actions {
    text-align: center;
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.email-notice {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: var(--black-light);
    border-radius: 10px;
    color: var(--grey);
}

.email-notice i {
    margin-right: 0.5rem;
    color: #FF4D6D;
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--black-light);
    border: 1px solid #FF4D6D;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1000;
    transform: translateX(400px);
    transition: transform 0.3s ease;
}

.cart-notification.show {
    transform: translateX(0);
}

.cart-notification i {
    color: #28a745;
    font-size: 1.2rem;
}

.view-cart {
    background: var(--pink-gradient);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 992px) {
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .checkout-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .shop-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-table {
        display: block;
        overflow-x: auto;
    }
    
    .download-item {
        flex-direction: column;
        text-align: center;
    }
    
    .download-actions {
        flex-direction: column;
    }
}

/* Fix for product price visibility */
.product-price {
    color: #FF4D6D !important;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.product-price span {
    color: #FF4D6D !important;
}

/* Fix for Add to Cart button */
.add-to-cart-btn {
    background: linear-gradient(135deg, #FF6B8B 0%, #FF4D6D 50%, #718FC8 100%) !important;
    color: #FEFEFE; !important;
    padding: 12px 20px !important;
    border: none !important;
    border-radius: 5px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    width: 100% !important;
    display: block !important;
    text-align: center !important;
    margin-top: 10px !important;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Fix for product card text */
.product-card h3 {
    color: #FEFEFE; !important;
}

.product-desc {
    color: #CCCCCC !important;
}

.product-price .old-price {
    color: #888888 !important;
    text-decoration: line-through;
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #1a1a1a;
    border-left: 4px solid #FF4D6D;
    border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 9999;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transform: translateX(400px);
    transition: transform 0.3s ease;
}

.cart-notification.show {
    transform: translateX(0);
}

.cart-notification i {
    color: #28a745;
    font-size: 20px;
}

.cart-notification span {
    color: white;
}

.view-cart {
    background: #FF4D6D;
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
}

.view-cart:hover {
    background: #718FC8;
    color: white;
}

/* ============================================ */
/* BUY MAGAZINE SECTION - WHITE BACKGROUND      */
/* ============================================ */

#shop-premium-cta {
    padding: 80px 0;
    background: #FEFEFE;;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

#shop-premium-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 58, 111, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.container-premium {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.premium-cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Content */
.premium-cta-content {
    position: relative;
}

.premium-badge {
    display: inline-block;
    background: #E8EFF8;
    color: #718FC8;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.premium-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #222222;
}

.premium-title .premium-highlight {
    color: #718FC8;
    position: relative;
    display: inline-block;
}

.premium-title .premium-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(108, 92, 231, 0.2);
    z-index: -1;
}

.premium-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 30px;
}

/* Features Grid */
.premium-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.premium-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #F9F9F9;
    padding: 12px 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid #F0F0F0;
}

.premium-feature:hover {
    background: #FEFEFE;;
    border-color: #718FC8;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.premium-icon {
    font-size: 1.8rem;
    width: 45px;
    text-align: center;
}

.premium-feature h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #222222;
}

.premium-feature p {
    font-size: 0.75rem;
    color: #888888;
    margin: 0;
}

/* Button Wrapper */
.premium-button-wrapper {
    margin-bottom: 20px;
}

.premium-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #718FC8;
    color: white;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.premium-btn-primary:hover {
    background: #4A6A9E;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(232, 58, 111, 0.3);
    color: white;
}

.premium-btn-primary i {
    transition: transform 0.3s ease;
}

.premium-btn-primary:hover i {
    transform: translateX(5px);
}

.premium-note {
    font-size: 0.8rem;
    color: #888888;
    margin-top: 15px;
}

/* Right Image */
.premium-cta-image {
    position: relative;
}

.premium-image-wrapper {
    position: relative;
    text-align: center;
}

.premium-magazine-cover {
    max-width: 280px;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid #F0F0F0;
}

.premium-image-wrapper:hover .premium-magazine-cover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 45px rgba(0, 0, 0, 0.15);
}

.premium-floating-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #718FC8;
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(232, 58, 111, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .premium-cta-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .premium-features {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .premium-feature {
        justify-content: center;
        text-align: left;
    }
    
    .premium-button-wrapper {
        text-align: center;
    }
    
    .premium-cta-image {
        order: -1;
    }
    
    .premium-floating-badge {
        top: -15px;
        right: 20%;
    }
}

@media (max-width: 768px) {
    #shop-premium-cta {
        padding: 60px 0;
    }
    
    .premium-title {
        font-size: 2rem;
    }
    
    .premium-features {
        grid-template-columns: 1fr;
    }
    
    .premium-magazine-cover {
        max-width: 220px;
    }
    
    .premium-floating-badge {
        top: -10px;
        right: 10%;
        padding: 5px 12px;
        font-size: 0.7rem;
    }
}

/* Developer Credit Styling */
.developer-credit {
    margin-top: 10px;
    font-size: 0.8rem;
    color: #888;
    text-align: center;
}

.developer-credit:hover {
    color: var(--pink);
}

/* ===== DOCUMENTARIES PAGE STYLES ===== */
.featured-doc {
    padding: 4rem 0;
    background: var(--white);
}

.featured-doc-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.featured-doc-video {
    position: relative;
}

.video-placeholder {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.video-placeholder img {
    width: 100%;
    height: auto;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.play-button i {
    color: white;
    font-size: 1.8rem;
    margin-left: 5px;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.featured-tag {
    display: inline-block;
    background: var(--pink-light);
    color: var(--pink);
    padding: 0.3rem 1rem;
    font-size: 0.8rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.featured-doc-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.featured-doc-info p {
    color: var(--grey);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.doc-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    color: var(--grey);
}

.doc-meta i {
    color: var(--pink);
    margin-right: 0.3rem;
}

/* Documentaries Grid */
.documentaries-grid-section {
    padding: 5rem 0;
    background: var(--off-white);
}

.documentaries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.doc-card {
    display: flex;
    background: var(--white);
    border: 1px solid var(--grey-light);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.doc-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.doc-thumbnail {
    position: relative;
    width: 180px;
    flex-shrink: 0;
}

.doc-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doc-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 0.2rem 0.5rem;
    font-size: 0.7rem;
    border-radius: 4px;
}

.doc-info {
    padding: 1.2rem;
    flex: 1;
}

.doc-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.doc-info p {
    color: var(--grey);
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.doc-meta-sm {
    display: flex;
    gap: 1rem;
    font-size: 0.7rem;
    color: var(--grey);
    margin-bottom: 1rem;
}

.watch-link {
    color: var(--pink);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
}

.watch-link i {
    transition: transform 0.3s;
}

.watch-link:hover i {
    transform: translateX(5px);
}

/* ===== EVENTS PAGE STYLES ===== */
.upcoming-events {
    padding: 4rem 0;
}

.events-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 3rem 0;
}

.event-card {
    display: flex;
    background: var(--white);
    border: 1px solid var(--grey-light);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.event-card.featured-event {
    border: 2px solid var(--pink);
}

.event-date-large {
    background: var(--pink);
    color: white;
    padding: 1.5rem;
    text-align: center;
    min-width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.event-date {
    background: var(--off-white);
    padding: 1rem;
    text-align: center;
    min-width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.event-month {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.event-day {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.event-badge {
    display: inline-block;
    background: #E8EFF8;
    color: var(--pink);
    font-size: 0.7rem;
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 0.5rem;
}

.event-details {
    padding: 1.5rem;
    flex: 1;
}

.event-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.event-details p {
    color: var(--grey);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.event-info {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--grey);
    flex-wrap: wrap;
}

.event-info i {
    color: var(--pink);
    margin-right: 0.3rem;
}

.btn-register {
    display: inline-block;
    color: var(--pink);
    font-weight: 600;
    text-decoration: none;
}

/* Past Events */
.past-events {
    padding: 5rem 0;
    background: var(--off-white);
}

.past-events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.past-event-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.past-event-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s;
}

.past-event-item:hover img {
    transform: scale(1.05);
}

.past-event-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 1.5rem;
    color: white;
}

.past-event-overlay h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
    color: white;
}

.past-event-overlay span {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 992px) {
    .featured-doc-wrapper {
        grid-template-columns: 1fr;
    }
    
    .documentaries-grid {
        grid-template-columns: 1fr;
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .event-date-large, .event-date {
        flex-direction: row;
        gap: 0.5rem;
        padding: 0.8rem;
    }
    
    .past-events-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .doc-card {
        flex-direction: column;
    }
    
    .doc-thumbnail {
        width: 100%;
        height: 180px;
    }
}

/* ===== DOCUMENTARIES PAGE - COMING SOON STYLES ===== */

/* Page Header */
.page-header {
    padding: 8rem 0 3rem;
    background: var(--off-white);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.page-header p {
    color: var(--grey);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Coming Soon Section */
.coming-soon-docs {
    padding: 5rem 0;
    background: var(--white);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.coming-soon-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--grey-light);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow);
}

.coming-soon-icon {
    width: 100px;
    height: 100px;
    background: var(--pink-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.coming-soon-icon i {
    font-size: 3rem;
    color: var(--pink);
}

.coming-soon-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--black);
    font-family: var(--font-heading);
}

.coming-soon-text {
    font-size: 1.1rem;
    color: var(--grey);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0 3rem;
    text-align: center;
}

.feature-box {
    padding: 1.5rem;
    background: var(--off-white);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid var(--grey-light);
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: var(--pink);
    box-shadow: var(--shadow-hover);
}

.feature-box i {
    font-size: 2rem;
    color: var(--pink);
    margin-bottom: 1rem;
    display: inline-block;
}

.feature-box h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.feature-box p {
    font-size: 0.85rem;
    color: var(--grey);
    line-height: 1.4;
    margin: 0;
}

/* Notification Box */
.notification-box {
    background: var(--off-white);
    border-radius: 15px;
    padding: 1.8rem;
    margin-top: 1rem;
    border: 1px solid var(--grey-light);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
    flex-wrap: wrap;
}

.notification-box i {
    font-size: 2.5rem;
    color: var(--pink);
}

.notification-text {
    flex: 1;
}

.notification-text strong {
    display: block;
    font-size: 1rem;
    color: var(--black);
    margin-bottom: 0.3rem;
}

.notification-text p {
    font-size: 0.85rem;
    color: var(--grey);
    margin: 0;
}

.inline-notify-form {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.inline-notify-form input {
    padding: 0.8rem 1rem;
    border: 1px solid var(--grey-light);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    width: 250px;
    background: var(--white);
}

.inline-notify-form input:focus {
    outline: none;
    border-color: var(--pink);
}

.btn-notify {
    background: var(--pink);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.btn-notify:hover {
    background: var(--pink-dark);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .page-header {
        padding: 6rem 0 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .coming-soon-card {
        padding: 2rem;
        margin: 0 20px;
    }
    
    .coming-soon-card h2 {
        font-size: 1.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .notification-box {
        flex-direction: column;
        text-align: center;
    }
    
    .inline-notify-form {
        width: 100%;
        flex-direction: column;
    }
    
    .inline-notify-form input {
        width: 100%;
    }
    
    .btn-notify {
        width: 100%;
    }
}

/* ===== LATEST ARTICLES SECTION ON HOMEPAGE ===== */
.latest-articles-home {
    padding: 5rem 0;
    background: var(--white);
}

.home-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.home-article-card {
    background: var(--white);
    border: 1px solid var(--grey-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.home-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--pink);
}

.home-article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.home-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.home-article-card:hover .home-article-image img {
    transform: scale(1.05);
}

.home-article-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--pink);
    color: var(--white);
    padding: 0.3rem 1rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.home-article-content {
    padding: 1.5rem;
}

.home-article-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.home-article-content h3 a {
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.home-article-content h3 a:hover {
    color: var(--pink);
}

.home-article-excerpt {
    color: var(--grey);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.home-article-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--grey);
    margin-bottom: 1rem;
}

.home-article-meta i {
    margin-right: 0.3rem;
    color: var(--pink);
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--pink);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more-link:hover {
    gap: 0.8rem;
}

.read-more-link i {
    transition: transform 0.3s ease;
}

.read-more-link:hover i {
    transform: translateX(3px);
}

.view-all-articles {
    text-align: center;
    margin-top: 2rem;
}

.no-articles-home {
    text-align: center;
    padding: 3rem;
    background: var(--off-white);
    border-radius: 10px;
    color: var(--grey);
}

/* Responsive */
@media (max-width: 992px) {
    .home-articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .latest-articles-home {
        padding: 3rem 0;
    }
    
    .home-articles-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .home-article-image {
        height: 180px;
    }
}

/* About Vision Section */
.about-vision {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(108,92,231,0.05), rgba(0,0,0,0.02));
    position: relative;
    overflow: hidden;
}

.about-vision::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(108,92,231,0.03) 0%, transparent 70%);
    pointer-events: none;
}

.vision-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: var(--black-light);
    border: 1px solid var(--grey-light);
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.vision-box:hover {
    transform: translateY(-5px);
    border-color: var(--pink);
    box-shadow: 0 15px 40px rgba(108,92,231,0.1);
}

.vision-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.vision-box h2 span {
    color: var(--pink);
    position: relative;
    display: inline-block;
}

.vision-box h2 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--pink), transparent);
}

.vision-box p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--grey);
    margin-bottom: 0;
    font-style: italic;
}

/* About Promise Section */
.about-promise {
    padding: 5rem 0;
    background: var(--black-light);
    position: relative;
}

.promise-box {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(108,92,231,0.08), rgba(0,0,0,0.03));
    border: 1px solid var(--grey-light);
    border-radius: 20px;
}

.promise-box h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--black);
}

.promise-box h2 span {
    color: var(--pink);
}

.promise-items {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.promise-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: rgba(108,92,231,0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.promise-item:hover {
    transform: translateY(-8px);
    border-color: var(--pink);
    background: rgba(108,92,231,0.1);
}

.promise-item i {
    font-size: 2.5rem;
    color: var(--pink);
    margin-bottom: 1rem;
    display: inline-block;
}

.promise-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--grey);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .vision-box {
        padding: 2rem;
    }
    
    .vision-box h2 {
        font-size: 2rem;
    }
    
    .vision-box p {
        font-size: 1rem;
    }
    
    .promise-box {
        padding: 2rem;
    }
    
    .promise-box h2 {
        font-size: 2rem;
    }
    
    .promise-items {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .about-vision,
    .about-promise {
        padding: 3rem 0;
    }
    
    .vision-box {
        padding: 1.5rem;
    }
    
    .vision-box h2 {
        font-size: 1.5rem;
    }
    
    .vision-box p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .promise-box {
        padding: 1.5rem;
    }
    
    .promise-box h2 {
        font-size: 1.5rem;
    }
    
    .promise-items {
        flex-direction: column;
        gap: 1rem;
    }
    
    .promise-item {
        min-width: auto;
        padding: 1.5rem;
    }
    
    .promise-item i {
        font-size: 2rem;
    }
    
    .promise-item p {
        font-size: 0.9rem;
    }
}