/* ===================================
   Navi Mumbai Nagrik Manch
   Main Stylesheet
   =================================== */

/* CSS Variables */
:root {
    --primary-color: #D32F2F;
    --primary-light: #E57373;
    --primary-dark: #B71C1C;
    --secondary-color: #FFCDD2;
    --accent-color: #FFEBEE;
    --background: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --border-color: #EEEEEE;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    background: var(--background);
    line-height: 1.6;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Justify only long paragraph content */
.about-section p,
.org-message-content p,
.faq-answer-inner p,
.how-we-help p,
.timeline-content p {
    text-align: justify;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.btn-email {
    background: var(--primary-color);
    color: white;
}

.btn-email:hover {
    background: var(--primary-dark);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-lang {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn-lang:hover {
    background: var(--primary-color);
    color: white;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    box-shadow: var(--shadow);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

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

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        box-shadow: var(--shadow);
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .header-cta .btn-whatsapp,
    .header-cta .btn-primary {
        display: none;
    }
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    padding: 140px 20px 80px;
    background: linear-gradient(135deg, var(--background) 0%, var(--accent-color) 100%);
    text-align: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--primary-color);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 3rem;
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--text-dark);
}

.trust-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 20px 60px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 15px;
    }
}

/* ===================================
   SECTION STYLES
   =================================== */
section {
    padding: 80px 20px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-header h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
}

.section-alt {
    background: var(--accent-color);
}

/* ===================================
   SERVICE CARDS
   =================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 30px;
    height: 30px;
    color: var(--primary-color);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    margin-bottom: 1.5rem;
}

.service-card .btn {
    width: 100%;
}

/* ===================================
   HOW IT WORKS
   =================================== */
.pipeline {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    padding: 20px 0;
}

.pipeline-step {
    flex: 1;
    text-align: center;
    padding: 0 10px;
    position: relative;
    display: flex;
}

.pipeline-card {
    background: white;
    border-radius: 16px;
    padding: 36px 24px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pipeline-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(211, 47, 47, 0.12);
    border-color: var(--secondary-color);
}

.pipeline-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: all 0.4s ease;
    box-shadow: 0 6px 16px rgba(211, 47, 47, 0.25);
    flex-shrink: 0;
}

.pipeline-card:hover .pipeline-icon {
    transform: scale(1.12) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(211, 47, 47, 0.35);
}

.pipeline-step h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 600;
}

.pipeline-step p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.6;
    max-width: 220px;
}

.pipeline-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    position: relative;
}

.pipeline-connector svg {
    width: 24px;
    height: 24px;
    color: var(--primary-light);
    stroke-width: 2.5;
}

.pipeline-step-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-color);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    letter-spacing: 0.3px;
}

@media (max-width: 900px) {
    .pipeline {
        flex-direction: column;
        align-items: center;
        gap: 0;
        padding: 10px 0;
    }

    .pipeline-step {
        width: 100%;
        max-width: 380px;
        padding: 10px 0;
    }

    .pipeline-card {
        padding: 28px 20px 24px;
    }

    .pipeline-step p {
        max-width: 100%;
    }

    .pipeline-connector {
        width: auto;
        padding: 4px 0;
        transform: rotate(90deg);
    }
}

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonials-section {
    background: var(--accent-color);
}

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

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 40px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

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

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

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.cta-section .btn-whatsapp {
    background: white;
    color: #25D366;
}

.cta-section .btn-whatsapp:hover {
    background: #f5f5f5;
}

.cta-section .btn-email {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-section .btn-email:hover {
    background: white;
    color: var(--primary-color);
}

/* ===================================
   FAQ ACCORDION
   =================================== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius);
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-inner {
    padding: 0 20px 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ===================================
   CONTACT FORM
   =================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    padding: 30px;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-item h4 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.contact-item p {
    margin-bottom: 0;
    color: var(--text-light);
}

.contact-item a {
    color: var(--primary-color);
}

.contact-item a:hover {
    text-decoration: underline;
}

.whatsapp-cta-large {
    background: #25D366;
    color: white;
    padding: 20px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: 30px;
}

.whatsapp-cta-large h4 {
    color: white;
    margin-bottom: 10px;
}

.whatsapp-cta-large p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--secondary-color);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group .error {
    border-color: var(--primary-color);
}

.error-message {
    color: var(--primary-color);
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.form-group.has-error .error-message {
    display: block;
}

.form-submit {
    width: 100%;
}

.form-buttons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.form-buttons .btn {
    flex: 1;
}

@media (max-width: 480px) {
    .form-buttons {
        flex-direction: column;
    }
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success svg {
    margin-bottom: 20px;
}

.form-success h3 {
    color: #43A047;
    margin-bottom: 10px;
}

.form-success p {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ===================================
   PAGE HEADERS
   =================================== */
.page-header {
    background: linear-gradient(135deg, var(--accent-color) 0%, white 100%);
    padding: 120px 20px 60px;
    text-align: center;
}

.page-header h1 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary-color);
}

.breadcrumb span {
    color: var(--text-muted);
}

/* ===================================
   SERVICE DETAIL PAGE
   =================================== */
.service-detail {
    padding: 60px 20px;
    border-bottom: 1px solid var(--border-color);
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-detail h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-detail h2 svg {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
}

.problems-list {
    background: var(--accent-color);
    padding: 25px;
    border-radius: var(--radius);
    margin-bottom: 25px;
}

.problems-list h4 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.problems-list ul {
    padding-left: 20px;
}

.problems-list li {
    list-style: disc;
    margin-bottom: 8px;
    color: var(--text-light);
}

.how-we-help {
    margin-bottom: 25px;
}

.how-we-help h4 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.how-we-help p {
    line-height: 1.8;
}

/* ===================================
   ABOUT PAGE
   =================================== */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-section {
    margin-bottom: 50px;
}

.about-section h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-section p {
    line-height: 1.8;
    font-size: 1.05rem;
}

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

.trust-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
}

.trust-card-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.trust-card-icon svg {
    width: 30px;
    height: 30px;
    color: var(--primary-color);
}

.trust-card h3 {
    margin-bottom: 10px;
}

.trust-card p {
    margin-bottom: 0;
}

/* ===================================
   FLOATING WHATSAPP BUTTON
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    color: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    padding: 10px 15px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ===================================
   FOOTER
   =================================== */
footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 20px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: white;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary-light);
}

.footer-contact-item a {
    margin-bottom: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.disclaimer {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: var(--radius);
    margin-top: 20px;
}

.disclaimer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* ===================================
   UTILITIES
   =================================== */
.text-center { text-align: center; }
.text-primary { color: var(--primary-color); }
.bg-alt { background: var(--accent-color); }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

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

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

/* ===================================
   ORGANIZATION MESSAGE
   =================================== */
.org-message-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 80px 20px;
}

.org-message-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.org-message-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.org-message-icon svg {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
}

.org-message-card h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.org-message-content {
    text-align: left;
    line-height: 1.8;
}

.org-message-content p {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.org-message-highlight {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color) !important;
}

.org-message-call {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    text-align: center;
    margin: 25px 0 !important;
}

.org-departments {
    background: var(--accent-color);
    padding: 20px 30px;
    border-radius: var(--radius);
    margin: 20px 0;
    list-style: none;
}

.org-departments li {
    padding: 8px 0;
    color: var(--text-dark);
    font-weight: 500;
}

.org-disclaimer {
    background: #FFF3E0;
    border-left: 4px solid #FF9800;
    padding: 20px;
    border-radius: var(--radius);
    margin: 25px 0;
}

.org-disclaimer p {
    margin-bottom: 8px !important;
    color: var(--text-dark) !important;
}

.org-signature {
    text-align: right;
    font-weight: 600;
    color: var(--primary-color) !important;
    margin-top: 30px !important;
    font-style: italic;
}

@media (max-width: 768px) {
    .org-message-card {
        padding: 30px 20px;
    }

    .org-message-card h2 {
        font-size: 1.5rem;
    }

    .org-message-call {
        font-size: 1.3rem;
    }

    .org-departments {
        padding: 15px 20px;
    }
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--secondary-color);
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -40px;
    top: 0;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: var(--shadow);
    transform: translateX(7px);
}

.timeline-content {
    background: white;
    padding: 20px 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.timeline-content h4 {
    color: var(--text-dark);
    margin-bottom: 8px;
}

.timeline-content p {
    margin-bottom: 0;
    color: var(--text-light);
}

/* ===================================
   VALUES LIST
   =================================== */
.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
    line-height: 1.6;
}

.values-list li:last-child {
    border-bottom: none;
}

.values-list li strong {
    color: var(--primary-color);
}

/* ===================================
   MEDIA GALLERY SECTION
   =================================== */
.media-gallery-section {
    padding: 80px 20px;
}

.add-photo-form-container {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.add-photo-form-container h3 {
    margin-bottom: 20px;
    color: var(--text-dark);
    text-align: center;
}

.add-photo-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.add-photo-form .form-group {
    margin-bottom: 20px;
}

.add-photo-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.add-photo-form input,
.add-photo-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.add-photo-form input:focus,
.add-photo-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--secondary-color);
}

.add-photo-form small {
    display: block;
    margin-top: 5px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.add-photo-form .form-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

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

/* Gallery Grid Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.gallery-item {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

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

.gallery-image .placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.gallery-content {
    padding: 20px;
}

.gallery-content h3 {
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.gallery-content p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.media-gallery-item {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.media-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.media-gallery-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.media-gallery-item:hover .media-gallery-image img {
    transform: scale(1.05);
}

.media-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.media-gallery-item:hover .media-gallery-overlay {
    opacity: 1;
}

.media-gallery-content {
    padding: 20px;
}

.media-gallery-content h3 {
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.media-gallery-date {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.media-gallery-date svg {
    width: 16px;
    height: 16px;
}

.media-gallery-content p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.media-gallery-actions {
    display: flex;
    gap: 10px;
}

.btn-delete {
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-delete:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-delete svg {
    width: 16px;
    height: 16px;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.empty-state svg {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.empty-state h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
}

.empty-state p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* ===================================
   MEDIA & GALLERY
   =================================== */
.gallery-section {
    padding: 80px 20px;
}

.gallery-image .placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--primary-color);
}

.gallery-image .placeholder-image span {
    font-weight: 600;
    font-size: 0.9rem;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    padding: 20px;
}

.gallery-content h3 {
    margin-bottom: 8px;
    color: var(--text-dark);
}

.gallery-date {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
}

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

.btn-small {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* ===================================
   MEDIA SECTION
   =================================== */
.media-section {
    padding: 80px 20px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.news-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.news-image {
    height: 180px;
    overflow: hidden;
}

.news-image .placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--primary-color);
}

.news-content {
    padding: 20px;
}

.news-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.news-date {
    color: var(--primary-color);
    font-weight: 500;
}

.news-source {
    color: var(--text-muted);
}

.news-content h3 {
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 1.1rem;
}

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

.youtube-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.youtube-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.youtube-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.youtube-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.youtube-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.youtube-content {
    padding: 20px;
}

.youtube-content h3 {
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 1.1rem;
}

.youtube-content p {
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.youtube-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.youtube-channel-cta {
    text-align: center;
    margin-top: 40px;
}

/* ===================================
   BENEFITS SECTION
   =================================== */
.benefits-section {
    padding: 80px 20px;
    background: var(--accent-color);
}

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

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon svg {
    width: 35px;
    height: 35px;
    color: var(--primary-color);
}

.benefit-card h3 {
    margin-bottom: 12px;
    color: var(--text-dark);
}

.benefit-card p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ===================================
   MEMBERSHIP FORM SECTION
   =================================== */
.membership-form-section {
    padding: 80px 20px;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.form-intro {
    text-align: center;
    margin-bottom: 30px;
}

.form-intro h2 {
    margin-bottom: 10px;
}

.form-intro p {
    margin-bottom: 0;
}

.membership-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.membership-form .form-group {
    margin-bottom: 20px;
}

.membership-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.membership-form input,
.membership-form select,
.membership-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.membership-form input:focus,
.membership-form select:focus,
.membership-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--secondary-color);
}

.membership-form textarea {
    min-height: 120px;
    resize: vertical;
}

.membership-form .form-buttons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.membership-form .form-buttons .btn {
    flex: 1;
}

.membership-form .error-message {
    color: var(--primary-color);
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.membership-form .form-group.has-error input,
.membership-form .form-group.has-error select,
.membership-form .form-group.has-error textarea {
    border-color: var(--primary-color);
}

.membership-form .form-group.has-error .error-message {
    display: block;
}

.membership-form .form-success {
    text-align: center;
    padding: 40px 20px;
}

.membership-form .form-success svg {
    margin-bottom: 20px;
}

.membership-form .form-success h3 {
    color: #43A047;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .membership-form .form-row {
        grid-template-columns: 1fr;
    }

    .membership-form .form-buttons {
        flex-direction: column;
    }
}

/* ===================================
   RESPONSIVE ADJUSTMENTS
   =================================== */
@media (max-width: 480px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }

    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }

    section {
        padding: 50px 15px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline::before {
        left: 10px;
    }

    .timeline-marker {
        left: -30px;
        width: 24px;
        height: 24px;
        transform: translateX(6px);
    }

    .gallery-grid,
    .news-grid,
    .youtube-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 20px;
    }
}
