/* ==================== GLOBAL STYLES ==================== */

:root {
    /* Apna Dal (S) Inspired Color Palette */
    --primary-orange: #FF8C00;
    --primary-blue: #1a3a7a;
    --primary-green: #2ecc71;
    --light-bg: #f8f9fa;
    --dark-text: #1a1a1a;
    --border-color: #e0e0e0;
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Hind', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    background-color: #fff;
}

/* ==================== TOP HEADER BAR (SECTION 1) ==================== */

.top-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0d1f47 100%);
    color: white;
    border-bottom: 3px solid var(--primary-orange);
    font-size: 0.9rem;
}

.top-header p {
    color: #e0e0e0;
}

.top-header strong {
    color: white;
}

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

.social-icons-header a {
    color: var(--primary-orange);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-icons-header a:hover {
    color: white;
    transform: scale(1.2);
}

.social-icons-header span a {
    color: white;
    text-decoration: none;
    margin-left: 5px;
}

.social-icons-header span a:hover {
    color: var(--primary-orange);
}

/* ==================== MAIN NAVBAR (SECTION 2) ==================== */

.navbar {
    background: white;
    box-shadow: var(--shadow-light);
    border-bottom: 2px solid var(--primary-orange);
    padding: 0.8rem 0;
}

.navbar.sticky-top {
    top: 0;
    z-index: 1030;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-decoration: none;
}

.logo-image {
    flex-shrink: 0;
}

.logo-image img {
    max-height: 42px;
    width: auto;
}

.logo-placeholder {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-blue);
    letter-spacing: 0.02em;
}

.brand-tagline {
    font-size: 0.85rem;
    color: var(--primary-orange);
    font-weight: 600;
}

.navbar-nav .nav-link {
    color: var(--dark-text) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-orange) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

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

/* ==================== HERO BANNER (SECTION 3) ==================== */

.hero-banner {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.15) 0%, rgba(26, 58, 122, 0.15) 100%);
    margin: 0;
    padding: 0;
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-banner .container-fluid {
    position: relative;
    z-index: 1;
}

.hero-content {
    padding: 40px;
}

.hero-text-wrapper {
    max-width: 600px;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 15px;
    line-height: 1.1;
}

.hero-subheading {
    font-size: 1.8rem;
    color: var(--primary-orange);
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

.hero-designation {
    font-size: 1rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

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

.hero-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff7600 100%);
    border: none;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.3);
}

.hero-buttons .btn-outline-primary {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

.hero-buttons .btn-outline-primary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
}

.hero-image-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
}

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

.image-placeholder-box {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.2) 0%, rgba(26, 58, 122, 0.2) 100%);
    border: 3px dashed var(--primary-orange);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 3rem;
}

.image-placeholder-box p {
    margin-top: 15px;
    font-size: 1rem;
    color: #666;
}

.image-placeholder-box small {
    font-size: 0.8rem;
    color: #999;
}

/* ==================== ABOUT SECTION (SECTION 4) ==================== */

.about-section {
    background: var(--light-bg);
}

.about-image-wrapper {
    margin-bottom: 30px;
}

.about-image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.15) 0%, rgba(26, 58, 122, 0.15) 100%);
    border: 2px solid var(--primary-orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #999;
    font-size: 3rem;
}

.about-image-placeholder p {
    margin-top: 15px;
    font-size: 1rem;
    color: #666;
}

.about-content {
    padding: 20px;
}

.about-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-list {
    list-style: none;
    padding-left: 0;
}

.about-list li {
    padding: 10px 0;
    color: #555;
    border-bottom: 1px solid var(--border-color);
}

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

/* ==================== SECTION HEADERS ==================== */

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 15px;
}

.section-description {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 40px;
}

/* ==================== VISION SECTION (SECTION 5) ==================== */

.vision-section {
    background: white;
}

.vision-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: var(--shadow-light);
}

.vision-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.vision-icon {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 15px;
    display: inline-block;
    width: 80px;
    height: 80px;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.vision-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 15px 0;
}

.vision-card-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==================== DIGITAL CONNECT SECTION (SECTION 6) ==================== */

.digital-connect-section {
    background: linear-gradient(135deg, rgba(26, 58, 122, 0.05) 0%, rgba(255, 140, 0, 0.05) 100%);
}

.feature-block {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: var(--shadow-light);
}

.feature-block:hover {
    border-color: var(--primary-blue);
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    background: linear-gradient(135deg, rgba(26, 58, 122, 0.02) 0%, rgba(255, 140, 0, 0.02) 100%);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    display: inline-block;
    width: 70px;
    height: 70px;
    background: rgba(26, 58, 122, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 15px 0;
}

.feature-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==================== HIGHLIGHTS SECTION (SECTION 7) ==================== */

.highlights-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0d1f47 100%);
    color: white;
}

.highlights-section .section-title {
    color: white;
}

.highlights-section .section-subtitle {
    color: var(--primary-orange);
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 140, 0, 0.3);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-orange);
    transform: scale(1.05);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

/* Development focus cards - within highlights section */
.development-focus-cards {
    margin-top: 20px;
}

.dev-focus-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 140, 0, 0.4);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.dev-focus-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-orange);
}

.dev-focus-icon {
    font-size: 2rem;
    color: var(--primary-orange);
    margin-bottom: 8px;
}

.dev-focus-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

/* ==================== ANNOUNCEMENTS SECTION ==================== */

.announcements-section {
    background: white;
}

.announcement-card {
    background: var(--light-bg);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    height: 100%;
    transition: all 0.3s ease;
}

.announcement-card:hover {
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-medium);
}

.announcement-date {
    font-size: 0.85rem;
    color: var(--primary-orange);
    font-weight: 600;
}

.announcement-date i {
    margin-right: 5px;
}

.announcement-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 12px 0;
}

.announcement-desc {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* ==================== SOCIAL UPDATES SECTION ==================== */

.social-updates-section {
    background: linear-gradient(135deg, rgba(26, 58, 122, 0.04) 0%, rgba(255, 140, 0, 0.04) 100%);
}

.social-update-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}

.social-update-card:hover {
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-medium);
}

.social-update-thumb {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Platform icon badge - overlay on thumbnail */
.social-platform-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.facebook-badge {
    background: #3b5998;
}

.instagram-badge {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}

.youtube-badge {
    background: #ff0000;
}

.social-update-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
    display: block;
}

/* Fallback when using placeholder div (for future embed API) */
.social-update-placeholder {
    aspect-ratio: 16/9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}

.social-update-placeholder i {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.facebook-placeholder { background: linear-gradient(135deg, #3b5998 0%, #2d4373 100%); }
.instagram-placeholder { background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%); }
.youtube-placeholder { background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%); }

.social-update-summary {
    padding: 15px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.social-update-date {
    padding: 0 15px 15px;
    font-size: 0.85rem;
    color: #888;
    display: block;
}

/* ==================== JANATA SEVA SECTION (UPGRADED) ==================== */

.janata-seva-section {
    background: var(--light-bg);
}

.janata-seva-image {
    margin-bottom: 30px;
}

.janata-seva-text {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.janata-seva-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.complaint-status-flow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.status-step {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.status-step i {
    margin-right: 5px;
    color: var(--primary-orange);
}

.status-arrow {
    color: var(--primary-orange);
    font-weight: bold;
}

.complaint-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.complaint-cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    min-width: 100px;
}

.complaint-cat-card i {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--primary-orange);
}

.complaint-cat-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-3px);
    box-shadow: var(--shadow-light);
    color: var(--primary-blue);
}

/* ==================== PORTAL ACCESS SECTION ==================== */

.portal-access-section {
    background: linear-gradient(135deg, rgba(26, 58, 122, 0.05) 0%, rgba(255, 140, 0, 0.05) 100%);
}

.portal-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 100px;
}

.portal-card i {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--primary-orange);
}

.portal-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    color: var(--primary-blue);
}

/* ==================== BOOTH ORGANIZATION SECTION ==================== */

.booth-organization-section {
    background: white;
}

.booth-organization-section .section-description {
    margin-bottom: 30px;
}

.booth-card {
    background: var(--light-bg);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.booth-card:hover {
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-light);
}

.booth-card i {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 12px;
    display: block;
}

.booth-card h6 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0;
}

/* ==================== WHATSAPP STRIP ==================== */

.whatsapp-strip {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
}

.whatsapp-strip-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.whatsapp-strip-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.whatsapp-strip-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.whatsapp-strip-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.whatsapp-strip-text {
    font-size: 1rem;
    opacity: 0.95;
}

.btn-whatsapp {
    background: white !important;
    color: #25d366 !important;
    border: 2px solid white !important;
    font-weight: 700 !important;
}

.btn-whatsapp:hover {
    background: rgba(255,255,255,0.9) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.service-list {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    padding: 12px 0;
    color: #555;
    font-size: 1rem;
    border-bottom: 1px solid var(--border-color);
}

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

.service-list i {
    color: var(--primary-green);
    margin-right: 12px;
    font-size: 1.1rem;
}

/* ==================== SUPPORTERS SECTION (SECTION 9) ==================== */

.supporters-section {
    background: white;
}

.supporter-form-wrapper {
    background: var(--light-bg);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 40px;
    box-shadow: var(--shadow-light);
}

.supporter-form {
    display: flex;
    flex-direction: column;
}

.supporter-form .form-label {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.supporter-form .form-control,
.supporter-form .form-select {
    border: 2px solid var(--border-color);
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.supporter-form .form-control:focus,
.supporter-form .form-select:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 140, 0, 0.25);
}

.supporter-form .form-check-label {
    color: #555;
    margin-left: 8px;
}

.supporter-form .btn {
    margin-top: 20px;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
}

/* ==================== SOCIAL CONNECT SECTION (SECTION 10) ==================== */

.social-connect-section {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.05) 0%, rgba(26, 58, 122, 0.05) 100%);
}

.social-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: var(--shadow-light);
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.social-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.social-icon.facebook {
    background: rgba(59, 89, 152, 0.1);
    color: #3b5998;
}

.social-icon.instagram {
    background: rgba(217, 51, 110, 0.1);
    color: #d9336e;
}

.social-icon.youtube {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
}

.social-icon.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.social-card:hover .social-icon {
    transform: scale(1.1);
}

.social-platform {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 15px 0;
}

.social-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* ==================== MEDIA SECTION (SECTION 11) ==================== */

.media-section {
    background: white;
}

.gallery-item {
    transition: all 0.3s ease;
}

.gallery-image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.15) 0%, rgba(26, 58, 122, 0.15) 100%);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 2.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.gallery-item:hover .gallery-image-placeholder {
    border-color: var(--primary-orange);
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

.gallery-image-placeholder p {
    margin-top: 15px;
    font-size: 1rem;
    color: #666;
}

/* ==================== CTA BANNER (SECTION 12) ==================== */

.cta-banner {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0d1f47 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

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

.cta-buttons .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ==================== FOOTER (SECTION 13) ==================== */

.footer {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #0d1f47 100%);
    color: white;
    border-top: 3px solid var(--primary-orange);
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    background: rgba(255, 140, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-brand h5 {
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.footer-about {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-title {
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-orange);
    margin-left: 5px;
}

.footer-contact {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-contact p {
    margin-bottom: 15px;
}

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

.footer-contact a {
    color: var(--primary-orange);
    text-decoration: none;
}

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

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* SR World Solutions - distinct developer credit with logo */
.footer-developed-by {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 140, 0, 0.3);
    transition: all 0.3s ease;
}

.footer-developed-by:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-orange);
    text-decoration: none;
}

.footer-dev-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.footer-dev-text {
    color: inherit;
}

.footer-dev-text strong {
    color: var(--primary-orange);
}

.footer-developed-by:hover .footer-dev-text strong {
    color: white;
}

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 140, 0, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-orange);
    color: white;
    transform: scale(1.1);
}

/* ==================== SCROLL TO TOP BUTTON ==================== */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff7600 100%);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
}

.scroll-to-top.show {
    display: flex;
}

/* ==================== BUTTONS ==================== */

.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff7600 100%);
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff7600 0%, var(--primary-orange) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 140, 0, 0.3);
}

.btn-outline-primary {
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

.btn-light {
    background: white;
    color: var(--primary-blue);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background: var(--light-bg);
    transform: translateY(-2px);
}

.btn-outline-light {
    color: white;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* ==================== RESPONSIVE DESIGN ==================== */

@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-subheading {
        font-size: 1.3rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

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

    .cta-title {
        font-size: 1.8rem;
    }

    .top-header .row {
        flex-direction: column;
        text-align: center;
    }

    .top-header .col-md-6 {
        margin-bottom: 10px;
    }

    .social-icons-header {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
        margin-top: 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .complaint-status-flow {
        flex-direction: column;
        align-items: flex-start;
    }

    .status-arrow {
        display: none;
    }

    .whatsapp-strip-inner {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-strip-content {
        flex-direction: column;
    }

    .janata-seva-ctas .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-headline {
        font-size: 2rem;
    }

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

    .hero-description {
        font-size: 1rem;
    }

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

    .section-subtitle {
        font-size: 1rem;
    }

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

    .cta-title {
        font-size: 1.5rem;
    }

    .supporter-form-wrapper {
        padding: 20px;
    }

    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
    }

    .brand-name {
        font-size: 1.15rem;
    }

    .brand-tagline {
        font-size: 0.75rem;
    }

    .logo-image img {
        max-height: 36px;
    }
}

/* ==================== ANIMATIONS ==================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.vision-card,
.feature-block,
.social-card,
.announcement-card,
.social-update-card,
.booth-card,
.portal-card,
.dev-focus-card {
    animation: fadeInUp 0.6s ease-out;
}

/* ==================== UTILITY CLASSES ==================== */

.text-primary {
    color: var(--primary-blue) !important;
}

.text-orange {
    color: var(--primary-orange) !important;
}

.bg-primary {
    background-color: var(--primary-blue) !important;
}

.bg-light {
    background-color: var(--light-bg) !important;
}

hr {
    border-color: rgba(255, 140, 0, 0.3);
}

/* ==================== PRINT STYLES ==================== */

@media print {
    .navbar,
    .top-header,
    .scroll-to-top,
    .cta-banner {
        display: none;
    }

    body {
        background: white;
    }
}
