@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&family=Playball&display=swap');

:root {
    --primary: #0f2c59; /* Deep Campaign Blue */
    --primary-light: #1b3d6f;
    --secondary: #059669; /* Vibrant Development Green */
    --secondary-light: #10b981;
    --accent: #f59e0b; /* Gold Accent */
    --accent-light: #fbbf24;
    --accent-dark: #d97706;
    --dark: #0b1329; /* Deep Navy Slate */
    --light: #f8fafc; /* Crisp Light Gray */
    --white: #ffffff;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --glass-bg: rgba(15, 44, 89, 0.75);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 25px rgba(245, 158, 11, 0.3);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--light);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--primary);
}

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

/* SECTION CONTAINER */
section {
    padding: 100px 8% 80px 8%;
    position: relative;
}

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

.section-title {
    font-size: 2.5rem;
    color: var(--primary);
    position: relative;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

.section-title-left {
    text-align: left;
}

.section-title-left::after {
    margin: 10px 0 0 0;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 400;
}

/* SCROLL REVEAL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* GLASSMORPHISM NAVBAR */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 8%;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

nav.scrolled {
    padding: 12px 8%;
    background: rgba(15, 44, 89, 0.95);
    box-shadow: var(--shadow-md);
}

.logo-container {
    display: flex;
    flex-direction: column;
}

.logo-main {
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.logo-sub {
    color: var(--accent-light);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: -2px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

nav ul li a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 5px 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition-smooth);
}

nav ul li a:hover {
    color: var(--accent-light);
}

nav ul li a:hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: 30px;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
    color: var(--white) !important;
}

.nav-cta::after {
    display: none !important;
}

/* Hamburger Menu */
.menu-btn {
    display: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* CINEMATIC HERO SECTION */
.hero {
    height: 100vh;
    min-height: 750px;
    background: linear-gradient(135deg, rgba(15, 44, 89, 0.9), rgba(5, 150, 105, 0.75)), url('assets/images/road_development.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 120px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    animation: fadeUp 1s ease-out;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-light);
    display: inline-block;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 3.8rem;
    line-height: 1.15;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 10px;
}

.hero h1 span {
    background: linear-gradient(120deg, var(--accent-light), #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-area {
    font-size: 1.3rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-area i {
    color: var(--accent);
}

.hero-tagline {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subbranding {
    font-size: 1.15rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    border-left: 3px solid var(--secondary-light);
    padding-left: 15px;
}

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

.btn {
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(245, 158, 11, 0.5);
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

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

.btn-tertiary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-tertiary:hover {
    border-color: var(--accent-light);
    color: var(--accent-light);
}

/* Hero Portrait Frame */
.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: zoomIn 1.2s ease-out;
}

.hero-circle-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.25) 0%, rgba(5, 150, 105, 0.1) 70%, transparent 100%);
    z-index: 1;
    animation: pulseGlow 4s infinite alternate;
}

.hero-portrait-frame {
    position: relative;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    border: 6px solid var(--white);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    overflow: hidden;
    z-index: 2;
    background-color: var(--primary-light);
}

.hero-portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.hero-portrait-frame:hover img {
    transform: scale(1.05);
}

.hero-floating-badge {
    position: absolute;
    bottom: 10px;
    right: 20px;
    background: var(--white);
    color: var(--primary);
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(15, 44, 89, 0.1);
    animation: float 3s ease-in-out infinite;
}

.hero-floating-badge i {
    color: var(--secondary);
}

/* ABOUT SECTION */
.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.about-images-collage {
    position: relative;
    height: 480px;
}

.about-img-main {
    width: 85%;
    height: 380px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}

.about-img-sub {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 220px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}

.about-content h3 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-content p {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: justify;
}

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

.about-highlight-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.about-highlight-item i {
    font-size: 1.25rem;
    color: var(--accent-dark);
    background: rgba(245, 158, 11, 0.1);
    padding: 10px;
    border-radius: 10px;
}

.about-highlight-item h4 {
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.about-highlight-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* STATS BAR */
.stats-bar {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 60px 8%;
    color: var(--white);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    margin: -50px auto 50px auto;
    max-width: 1200px;
    width: calc(100% - 16%);
    position: relative;
    z-index: 10;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-icon {
    font-size: 2.2rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* DEVELOPMENT VISION SECTION */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.vision-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(5, 150, 105, 0.15);
}

.vision-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.vision-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vision-card:hover .vision-image-wrapper img {
    transform: scale(1.08);
}

.vision-icon-tag {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
    border: 3px solid var(--white);
    z-index: 5;
}

.vision-body {
    padding: 35px 25px 25px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.vision-body h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.vision-body p {
    font-size: 0.95rem;
    color: var(--text-light);
    flex-grow: 1;
}

/* ==========================================
   MANIFESTO SECTION STYLES
   ========================================== */

.manifesto-section {
    padding: 0;
    background: var(--light);
}

/* --- MANIFESTO HERO BANNER --- */
.manifesto-hero-banner {
    background: linear-gradient(135deg, #0b1329 0%, #0f2c59 40%, #1a1a2e 70%, #16213e 100%);
    position: relative;
    overflow: hidden;
    padding: 70px 8% 60px 8%;
    text-align: center;
}

.manifesto-banner-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(245,158,11,0.18) 0%, rgba(5,150,105,0.08) 50%, transparent 75%);
    pointer-events: none;
}

.manifesto-banner-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.manifesto-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,158,11,0.15);
    border: 1px solid rgba(245,158,11,0.4);
    color: var(--accent-light);
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.manifesto-main-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    line-height: 1.25;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.manifesto-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}

.manifesto-pledge-strip {
    background: rgba(5, 150, 105, 0.15);
    border: 1px solid rgba(5, 150, 105, 0.3);
    border-radius: 12px;
    padding: 16px 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #6ee7b7;
    font-size: 1rem;
    font-weight: 500;
    max-width: 800px;
    text-align: left;
}

.manifesto-pledge-strip i {
    font-size: 1.4rem;
    color: #34d399;
    flex-shrink: 0;
}

/* --- PROMISE BLOCKS --- */
.manifesto-promise-block {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 0;
    max-width: 1200px;
    margin: 40px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    width: calc(100% - 16%);
}

.promise-icon-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    gap: 16px;
    position: relative;
}

.promise-primary .promise-icon-col {
    background: linear-gradient(160deg, #0f2c59, #1b3d6f);
}
.promise-green .promise-icon-col {
    background: linear-gradient(160deg, #065f46, #059669);
}
.promise-gold .promise-icon-col {
    background: linear-gradient(160deg, #92400e, #d97706);
}

.promise-big-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.promise-serial {
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    color: rgba(255,255,255,0.15);
    line-height: 1;
}

.promise-text-col {
    background: var(--white);
    padding: 36px 40px;
}

.promise-title {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
    font-family: 'Outfit', sans-serif;
    line-height: 1.3;
}

.promise-tagline {
    font-size: 0.95rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 20px;
    font-style: italic;
}

.promise-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.promise-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.97rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.promise-points li i {
    color: var(--secondary);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.promise-points li strong {
    color: var(--primary);
}

/* Transparency info box */
.transparency-info-box {
    background: rgba(245,158,11,0.08);
    border: 1px solid rgba(245,158,11,0.25);
    border-radius: 10px;
    padding: 14px 18px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 0.93rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.transparency-info-box i {
    color: var(--accent-dark);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* --- DUTIES GRID --- */
.manifesto-duties-section {
    background: linear-gradient(135deg, #0b1329 0%, #0f2c59 60%, #0b1329 100%);
    padding: 70px 8%;
    margin-top: 50px;
}

.manifesto-duties-title {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    margin-bottom: 10px;
}

.manifesto-duties-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 0;
}

.manifesto-duties-section .section-header {
    margin-bottom: 50px;
}

.manifesto-duties-section .section-header h3::after,
.manifesto-duties-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

.manifesto-duties-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.duty-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 24px 20px;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.duty-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(245,158,11,0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.duty-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.duty-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    margin-bottom: 8px;
    line-height: 1.3;
}

.duty-card p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

/* --- OATH / PLEDGE SECTION --- */
.manifesto-oath-section {
    padding: 60px 8%;
    background: var(--light);
}

.manifesto-oath-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #0f2c59, #1b3d6f 50%, #0f2c59);
    border: 2px solid var(--accent);
    border-radius: 24px;
    padding: 50px 50px 40px 50px;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 60px rgba(15,44,89,0.35), 0 0 0 1px rgba(245,158,11,0.1);
    overflow: hidden;
}

.manifesto-oath-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(30deg, transparent 40%, rgba(245,158,11,0.04) 50%, transparent 60%);
    pointer-events: none;
}

.oath-flame-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 16px;
    animation: pulseGlow 2.5s ease-in-out infinite alternate;
}

.oath-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    margin-bottom: 28px;
}

.oath-text p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.75;
    margin-bottom: 16px;
    font-style: italic;
    text-align: center;
}

.oath-english {
    font-size: 0.92rem !important;
    color: rgba(255,255,255,0.6) !important;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 14px;
}

.oath-signature-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.12);
    gap: 20px;
    flex-wrap: wrap;
}

.oath-sig-block {
    text-align: left;
}

.oath-sig-line {
    font-family: 'Playball', cursive;
    font-size: 1.8rem;
    color: var(--accent-light);
    line-height: 1;
}

.oath-sig-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.oath-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(245,158,11,0.35);
    transition: var(--transition-smooth);
}

.oath-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(245,158,11,0.5);
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
}

/* Manifesto responsive */
@media (max-width: 1024px) {
    .manifesto-duties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .manifesto-promise-block {
        grid-template-columns: 1fr;
        width: calc(100% - 10%);
    }
    .promise-icon-col {
        flex-direction: row;
        justify-content: flex-start;
        padding: 20px 24px;
        gap: 14px;
    }
    .promise-serial {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .manifesto-main-title {
        font-size: 2rem;
    }
    .manifesto-duties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .manifesto-oath-card {
        padding: 30px 24px;
    }
    .oath-signature-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .oath-sig-block {
        text-align: center;
    }
    .promise-text-col {
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .manifesto-duties-grid {
        grid-template-columns: 1fr;
    }
    .manifesto-main-title {
        font-size: 1.6rem;
    }
}

/* PUBLIC COMPLAINT PORTAL */
.complaint-section {
    background: linear-gradient(rgba(15, 44, 89, 0.96), rgba(15, 44, 89, 0.94)), url('assets/images/inspection.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}

.complaint-section .section-title {
    color: var(--white);
}

.complaint-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.complaint-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.complaint-notice {
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--accent-light);
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 30px;
    font-size: 0.95rem;
    display: flex;
    gap: 12px;
    align-items: center;
}

.complaint-notice i {
    font-size: 1.3rem;
}

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

.form-single-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 12px 18px;
    color: var(--white);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.2);
}

select.form-control option {
    background-color: var(--dark);
    color: var(--white);
}

.file-upload-wrapper {
    position: relative;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.file-upload-wrapper:hover {
    border-color: var(--secondary-light);
    background: rgba(255, 255, 255, 0.04);
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-content i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.file-upload-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

#file-preview {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--accent-light);
    display: none;
}

.form-submit-btn {
    grid-column: span 2;
    padding: 16px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.2);
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
    background: linear-gradient(135deg, var(--secondary-light), #10b981);
}



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

.testimonials-container {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

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

.testimonial-card {
    min-width: 100%;
    padding: 0 80px;
    text-align: center;
}

.testimonial-quote-icon {
    font-size: 2.5rem;
    color: rgba(5, 150, 105, 0.15);
    margin-bottom: 20px;
}

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

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.testimonial-author-role {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    margin-top: 2px;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(15, 44, 89, 0.2);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.testimonial-dot.active {
    background-color: var(--primary);
    width: 25px;
    border-radius: 10px;
}

.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--light);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    z-index: 10;
    color: var(--primary);
    transition: var(--transition-smooth);
}

.testimonial-arrow:hover {
    background: var(--primary);
    color: var(--white);
}

.testimonial-arrow-left {
    left: 0;
}

.testimonial-arrow-right {
    right: 0;
}



/* CONNECT SECTION / SOCIALS */
.connect-section {
    background: #000000;
    color: var(--white);
    text-align: center;
    padding: 80px 8%;
}

.connect-section .section-title {
    color: var(--accent);
}

.connect-section .section-title::after {
    background: var(--accent);
}

.connect-section .section-subtitle {
    color: var(--white);
    margin-bottom: 25px;
}

/* Follow Pills */
.follow-pills-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.follow-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
    transition: var(--transition-smooth);
}

.follow-pill i {
    font-size: 1.1rem;
}

.pill-x {
    background: #15202b;
    border: 1.5px solid #1da1f2;
}

.pill-x:hover {
    background: #1da1f2;
    transform: translateY(-2px);
}

.pill-fb {
    background: #0c1c38;
    border: 1.5px solid #1877f2;
}

.pill-fb:hover {
    background: #1877f2;
    transform: translateY(-2px);
}

.pill-yt {
    background: #2e080c;
    border: 1.5px solid #ff0000;
}

.pill-yt:hover {
    background: #ff0000;
    transform: translateY(-2px);
}

.pill-ig {
    background: #1b0a1c;
    border: 1.5px solid #e1306c;
}

.pill-ig:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    transform: translateY(-2px);
}

/* VERTICAL FLOATING SOCIAL BAR */
.vertical-social-bar {
    position: fixed;
    right: 0;
    top: 40%;
    transform: translateY(-50%);
    background: var(--accent); /* Yellow-gold background */
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    box-shadow: -2px 4px 10px rgba(0,0,0,0.25);
    z-index: 999;
}

.vertical-social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.vertical-social-icon:hover {
    transform: scale(1.15) translateX(-2px);
}

.vertical-social-icon.fb { background-color: #1877f2; }
.vertical-social-icon.ig { background-color: #e1306c; }
.vertical-social-icon.ln { background-color: #0077b5; }
.vertical-social-icon.tw { background-color: #000000; }
.vertical-social-icon.yt { background-color: #ff0000; }

/* FLOATING COMPLAINT BUTTON */
.floating-complaint-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #0f2c59;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: var(--transition-smooth);
    animation: floating-btn-pulse 2s infinite alternate;
    border: 1px solid rgba(255,255,255,0.2);
}

.floating-complaint-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 25px rgba(245, 158, 11, 0.5);
    color: #0f2c59;
}

@keyframes floating-btn-pulse {
    0% {
        box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    }
    100% {
        box-shadow: 0 8px 25px rgba(245, 158, 11, 0.7);
    }
}

/* FLOATING JOIN/COLLABORATE BUTTON */
.floating-join-btn {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: var(--white);
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: var(--transition-smooth);
    animation: floating-join-pulse 2s infinite alternate;
    border: 1px solid rgba(255,255,255,0.2);
}

.floating-join-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 25px rgba(5, 150, 105, 0.5);
    color: var(--white);
}

@keyframes floating-join-pulse {
    0% {
        box-shadow: 0 4px 15px rgba(5, 150, 105, 0.4);
    }
    100% {
        box-shadow: 0 8px 25px rgba(5, 150, 105, 0.7);
    }
}

/* MODALS */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 44, 89, 0.8); /* Updated to brand blue overlay */
    backdrop-filter: blur(8px);
    z-index: 3000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-container {
    background: var(--white);
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--shadow-lg);
    position: relative;
    transform: translateY(30px);
    transition: transform 0.3s ease;
    text-align: center;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-container.align-left {
    text-align: left;
}

.modal-container.modal-small {
    max-width: 550px;
}

.modal-container.modal-medium {
    max-width: 600px;
}

/* Modal-specific complaint notice style for readable text contrast */
.modal .complaint-notice {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.25);
    color: #b45309; /* Darker amber text for readability on light backgrounds */
    border-radius: 12px;
    padding: 12px 15px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    display: flex;
    gap: 12px;
    align-items: center;
    text-align: left;
}

.modal .complaint-notice i {
    font-size: 1.2rem;
    color: var(--accent-dark);
}

.modal.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--accent-dark);
    transform: scale(1.15);
}

.modal-icon {
    font-size: 3.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.modal .icon-accent {
    color: var(--accent);
}

.modal-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--primary);
}

.modal-desc {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.modal .modal-desc.desc-small {
    font-size: 0.85rem;
    margin-top: -15px;
}

/* Form inputs & components inside Modals */
.modal label {
    color: var(--text-dark);
}

.modal .form-control {
    background: var(--light);
    color: var(--text-dark);
    border: 1px solid rgba(15, 44, 89, 0.15);
}

.modal .form-control::placeholder {
    color: rgba(30, 41, 59, 0.5) !important;
}

.modal .form-control:focus {
    border-color: var(--secondary);
    background: var(--white);
    box-shadow: 0 0 10px rgba(5, 150, 105, 0.15);
}

/* Premium custom dropdown arrow for select elements inside modals */
.modal select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f2c59' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px;
    padding-right: 45px !important;
    cursor: pointer;
}

/* Make placeholder choice color gray until valid selection is made */
.modal select.form-control:invalid {
    color: rgba(30, 41, 59, 0.5) !important;
}

.modal select.form-control option {
    background-color: var(--white);
    color: var(--text-dark);
}

.modal select.form-control option[disabled] {
    color: rgba(30, 41, 59, 0.5);
}

.modal .file-upload-wrapper {
    border: 2px dashed rgba(15, 44, 89, 0.15);
    padding: 15px;
}

.modal .file-upload-content i {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.modal .file-upload-content p {
    color: var(--text-light);
    font-size: 0.8rem;
    margin-bottom: 0;
}

.modal .textarea-desc {
    min-height: 80px;
}

/* WhatsApp CTA Button Styling */
.btn-wa-brand {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
}

.btn-wa-brand:hover {
    background: linear-gradient(135deg, var(--secondary-light), #10b981);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
    transform: translateY(-2px);
}

.btn-flex-full {
    width: 100%;
    display: flex;
}

.btn-submit-margin {
    margin-top: 15px;
}

.text-secondary {
    color: var(--secondary);
}

/* FOOTER */
footer {
    background: #061224;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 8% 30px 8%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
    max-width: 1200px;
    margin: 0 auto 50px auto;
    width: 100%;
}

.footer-info h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.footer-info p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    max-width: 320px;
}

.footer-links h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links ul li a {
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-contact-item i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ANIMATIONS KEYFRAMES */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes pulseGlow {
    from {
        transform: scale(0.98);
        opacity: 0.8;
    }
    to {
        transform: scale(1.02);
        opacity: 1.2;
    }
}

/* CAMPAIGN SOCIAL HUB FEED */
.social-feed-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 50px auto 0 auto;
    text-align: left;
    max-width: 1200px;
    width: 100%;
}

.social-card {
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    min-height: 420px;
    position: relative;
    border: none;
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.2);
}

/* Custom platform-specific card backgrounds and layouts */

/* 1. YouTube Card Styling */
.social-card.youtube-card {
    background: #000;
    min-height: 400px;
}

.youtube-card-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.youtube-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.youtube-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

.youtube-profile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.youtube-profile-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.youtube-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--white);
}

.youtube-name {
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
}

.youtube-badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(200, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 1rem;
}

.youtube-play-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(255,0,0,0.5);
    transition: var(--transition-smooth);
}

.youtube-card:hover .youtube-play-center {
    transform: translate(-50%, -50%) scale(1.1);
    background: #ff3333;
}

.youtube-play-center i {
    color: var(--white);
    font-size: 2rem;
    margin-left: 5px;
}

.youtube-card-title {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    line-height: 1.35;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    text-align: left;
}

/* 2. X/Twitter Card Styling */
.social-card.x-card {
    background: #ffffff;
    padding: 20px;
    color: #000000;
}

.x-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.x-profile-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.x-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
}

.x-user-details {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.x-name {
    font-weight: 800;
    color: #0f1419;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 4px;
}

.x-name i.fa-circle-check {
    color: #1d9bf0;
    font-size: 0.85rem;
}

.x-handle {
    font-size: 0.85rem;
    color: #536471;
}

.x-handle a.follow-link {
    color: #1d9bf0;
    font-weight: 600;
    margin-left: 4px;
}

.x-platform-icon-container {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #1d9bf0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 1rem;
}

.x-card-text {
    font-size: 0.95rem;
    color: #0f1419;
    line-height: 1.4;
    margin-bottom: 15px;
    text-align: left;
}

.x-card-text a {
    color: #1d9bf0;
}

.x-card-media-preview {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e1e8ed;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    background: #f7f9fa;
    position: relative;
    height: 180px;
}

.x-media-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.x-media-right-yellow {
    background: var(--accent-light);
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    position: relative;
}

.x-media-title-hindi {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: #000000;
    font-size: 1.05rem;
    line-height: 1.35;
}

.x-watch-btn-pill {
    background: #000000;
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
}

.x-play-button-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(29, 155, 240, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.x-card-media-preview:hover .x-play-button-overlay {
    transform: scale(1.1);
}

/* 3. Facebook Video Card Styling */
.social-card.facebook-card {
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 420px;
}

.facebook-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    z-index: 5;
}

.facebook-profile-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.facebook-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.6);
}

.facebook-name {
    color: #4b2304;
    font-weight: 800;
    font-size: 0.95rem;
}

.facebook-share-btn {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(5px);
    padding: 6px 12px;
    border-radius: 20px;
    color: #4b2304;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255,255,255,0.3);
}

.facebook-banner-text {
    padding: 0 20px 20px 20px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 900;
    color: #8b0000;
    line-height: 1.35;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facebook-video-container {
    height: 200px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.facebook-video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.facebook-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1877f2;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: var(--transition-smooth);
}

.facebook-card:hover .facebook-play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    background: #ffffff;
    color: #0c56b3;
}

/* 4. Instagram Card Styling */
.social-card.instagram-card {
    background: #121212;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 420px;
}

.instagram-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 15px;
}

.instagram-profile-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.instagram-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #e1306c;
    padding: 1px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.instagram-user-details {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.instagram-name {
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 4px;
    color: #ffffff;
}

.instagram-name i.fa-circle-check {
    color: #0095f6;
    font-size: 0.8rem;
}

.instagram-location {
    font-size: 0.75rem;
    color: #a3a3a3;
}

.instagram-dots-btn {
    color: #ffffff;
    font-size: 1rem;
    opacity: 0.8;
}

.instagram-dots-btn:hover {
    opacity: 1;
}

.instagram-media-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.instagram-media-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instagram-actions-bar {
    display: flex;
    justify-content: space-between;
    padding: 12px 15px 8px 15px;
    font-size: 1.25rem;
}

.instagram-left-actions {
    display: flex;
    gap: 15px;
}

.instagram-left-actions i {
    cursor: pointer;
    transition: var(--transition-smooth);
}

.instagram-left-actions i:hover {
    color: #e1306c;
    transform: scale(1.1);
}

.instagram-right-actions i {
    cursor: pointer;
    transition: var(--transition-smooth);
}

.instagram-right-actions i:hover {
    color: var(--accent);
    transform: scale(1.1);
}

.instagram-card-body {
    padding: 0 15px 15px 15px;
    text-align: left;
    font-size: 0.85rem;
}

.instagram-likes {
    font-weight: 700;
    margin-bottom: 6px;
    color: #ffffff;
}

.instagram-caption {
    line-height: 1.4;
    color: #f5f5f5;
}

.instagram-caption strong {
    color: #ffffff;
    margin-right: 5px;
}

.instagram-view-comments {
    color: #737373;
    margin-top: 5px;
    cursor: pointer;
}

/* RESPONSIVE LAYOUTS */
@media (max-width: 1024px) {
    section {
        padding: 80px 5%;
    }
    
    .hero {
        height: auto;
        padding-bottom: 80px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-area, .hero-subbranding {
        justify-content: center;
        border-left: none;
        padding-left: 0;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image-container {
        grid-row: 1;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-images-collage {
        height: 380px;
    }
    
    .about-img-main {
        height: 300px;
    }
    
    .about-img-sub {
        height: 180px;
    }

    /* Mobile Menu drawer elevated to 1024px */
    nav ul {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(15, 44, 89, 0.98); /* Brand Deep Campaign Blue */
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: var(--transition-smooth);
        z-index: 999;
    }
    
    nav ul.active {
        left: 0;
    }
    
    .menu-btn {
        display: block;
    }

    /* Grid columns elevated to 1024px */
    .vision-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-feed-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-bar {
        grid-template-columns: 1fr 1fr;
        margin: -40px 5% 40px 5%;
        padding: 40px 5%;
        width: calc(100% - 10%);
    }
    
    .complaint-container {
        padding: 25px;
    }
    
    .complaint-form {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width, .form-submit-btn {
        grid-column: span 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero-tagline {
        font-size: 1.8rem;
    }

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

    .social-feed-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 0 20px;
    }

    /* Responsive Floating Action Buttons */
    .floating-complaint-btn span,
    .floating-join-btn span {
        display: none;
    }

    .floating-complaint-btn,
    .floating-join-btn {
        width: 54px;
        height: 54px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
        bottom: 20px;
        gap: 0;
    }

    .floating-complaint-btn {
        right: 20px;
    }

    .floating-join-btn {
        left: 20px;
    }

    .floating-complaint-btn i,
    .floating-join-btn i {
        font-size: 1.3rem;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-portrait-frame {
        width: 280px;
        height: 280px;
    }
    
    .hero-circle-glow {
        width: 300px;
        height: 300px;
    }
    
    .stats-bar {
        grid-template-columns: 1fr;
    }

    .modal-container {
        padding: 25px 20px;
    }
}

/* ==========================================
   10. VOLUNTEER ID CARD STYLES
   ========================================== */
.volunteer-id-card {
    width: 100%;
    max-width: 320px;
    height: 480px;
    background: linear-gradient(135deg, #091a33 0%, var(--primary) 100%);
    border: 3px solid var(--accent);
    border-radius: 18px;
    margin: 0 auto;
    padding: 20px;
    box-shadow: 0 15px 35px rgba(15, 44, 89, 0.4), var(--shadow-glow);
    position: relative;
    overflow: hidden;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.volunteer-id-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(30deg, transparent 40%, rgba(245, 158, 11, 0.05) 50%, transparent 60%);
    z-index: 1;
}

.id-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid rgba(245, 158, 11, 0.3);
    padding-bottom: 10px;
    z-index: 2;
}

.id-card-logo {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.id-logo-main {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
    line-height: 1.1;
}

.id-logo-sub {
    font-size: 0.6rem;
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.id-badge-seal {
    font-size: 0.65rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary);
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    letter-spacing: 0.5px;
}

.id-card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    z-index: 2;
}

.id-photo-container {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid var(--accent);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    overflow: hidden;
    margin-bottom: 8px;
    background-color: var(--primary-light);
}

.id-photo-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#id-card-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
    font-family: 'Outfit', sans-serif;
}

.id-role-tag {
    font-size: 0.7rem;
    font-weight: 700;
    background: rgba(5, 150, 105, 0.2);
    border: 1px solid var(--secondary);
    color: var(--secondary-light);
    padding: 3px 12px;
    border-radius: 12px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.id-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 15px;
    width: 100%;
    text-align: left;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 10px;
}

.id-detail-item {
    display: flex;
    flex-direction: column;
}

.id-detail-label {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.id-detail-value {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.id-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 8px;
    z-index: 2;
}

.id-issue-date {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
}

.id-signature {
    display: flex;
    flex-direction: column;
    text-align: right;
    align-items: flex-end;
}

.signature-line {
    font-family: 'Playball', 'Dancing Script', 'Brush Script MT', cursive;
    font-size: 1.15rem;
    color: var(--accent-light);
    line-height: 1;
}

.signature-title {
    font-size: 0.5rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

.id-barcode-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5px;
    z-index: 2;
}

.id-barcode-strip {
    width: 100%;
    height: 18px;
    background: repeating-linear-gradient(
        90deg,
        var(--white),
        var(--white) 1px,
        transparent 1px,
        transparent 3px,
        var(--white) 3px,
        var(--white) 4px,
        transparent 4px,
        transparent 6px
    );
    opacity: 0.8;
}

.id-barcode-num {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 2px;
    margin-top: 2px;
    font-family: monospace;
}


/* ==========================================
   11. SOCIAL EMBED CARD STYLES (Real Jan Suraaj Embeds)
   ========================================== */

/* Shared embed card wrapper */
.social-card.youtube-embed-card,
.social-card.x-embed-card,
.social-card.facebook-embed-card {
    background: #0e0e0e;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: visible;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

.social-card.youtube-embed-card:hover,
.social-card.x-embed-card:hover,
.social-card.facebook-embed-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

/* Platform badge (top-right corner pill with duplicate icon) */
.social-embed-platform-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 20;
    display: flex;
    gap: 4px;
    align-items: center;
    font-size: 1rem;
    padding: 5px 10px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    pointer-events: none;
}

.social-embed-platform-badge.youtube-badge {
    background: rgba(255, 0, 0, 0.2);
    color: #FF0000;
}

.social-embed-platform-badge.x-badge {
    background: rgba(29, 161, 242, 0.15);
    color: #1DA1F2;
}

.social-embed-platform-badge.facebook-badge {
    background: rgba(24, 119, 242, 0.15);
    color: #1877F2;
}

/* The iframe/blockquote wrapper */
.social-embed-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #111;
    border-radius: 16px 16px 0 0;
}

/* YouTube iframe sizing (16:9 aspect ratio) */
.social-card.youtube-embed-card .social-embed-wrapper {
    padding-top: 56.25%;
}

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

/* Twitter blockquote embed wrapper */
.twitter-embed-wrapper {
    padding: 10px 12px;
    min-height: 280px;
    background: #16202c;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.twitter-embed-wrapper .twitter-tweet {
    width: 100% !important;
    margin: 0 auto !important;
}

/* Facebook reel iframe wrapper */
.facebook-embed-wrapper {
    width: 100%;
    min-height: 340px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background: #1a1a1a;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.facebook-embed-wrapper iframe {
    width: 100%;
    max-width: 500px;
    height: 420px;
    border: none;
    display: block;
}

/* Footer bar at bottom of each embed card */
.social-embed-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: rgba(255,255,255,0.04);
    border-top: 1px solid rgba(255,255,255,0.07);
    border-radius: 0 0 16px 16px;
}

.social-embed-channel {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.social-embed-view-link {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition-smooth);
}

.social-embed-view-link:hover {
    color: var(--accent-light);
    transform: translateX(2px);
}

/* Instagram embed card */
.social-card.instagram-embed-card {
    background: #0e0e0e;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: visible;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

.social-card.instagram-embed-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.social-embed-platform-badge.instagram-badge {
    background: linear-gradient(45deg, rgba(240,148,51,0.2), rgba(204,39,67,0.2), rgba(188,24,136,0.2));
    color: #e1306c;
    border: 1px solid rgba(225,48,108,0.3);
}

.instagram-embed-wrapper {
    width: 100%;
    min-height: 420px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.instagram-embed-wrapper .instagram-media {
    margin: 0 !important;
    min-width: 100% !important;
    width: 100% !important;
}
