/* Mobile-First Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.5;
    color: #1a1a1a;
    background: #f8f8f8;
    font-size: 14px;
}

/* Mobile-first container */
.container {
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

/* Desktop container */
@media (min-width: 768px) {
    .container {
        max-width: 1200px;
        padding: 0 20px;
    }

    body {
        font-size: 16px;
    }
}

/* Desktop Layout - Home Section Two Column */
@media (min-width: 1024px) {
    .home-layout {
        display: grid;
        grid-template-columns: 70% 30%;
        gap: 30px;
        align-items: start;
    }

    .home-main {
        order: 1;
    }

    .home-sidebar {
        order: 2;
    }
}

/* Mobile-First New Components */

/* Key Points */
.key-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 20px 0;
}

@media (min-width: 768px) {
    .key-points {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

.point {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.point h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #2c3e50;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 25px 0;
    text-align: center;
}

.stat {
    background: #fff;
    padding: 20px 10px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #e74c3c;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    margin-top: 5px;
}

/* Success Examples */
.success-examples {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border-left: 4px solid #3498db;
}

.success-examples h4 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.success-examples p {
    color: #666;
    line-height: 1.5;
}

/* Fee Comparison */
.fee-comparison {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    margin: 20px 0;
    border: 2px solid #e74c3c;
}

.fee-comparison h4 {
    margin-bottom: 20px;
    color: #e74c3c;
    text-align: center;
}

.fee-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .fee-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fee-item {
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    border: 2px solid #ddd;
}

.fee-item.iit {
    background: #d4edda;
    border-color: #28a745;
}

.fee-item.bits,
.fee-item.bits-dual {
    background: #f8d7da;
    border-color: #dc3545;
}

.fee-item h5 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.fee-amount {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.fee-item.iit .fee-amount {
    color: #28a745;
}

.fee-item.bits .fee-amount,
.fee-item.bits-dual .fee-amount {
    color: #dc3545;
}

.fee-duration {
    font-size: 0.9rem;
    color: #666;
}

.fee-note {
    text-align: center;
    font-weight: bold;
    color: #e74c3c;
    font-size: 1.1rem;
}

/* IIT Agenda Section */
.iit-agenda {
    background: #fff3cd;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
    margin: 25px 0;
}

.iit-agenda h4 {
    color: #856404;
    margin-bottom: 20px;
    font-size: 1.2rem;
    text-align: center;
}

.leadership-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .leadership-info {
        grid-template-columns: 1fr 1fr;
    }
}

.leader-card {
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    text-align: center;
    border: 2px solid #ffc107;
}

.leader-card h5 {
    color: #856404;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.leader-card p {
    color: #dc3545;
    font-weight: bold;
    margin: 0;
}

.agenda-text {
    text-align: center;
    font-weight: 500;
    color: #856404;
    font-size: 1.1rem;
    margin: 0;
}

/* Problem Section */
.problem-simple {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 20px 0;
}

@media (min-width: 768px) {
    .problem-simple {
        grid-template-columns: 1fr 1fr;
    }
}

.problem-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
    text-align: center;
}

.problem-card h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

/* Reality Check Section */
.reality-check {
    background: #fff3cd;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
    margin: 25px 0;
}

.reality-check h4 {
    color: #856404;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.reality-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

@media (min-width: 768px) {
    .reality-points {
        grid-template-columns: repeat(3, 1fr);
    }
}

.reality-point {
    background: #fff;
    padding: 15px;
    border-radius: 6px;
    border-left: 3px solid #dc3545;
}

.reality-point h5 {
    color: #dc3545;
    margin-bottom: 8px;
    font-size: 1rem;
}

.reality-point p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Demands Simple */
.demands-simple {
    background: #d4edda;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #28a745;
}

.demands-simple ul {
    list-style: none;
    padding: 0;
}

.demands-simple li {
    padding: 8px 0;
    font-weight: 500;
}

.demands-simple li:before {
    content: "✅ ";
    margin-right: 8px;
}

/* Reasons Simple */
.reasons-simple {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

@media (min-width: 768px) {
    .reasons-simple {
        grid-template-columns: 1fr 1fr;
    }
}

.reason-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #e74c3c;
}

.reason-card h4 {
    margin-bottom: 8px;
    color: #2c3e50;
    font-size: 1.1rem;
}

.reason-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

/* Action Simple */
.action-simple {
    text-align: center;
    padding: 30px 20px;
    background: #2c3e50;
    color: #fff;
    border-radius: 8px;
}

.action-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.action-header p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.petition-btn-big {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 15px 30px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    margin: 20px 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.petition-btn-big:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.popup-trigger-btn {
    display: inline-block;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
    margin: 10px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-trigger-btn:hover {
    background: #fff;
    color: #2c3e50;
}

/* Share Simple */
.share-simple {
    margin: 25px 0;
}

.share-simple p {
    margin-bottom: 15px;
}

.share-buttons-mobile {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn-mobile {
    padding: 10px 15px;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease;
    min-width: 80px;
}

.share-btn-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.share-btn-mobile.facebook { background: #3b5998; }
.share-btn-mobile.twitter { background: #1da1f2; }
.share-btn-mobile.whatsapp { background: #25d366; }
.share-btn-mobile.linkedin { background: #0077b5; }

.hashtags-simple {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* About Simple */
.about-simple {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

@media (min-width: 768px) {
    .about-simple {
        grid-template-columns: repeat(3, 1fr);
    }
}

.about-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.about-card h3 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-info {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 20px;
    font-style: italic;
    color: #666;
}

/* Student Voices */
.student-voices {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 0;
}

@media (min-width: 768px) {
    .student-voices {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
}

@media (min-width: 1024px) {
    .student-voices {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }
}

.voice-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
    position: relative;
    height: fit-content;
}

.voice-card blockquote {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0 0 12px 0;
    color: #2c3e50;
}

.voice-card cite {
    font-size: 0.85rem;
    color: #666;
    font-weight: 500;
}

@media (min-width: 1024px) {
    .voice-card blockquote {
        font-size: 0.95rem;
        line-height: 1.4;
    }
}

.voice-card.highlight {
    background: #fff3cd;
    border-left-color: #ffc107;
}

.voice-card.highlight blockquote {
    color: #856404;
    font-weight: 500;
}

/* Sidebar Widgets */
.widget {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #e74c3c;
}

.widget h3 {
    margin-bottom: 15px;
    color: #2c3e50;
    font-size: 1.1rem;
}

/* Facts Widget */
.fact-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.fact-item:last-child {
    border-bottom: none;
}

.fact-label {
    font-weight: 500;
    color: #666;
}

.fact-value {
    font-weight: bold;
    color: #e74c3c;
}

/* Action Widget */
.action-btn {
    width: 100%;
    background: #e74c3c;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    margin-bottom: 15px;
    transition: background 0.3s;
}

.action-btn:hover {
    background: #c0392b;
}

.action-stats {
    display: flex;
    justify-content: space-around;
}

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

.stat-mini .stat-number {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    color: #e74c3c;
}

.stat-mini .stat-label {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
}

/* Petition Widget */
.petition-counter {
    text-align: center;
    margin: 15px 0;
}

.counter-number {
    font-size: 2rem;
    font-weight: bold;
    color: #e74c3c;
}

.counter-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
}

.counter-update {
    font-size: 0.8rem;
    color: #999;
    margin-top: 5px;
}

.counter-update.live {
    color: #28a745;
    font-weight: 500;
}

.counter-update.live::before {
    content: "🔴 ";
    animation: pulse 2s infinite;
}

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

.petition-button {
    display: block;
    width: 100%;
    background: #e74c3c;
    color: #fff;
    text-decoration: none;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    font-weight: bold;
    transition: background 0.3s;
}

.petition-button:hover {
    background: #c0392b;
}

/* Share Widget */
.share-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 15px;
}

.share-btn {
    padding: 8px;
    border: none;
    border-radius: 4px;
    color: #fff;
    font-size: 0.8rem;
    cursor: pointer;
    transition: opacity 0.3s;
}

.share-btn:hover {
    opacity: 0.8;
}

.share-btn.facebook { background: #3b5998; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0077b5; }
.share-btn.whatsapp { background: #25d366; }

.hashtags {
    font-size: 0.8rem;
    color: #666;
    text-align: center;
}

/* Home Sidebar Sections */
.sidebar-section {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #e74c3c;
    margin-bottom: 20px;
}

.sidebar-section .section-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #2c3e50;
    text-align: center;
}

/* Compact sidebar content */
.home-sidebar .reason-item,
.home-sidebar .problem-item {
    padding: 12px;
    margin-bottom: 10px;
}

.home-sidebar .reason-item h4,
.home-sidebar .problem-item h4 {
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.home-sidebar .reason-item p,
.home-sidebar .problem-item p {
    font-size: 0.8rem;
    line-height: 1.3;
}

/* Compact Reasons */
.reasons-compact {
    display: grid;
    gap: 15px;
}

.reason-item {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid #e74c3c;
}

.reason-item h4 {
    margin-bottom: 8px;
    color: #2c3e50;
    font-size: 1rem;
}

.reason-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

/* Compact Problems */
.problem-compact {
    display: grid;
    gap: 15px;
}

.problem-item {
    padding: 15px;
    background: #fff3cd;
    border-radius: 6px;
    border-left: 3px solid #ffc107;
}

.problem-item h4 {
    margin-bottom: 8px;
    color: #856404;
    font-size: 1rem;
}

.problem-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #856404;
    line-height: 1.4;
}

/* Mobile-First Top Bar */
.top-bar {
    background: #1a1a1a;
    color: #fff;
    padding: 10px 0;
    font-size: 12px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-left {
    display: flex;
    gap: 15px;
    font-size: 11px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icons {
    display: none;
}

@media (min-width: 768px) {
    .social-icons {
        display: flex;
        gap: 8px;
    }
}

.social-icon {
    width: 20px;
    height: 20px;
    background: #333;
    color: #fff;
    text-align: center;
    line-height: 20px;
    text-decoration: none;
    font-size: 10px;
    border-radius: 3px;
}

.petition-link {
    background: #e74c3c;
    color: #fff;
    padding: 8px 12px;
    text-decoration: none;
    font-weight: bold;
    font-size: 11px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background 0.3s;
}

.petition-link:hover {
    background: #c0392b;
}

/* Mobile-First Header */
.header {
    background: #fff;
    padding: 20px 0;
    border-bottom: 2px solid #e74c3c;
    text-align: center;
}

.site-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 5px;
}

/* Article Title Prominence */
.article-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 15px;
}

.article-category {
    background: #e74c3c;
    color: #fff;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
    border-radius: 4px;
}

.article-meta {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e74c3c;
}

.article-meta span {
    margin-right: 20px;
    font-weight: 500;
    color: #666;
}

@media (min-width: 768px) {
    .header {
        padding: 30px 0;
    }

    .site-title {
        font-size: 3rem;
    }

    .article-title {
        font-size: 3rem;
    }

    .article-category {
        font-size: 1rem;
        padding: 10px 20px;
    }
}

.tagline {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 300;
}

@media (min-width: 768px) {
    .tagline {
        font-size: 14px;
        letter-spacing: 2px;
    }
}

/* Mobile-First Navigation */
.main-navigation {
    background: #2c3e50;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav-menu li {
    flex: 1;
    min-width: 120px;
}

.nav-menu a {
    display: block;
    padding: 12px 8px;
    color: #fff;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    transition: all 0.3s;
}

@media (min-width: 768px) {
    .nav-menu a {
        padding: 15px 20px;
        font-size: 13px;
        letter-spacing: 1px;
    }

    .nav-menu li {
        flex: none;
        border-right: 1px solid #34495e;
    }

    .nav-menu li:last-child {
        border-right: none;
    }
}

.nav-menu a:hover,
.nav-menu a.active {
    background: #e74c3c;
    color: #fff;
}

/* Breaking News Banner - Removed */

/* Main Content */
.main-content {
    padding: 40px 0;
    background: #fefefe;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(0,0,0,0.15) 1px, transparent 0);
    background-size: 20px 20px;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.1);
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    position: relative;
}

.content-grid::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(66.66% - 1px);
    width: 2px;
    background: linear-gradient(to bottom,
        transparent 0%,
        #ddd 10%,
        #ddd 90%,
        transparent 100%);
    z-index: 1;
}

/* Featured Article */
.featured-article {
    background: #fefefe;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(0,0,0,0.08) 1px, transparent 0);
    background-size: 25px 25px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border: 1px solid #e8e8e8;
    position: relative;
}

.featured-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 49%, rgba(0,0,0,0.02) 50%, transparent 51%);
    pointer-events: none;
}

.article-category {
    background: #e74c3c;
    color: #fff;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 15px;
}

.article-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.article-meta {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    color: #666;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.article-meta span {
    margin-right: 15px;
}

.article-image {
    margin: 25px 0;
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    font-size: 12px;
    color: #666;
    font-style: italic;
    margin-top: 8px;
    padding: 8px;
    background: #f8f9fa;
}

.article-content {
    font-size: 16px;
    line-height: 1.8;
}

.lead {
    font-size: 18px;
    font-weight: 400;
    color: #2c3e50;
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 4px solid #e74c3c;
}

.pullquote {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-style: italic;
    color: #2c3e50;
    text-align: center;
    margin: 30px 0;
    padding: 25px;
    background: #f8f9fa;
    border-left: 4px solid #e74c3c;
    position: relative;
}

.pullquote::before {
    content: '"';
    font-size: 60px;
    color: #e74c3c;
    position: absolute;
    top: -10px;
    left: 15px;
}

.info-box {
    background: #ecf0f1;
    padding: 20px;
    margin: 25px 0;
    border-left: 4px solid #3498db;
}

.info-box h4 {
    font-family: 'Open Sans', sans-serif;
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box li {
    padding: 5px 0;
    font-size: 14px;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.widget {
    background: #fefefe;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(0,0,0,0.08) 1px, transparent 0);
    background-size: 25px 25px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border: 1px solid #e8e8e8;
    position: relative;
}

.widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 49%, rgba(0,0,0,0.02) 50%, transparent 51%);
    pointer-events: none;
}

.widget h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e74c3c;
}

/* Petition Widget */
.petition-counter {
    text-align: center;
    margin-bottom: 20px;
}

.counter-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #e74c3c;
    line-height: 1;
}

.counter-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.counter-update {
    font-size: 11px;
    color: #999;
    margin-top: 5px;
}

.petition-button {
    display: block;
    background: #e74c3c;
    color: #fff;
    text-align: center;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s;
}

.petition-button:hover {
    background: #c0392b;
}

/* Latest News Widget - Removed */

/* Share Widget */
.share-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
}

.share-btn {
    display: block;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    border-radius: 3px;
    font-family: 'Open Sans', sans-serif;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.share-btn.facebook {
    background: #3b5998;
}
.share-btn.facebook:hover {
    background: #2d4373;
}

.share-btn.twitter {
    background: #1da1f2;
}
.share-btn.twitter:hover {
    background: #0d8bd9;
}

.share-btn.linkedin {
    background: #0077b5;
}
.share-btn.linkedin:hover {
    background: #005885;
}

.share-btn.whatsapp {
    background: #25d366;
}
.share-btn.whatsapp:hover {
    background: #1da851;
}

.hashtags {
    font-size: 11px;
    color: #666;
    text-align: center;
}

.hashtags p {
    margin: 0;
}

/* Section Styles */
.section {
    padding: 60px 0;
    background: #fefefe;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(0,0,0,0.08) 1px, transparent 0);
    background-size: 25px 25px;
    border-bottom: 3px double #333;
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 49%, rgba(0,0,0,0.02) 50%, transparent 51%);
    pointer-events: none;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: #e74c3c;
}

/* Breaking News Section - Removed */

/* Analysis Section */
.analysis-section {
    background: #fff;
}

.analysis-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.analysis-item {
    padding: 25px;
    border: 1px solid #ddd;
    background: #fafafa;
}

.analysis-item h4 {
    font-family: 'Oswald', sans-serif;
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Issue Section */
.issue-section {
    background: #fefefe;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(0,0,0,0.08) 1px, transparent 0);
    background-size: 25px 25px;
}

.issue-content {
    max-width: 900px;
    margin: 0 auto;
}

.issue-intro {
    font-size: 1.3rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 30px;
    padding: 20px;
    background: #ecf0f1;
    border-left: 5px solid #e74c3c;
    line-height: 1.7;
}

.issue-main h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 30px 0 15px 0;
    text-transform: uppercase;
}

.issue-main h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    color: #e74c3c;
    margin: 25px 0 15px 0;
}

.bitsian-spirit {
    background: #f8f9fa;
    padding: 25px;
    margin: 25px 0;
    border-left: 5px solid #3498db;
}

.bitsian-spirit ul {
    margin: 15px 0;
    padding-left: 30px;
}

.bitsian-spirit li {
    margin-bottom: 8px;
    font-weight: 500;
}

.learning-philosophy {
    background: #fff3cd;
    padding: 25px;
    margin: 25px 0;
    border-left: 5px solid #ffc107;
}

.demands-box {
    background: #d4edda;
    padding: 25px;
    margin: 30px 0;
    border: 2px solid #28a745;
    border-radius: 5px;
}

.demands-box h3 {
    font-family: 'Oswald', sans-serif;
    color: #155724;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.demands-box ul {
    padding-left: 25px;
}

.demands-box li {
    margin-bottom: 10px;
    font-weight: 500;
    line-height: 1.6;
}

/* Action Section */
.action-section {
    background: #2c3e50;
    color: #fff;
    text-align: center;
}

.action-section .section-title {
    color: #fff;
}

.urgency-message {
    background: rgba(231, 76, 60, 0.1);
    border: 2px solid #e74c3c;
    padding: 30px;
    margin-bottom: 40px;
    text-align: center;
    border-radius: 5px;
}

.urgency-message h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.urgency-message p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #ecf0f1;
}

.call-to-action {
    margin: 30px 0;
}

.action-text {
    font-size: 1.2rem;
    color: #ecf0f1;
    margin-bottom: 20px;
    font-weight: 500;
}

.petition-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 40px 0;
}

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

.stat-number {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #e74c3c;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #bdc3c7;
}

.petition-button-large {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 20px 40px;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 20px 0;
    transition: all 0.3s ease;
}

.petition-button-large:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.share-section {
    margin-top: 40px;
}

.share-section h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.share-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 600px;
    margin: 0 auto 20px auto;
}

.hashtags-display {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
}

.hashtags-display p {
    color: #ecf0f1;
    font-size: 1rem;
    margin: 0;
}

/* About Section */
.about-section {
    background: #ecf0f1;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
}

.about-content p {
    margin-bottom: 20px;
}

.movement-story,
.movement-goals,
.movement-impact {
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(255,255,255,0.8);
    border-radius: 5px;
    border-left: 5px solid #3498db;
}

.movement-story h3,
.movement-goals h3,
.movement-impact h3 {
    font-family: 'Oswald', sans-serif;
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.goals-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.goal-item {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    border-left: 3px solid #e74c3c;
}

.goal-item h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.movement-impact ul {
    padding-left: 25px;
}

.movement-impact li {
    margin-bottom: 8px;
    font-weight: 500;
}

/* Reading Progress Bar */
.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0,0,0,0.1);
    z-index: 9999;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
    width: 0%;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(231, 76, 60, 0.5);
}

/* Mobile-First Petition Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: #fff;
    margin: 10% auto;
    padding: 0;
    border-radius: 8px;
    width: 95%;
    max-width: 500px;
    position: relative;
    animation: slideIn 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    max-height: 80vh;
    overflow-y: auto;
}

@media (min-width: 768px) {
    .modal-content {
        margin: 5% auto;
        width: 90%;
        max-width: 600px;
    }
}

.modal-header {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    padding: 20px;
    border-radius: 8px 8px 0 0;
    text-align: center;
}

.modal-header h2 {
    margin: 0 0 8px 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: bold;
}

@media (min-width: 768px) {
    .modal-header {
        padding: 25px;
    }

    .modal-header h2 {
        font-size: 1.6rem;
    }
}

.modal-subtitle {
    margin: 0;
    opacity: 0.9;
    font-size: 1rem;
}

.modal-body {
    padding: 20px;
}

@media (min-width: 768px) {
    .modal-body {
        padding: 30px;
    }
}

.petition-urgency {
    background: #fff3cd;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 25px;
    border-left: 5px solid #ffc107;
}

.petition-urgency p {
    margin: 0 0 10px 0;
    font-weight: 500;
}

.petition-benefits h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-family: 'Oswald', sans-serif;
}

.petition-benefits ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.petition-benefits li {
    padding: 8px 0;
    font-size: 1rem;
    color: #2c3e50;
}

.modal-petition-btn {
    display: block;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 5px;
    margin: 20px 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-petition-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.modal-footer {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    z-index: 1;
}

.close-btn:hover {
    opacity: 0.7;
}

/* Random Popup Notifications */
.random-popup {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9998;
    animation: slideInRight 0.5s ease;
}

.popup-content {
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 300px;
    position: relative;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border-left: 5px solid #e74c3c;
}

.popup-close {
    position: absolute;
    top: 5px;
    right: 10px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #bdc3c7;
}

.popup-close:hover {
    color: #fff;
}

.popup-message {
    font-size: 0.9rem;
    line-height: 1.4;
}

.popup-message strong {
    color: #e74c3c;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Secondary Content */
.secondary-content {
    padding: 40px 0;
    background: #fefefe;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(0,0,0,0.08) 1px, transparent 0);
    background-size: 25px 25px;
    border-top: 3px double #333;
    border-bottom: 3px double #333;
    position: relative;
}

.secondary-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 49%, rgba(0,0,0,0.02) 50%, transparent 51%);
    pointer-events: none;
}

.content-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.col-4 h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e74c3c;
}

.reason-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.reason-item:last-child {
    border-bottom: none;
}

.reason-item h4 {
    font-family: 'Open Sans', sans-serif;
    color: #e74c3c;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
}

.reason-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.testimonial {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-left: 3px solid #e74c3c;
    position: relative;
}

.testimonial cite {
    display: block;
    font-size: 12px;
    color: #666;
    font-style: normal;
    margin-top: 8px;
}

.action-box {
    background: #f8f8f8;
    background-image:
        radial-gradient(circle at 1px 1px, rgba(0,0,0,0.08) 1px, transparent 0);
    background-size: 20px 20px;
    padding: 25px;
    text-align: center;
    border: 2px solid #333;
    border-radius: 5px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
    position: relative;
}

.action-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 49%, rgba(0,0,0,0.02) 50%, transparent 51%);
    pointer-events: none;
}

.action-box h4 {
    font-family: 'Open Sans', sans-serif;
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}

.action-box ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.action-box li {
    padding: 5px 0;
    font-size: 14px;
    color: #666;
}

.action-button {
    display: inline-block;
    background: #e74c3c;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s;
}

.action-button:hover {
    background: #c0392b;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: #fff;
    padding: 30px 0 20px;
}

.footer-linear {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #e74c3c;
}

.footer-logo p {
    font-size: 0.9rem;
    color: #bdc3c7;
    margin: 0;
    font-style: italic;
}

.footer-links-linear {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-links-linear a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
    white-space: nowrap;
}

.footer-links-linear a:hover {
    color: #e74c3c;
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #34495e;
    font-size: 0.9rem;
    color: #95a5a6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

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

    .nav-menu {
        flex-direction: column;
    }

    .nav-menu li {
        border-right: none;
        border-bottom: 1px solid #34495e;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .content-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-linear {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-links-linear {
        gap: 15px;
        justify-content: center;
    }

    .share-buttons {
        grid-template-columns: 1fr;
    }

    .analysis-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .issue-intro {
        font-size: 1.1rem;
        padding: 15px;
    }

    .urgency-message {
        padding: 20px;
    }

    .urgency-message h3 {
        font-size: 1.5rem;
    }

    .share-grid {
        grid-template-columns: 1fr 1fr;
    }

    .petition-stats {
        flex-direction: column;
        gap: 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .modal-header {
        padding: 20px;
    }

    .modal-header h2 {
        font-size: 1.5rem;
    }

    .modal-body {
        padding: 20px;
    }

    .random-popup {
        bottom: 10px;
        right: 10px;
    }

    .popup-content {
        max-width: 250px;
        padding: 15px;
    }
}
