/**
 * Dr. Abdi Farah Shirdon - Presidential Campaign 2025
 * Premium Design System
 * 
 * Color Scheme:
 * - Primary: Somali Blue (#4189DD)
 * - Dark: Deep Navy (#0A1628)
 * - Accent: Gold (#D4AF37)
 * - Light: Soft White (#F8FAFC)
 */

/* ==================== CSS Variables ==================== */
:root {
    /* Somali-Inspired Colors */
    --primary: #4189DD;
    --primary-light: #5A9FEB;
    --primary-dark: #2E6BB8;
    --primary-glow: rgba(65, 137, 221, 0.3);
    
    /* Dark Theme */
    --navy: #0A1628;
    --navy-light: #132238;
    --navy-dark: #060D16;
    
    /* Accent Gold */
    --gold: #D4AF37;
    --gold-light: #E5C76B;
    --gold-dark: #B8942E;
    
    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #F8FAFC;
    --gray-50: #F1F5F9;
    --gray-100: #E2E8F0;
    --gray-200: #CBD5E1;
    --gray-300: #94A3B8;
    --gray-400: #64748B;
    --gray-500: #475569;
    --gray-600: #334155;
    --gray-700: #1E293B;
    --gray-800: #0F172A;
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Source Sans 3', system-ui, sans-serif;
    
    /* Spacing */
    --section-py: 120px;
    --section-py-sm: 80px;
    
    /* Transitions */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 60px var(--primary-glow);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 9999px;
}

/* ==================== Reset & Base ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-600);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s var(--ease-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==================== Utility Classes ==================== */
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gold {
    color: var(--gold) !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* ==================== Top Bar ==================== */
.top-bar {
    background: var(--navy-dark);
    padding: 10px 0;
    font-size: 0.85rem;
    color: var(--gray-300);
    position: relative;
    z-index: 100;
}

.top-bar .social-links a {
    color: var(--gray-300);
    margin-left: 18px;
    font-size: 1rem;
    transition: all 0.3s var(--ease-smooth);
}

.top-bar .social-links a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

/* ==================== Navbar ==================== */
#mainNav {
    background: rgba(10, 22, 40, 0.9);
    padding: 20px 0;
    transition: all 0.4s var(--ease-smooth);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

#mainNav.scrolled {
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.02em;
}

.brand-tagline {
    font-size: 0.7rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-top: 2px;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 20px;
    position: relative;
    transition: all 0.3s var(--ease-smooth);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s var(--ease-smooth);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--white);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 24px;
}

.btn-accent {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy) !important;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: all 0.3s var(--ease-smooth);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    color: var(--navy) !important;
}

.navbar-toggler {
    border: 2px solid rgba(255,255,255,0.3);
    padding: 8px 12px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ==================== Hero Section - Cinematic ==================== */
.hero-cinematic {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-layers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 40%, var(--navy-light) 100%);
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, var(--primary-glow) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 40%);
}

.hero-glow {
    position: absolute;
    top: 50%;
    right: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
    transform: translateY(-50%);
    opacity: 0.5;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.3; transform: translateY(-50%) scale(1); }
    50% { opacity: 0.5; transform: translateY(-50%) scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0 80px;
}

.hero-flag-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(65, 137, 221, 0.15);
    border: 1px solid rgba(65, 137, 221, 0.3);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    margin-bottom: 32px;
}

.hero-flag-badge .flag-icon {
    width: 24px;
    height: 16px;
    background: var(--primary);
    border-radius: 2px;
    position: relative;
}

.hero-flag-badge .flag-icon::after {
    content: '★';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 10px;
}

.hero-flag-badge span:last-child {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-name {
    margin-bottom: 16px;
}

.hero-name .name-line {
    display: block;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--gray-200);
    letter-spacing: 0.02em;
}

.hero-name .name-highlight {
    display: block;
    font-size: 5.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    line-height: 1;
    text-shadow: 0 4px 60px rgba(65, 137, 221, 0.3);
}

.hero-title-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.hero-aka {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--gold);
    font-weight: 500;
}

.hero-divider {
    height: 2px;
    width: 60px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-vision {
    font-size: 1.6rem;
    color: var(--gray-200);
    margin-bottom: 24px;
    font-weight: 400;
}

.vision-word {
    color: var(--white);
    font-weight: 600;
    position: relative;
}

.vision-word::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--gray-300);
    max-width: 540px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-desc em {
    color: var(--gray-200);
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 18px 36px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s var(--ease-smooth);
    box-shadow: 0 8px 30px rgba(65, 137, 221, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(65, 137, 221, 0.5);
    color: var(--white);
}

.btn-hero-primary i {
    transition: transform 0.3s var(--ease-smooth);
}

.btn-hero-primary:hover i {
    transform: translateX(4px);
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    padding: 18px 36px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s var(--ease-smooth);
}

.btn-hero-outline:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--navy);
}

.hero-trust-badges {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    text-align: center;
}

.trust-badge .badge-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.trust-badge .badge-text {
    font-size: 0.8rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Portrait */
.hero-portrait {
    position: relative;
    display: flex;
    justify-content: center;
}

.portrait-frame {
    position: relative;
    width: 380px;
    height: 450px;
}

.portrait-inner {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: linear-gradient(180deg, var(--navy-light) 0%, var(--navy) 100%);
}

.portrait-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.portrait-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
}

.portrait-placeholder i {
    font-size: 8rem;
    opacity: 0.3;
    margin-bottom: 16px;
}

.portrait-placeholder span {
    font-size: 1rem;
    font-weight: 500;
}

.portrait-ring {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid var(--primary);
    border-radius: var(--radius-xl);
    opacity: 0.5;
}

.portrait-ring.ring-2 {
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-color: var(--gold);
    opacity: 0.2;
}

.portrait-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    padding: 14px 32px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
}

.portrait-badge i {
    color: var(--navy);
    font-size: 1.2rem;
}

.portrait-badge span {
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

/* Hero Scroll CTA */
.hero-scroll-cta {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll-cta a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--gray-400);
}

.scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--gray-500);
    border-radius: var(--radius-full);
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: var(--radius-full);
    animation: scroll-bounce 1.5s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
}

/* Hero Bottom Bar */
.hero-bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 16px 0;
    z-index: 2;
}

.bottom-bar-content {
    text-align: center;
}

.slogan-text {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 6px;
}

/* ==================== Section Styles ==================== */
.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 16px;
}

.section-label.light {
    color: var(--gold);
}

.section-heading {
    font-size: 3rem;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== Mission Section ==================== */
.mission-section {
    padding: 100px 0;
    background: var(--off-white);
}

.mission-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 60px 80px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
}

.mission-icon {
    margin-bottom: 24px;
}

.mission-icon i {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
}

.mission-quote {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--navy);
    line-height: 1.6;
    margin-bottom: 32px;
}

.mission-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.author-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 8px;
}

.author-name {
    font-weight: 700;
    color: var(--navy);
    font-size: 1.1rem;
}

.author-title {
    color: var(--gray-400);
    font-size: 0.9rem;
}

/* ==================== About Preview Section ==================== */
.about-preview-section {
    padding: var(--section-py) 0;
}

.about-visual {
    position: relative;
    height: 500px;
}

.visual-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.4s var(--ease-smooth);
}

.visual-card.main-card {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    padding: 40px;
    text-align: center;
    z-index: 3;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.main-card i {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--gold);
}

.main-card h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.main-card p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.visual-card.float-card {
    padding: 20px 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 4;
}

.float-card i {
    font-size: 1.5rem;
    color: var(--primary);
}

.float-card span {
    font-weight: 600;
    color: var(--navy);
    font-size: 0.95rem;
}

.visual-card.card-1 {
    top: 10%;
    left: 5%;
    animation: float-1 6s ease-in-out infinite;
}

.visual-card.card-2 {
    top: 15%;
    right: 5%;
    animation: float-2 5s ease-in-out infinite;
}

.visual-card.card-3 {
    bottom: 15%;
    left: 10%;
    animation: float-3 7s ease-in-out infinite;
}

@keyframes float-1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes float-2 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes float-3 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.visual-bg-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: var(--gray-50);
    border-radius: 50%;
    z-index: 1;
}

.about-content {
    padding-left: 40px;
}

.about-lead {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.about-highlights {
    margin: 32px 0;
}

.highlight-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.highlight-check {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-check i {
    color: var(--white);
    font-size: 0.9rem;
}

.highlight-row span {
    color: var(--gray-600);
    line-height: 1.6;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--navy);
    color: var(--white);
    padding: 16px 32px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s var(--ease-smooth);
}

.btn-modern:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-modern i {
    transition: transform 0.3s var(--ease-smooth);
}

.btn-modern:hover i {
    transform: translateX(4px);
}

.btn-modern.outline {
    background: transparent;
    border: 2px solid var(--navy);
    color: var(--navy);
}

.btn-modern.outline:hover {
    background: var(--navy);
    color: var(--white);
}

/* ==================== Pillars Section ==================== */
.pillars-section-new {
    padding: var(--section-py) 0;
    position: relative;
    overflow: hidden;
}

.pillars-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
}

.pillars-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: 
        linear-gradient(30deg, var(--white) 12%, transparent 12.5%, transparent 87%, var(--white) 87.5%, var(--white)),
        linear-gradient(150deg, var(--white) 12%, transparent 12.5%, transparent 87%, var(--white) 87.5%, var(--white)),
        linear-gradient(30deg, var(--white) 12%, transparent 12.5%, transparent 87%, var(--white) 87.5%, var(--white)),
        linear-gradient(150deg, var(--white) 12%, transparent 12.5%, transparent 87%, var(--white) 87.5%, var(--white));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
}

.pillar-card-new {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    height: 100%;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.pillar-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-smooth);
}

.pillar-card-new:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pillar-card-new:hover::before {
    transform: scaleX(1);
}

.pillar-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    right: 25px;
}

.pillar-icon-new {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.pillar-icon-new i {
    font-size: 1.8rem;
    color: var(--white);
}

.pillar-card-new h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 14px;
}

.pillar-card-new p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.7;
}

.pillar-link-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s var(--ease-smooth);
}

.pillar-link-new:hover {
    color: var(--gold-light);
    gap: 12px;
}

/* ==================== Timeline Section ==================== */
.timeline-section-new {
    padding: var(--section-py) 0;
    background: var(--off-white);
}

.timeline-modern {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-track {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--gold) 100%);
    transform: translateX(-50%);
    border-radius: var(--radius-full);
}

.timeline-item-new {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item-new:nth-child(odd) {
    flex-direction: row-reverse;
    text-align: right;
}

.timeline-item-new:nth-child(odd) .timeline-content-new {
    margin-right: 80px;
    margin-left: 0;
}

.timeline-item-new:nth-child(even) .timeline-content-new {
    margin-left: 80px;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.marker-year {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: var(--white);
    border: 4px solid var(--primary);
    border-radius: 50%;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--navy);
    box-shadow: var(--shadow-md);
}

.timeline-item-new.active .marker-year {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.timeline-content-new {
    flex: 1;
    max-width: calc(50% - 60px);
}

.timeline-content-new h5 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 6px;
}

.timeline-content-new p {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin: 0;
}

.timeline-content-new.highlight h5 {
    color: var(--primary);
}

/* ==================== CTA Banner ==================== */
.cta-banner-section {
    padding: 80px 0;
    position: relative;
}

.cta-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.cta-banner-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: var(--shadow-lg);
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.cta-content p {
    color: var(--gray-500);
    font-size: 1.1rem;
    margin: 0;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--navy);
    color: var(--white);
    padding: 16px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all 0.3s var(--ease-smooth);
}

.btn-cta-primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--navy);
    padding: 16px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: all 0.3s var(--ease-smooth);
}

.btn-cta-secondary:hover {
    background: var(--gold-light);
    color: var(--navy);
    transform: translateY(-2px);
}

/* ==================== News Section ==================== */
.news-section-new {
    padding: var(--section-py) 0;
}

.news-card-new {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s var(--ease-smooth);
    border: 1px solid var(--gray-100);
}

.news-card-new:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.news-card-header {
    padding: 24px 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-tag {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-date-new {
    color: var(--gray-400);
    font-size: 0.85rem;
}

.news-card-body {
    padding: 20px 28px;
    flex: 1;
}

.news-card-body h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-card-body p {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin: 0;
}

.news-card-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    border-top: 1px solid var(--gray-100);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.news-card-link:hover {
    color: var(--primary-dark);
    background: var(--gray-50);
}

.news-card-link i {
    transition: transform 0.3s var(--ease-smooth);
}

.news-card-link:hover i {
    transform: translateX(4px);
}

/* ==================== Final CTA ==================== */
.final-cta-section {
    padding: var(--section-py) 0;
    position: relative;
    overflow: hidden;
}

.final-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.final-cta-bg .cta-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
}

.somalia-emblem {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.somalia-emblem i {
    font-size: 2.5rem;
    color: var(--white);
}

.final-cta-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.final-cta-title span {
    color: var(--gold);
}

.final-cta-text {
    font-size: 1.2rem;
    color: var(--gray-300);
    max-width: 500px;
    margin: 0 auto 40px;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-final-primary {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy);
    padding: 20px 48px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s var(--ease-smooth);
}

.btn-final-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    color: var(--navy);
}

/* ==================== Footer ==================== */
.footer {
    background: var(--gray-800);
    color: var(--gray-300);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.footer-brand .tagline {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-about {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--gray-400);
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    color: var(--gray-400);
    margin-right: 10px;
    transition: all 0.3s var(--ease-smooth);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-heading {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gold);
    border-radius: var(--radius-full);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.95rem;
    transition: all 0.3s var(--ease-smooth);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 8px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    color: var(--gray-400);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--gold);
    margin-top: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
}

.copyright {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray-500);
}

.campaign-slogan {
    margin: 0;
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* ==================== Back to Top ==================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-smooth);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-5px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* ==================== Page Header ==================== */
.page-header {
    position: relative;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    padding: 160px 0 80px;
    text-align: center;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 80%, var(--primary-glow) 0%, transparent 50%);
}

.page-title {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 16px;
    position: relative;
}

.breadcrumb {
    background: none;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--gray-400);
}

.breadcrumb-item.active {
    color: var(--gold);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--gray-500);
}

/* ==================== Responsive ==================== */
@media (max-width: 1200px) {
    .hero-name .name-highlight { font-size: 4.5rem; }
    .section-heading { font-size: 2.5rem; }
}

@media (max-width: 991px) {
    :root {
        --section-py: 80px;
    }
    
    .hero-name .name-line { font-size: 2rem; }
    .hero-name .name-highlight { font-size: 3.5rem; }
    .hero-vision { font-size: 1.3rem; }
    
    /* Tablet portrait */
    .hero-portrait {
        display: flex;
        justify-content: center;
        margin-top: 40px;
    }
    .portrait-frame {
        width: 280px;
        height: 340px;
    }
    
    .about-content { padding-left: 0; margin-top: 60px; }
    .about-visual { height: 400px; }
    
    .cta-banner-card {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-track { left: 30px; }
    .timeline-marker { left: 30px; }
    .timeline-item-new,
    .timeline-item-new:nth-child(odd) {
        flex-direction: row;
        text-align: left;
    }
    .timeline-content-new,
    .timeline-item-new:nth-child(odd) .timeline-content-new {
        margin-left: 100px;
        margin-right: 0;
        max-width: calc(100% - 100px);
    }
    .marker-year {
        width: 60px;
        height: 60px;
        font-size: 0.8rem;
    }
    
    .navbar-collapse {
        background: var(--navy);
        padding: 24px;
        margin-top: 16px;
        border-radius: var(--radius);
        box-shadow: var(--shadow-lg);
    }
}

@media (max-width: 767px) {
    .hero-name .name-line { font-size: 1.5rem; }
    .hero-name .name-highlight { font-size: 2.8rem; }
    .hero-content { text-align: center; padding: 100px 0 40px; }
    .hero-actions { justify-content: center; }
    .hero-trust-badges { justify-content: center; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-scroll-cta { display: none; }
    
    /* Mobile portrait */
    .hero-portrait {
        display: flex;
        justify-content: center;
        margin-bottom: 40px;
    }
    .portrait-frame {
        width: 220px;
        height: 280px;
    }
    .portrait-badge {
        padding: 10px 20px;
    }
    .portrait-badge span {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }
    .portrait-ring.ring-2 {
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
    }
    
    .mission-card { padding: 40px 30px; }
    .mission-quote { font-size: 1.4rem; }
    
    .section-heading { font-size: 2rem; }
    .final-cta-title { font-size: 2.2rem; }
    
    .visual-card.float-card { display: none; }
    .about-visual { height: 300px; }
}

@media (max-width: 575px) {
    .btn-hero-primary,
    .btn-hero-outline { padding: 14px 24px; font-size: 0.85rem; }
    
    .hero-trust-badges { gap: 24px; }
    .trust-badge .badge-number { font-size: 2rem; }
    
    .pillar-card-new { padding: 30px 24px; }
    
    .cta-actions { flex-direction: column; width: 100%; }
    .btn-cta-primary,
    .btn-cta-secondary { justify-content: center; }
}

/* ==================== Section Padding (Shared) ==================== */
.section-padding {
    padding: var(--section-py) 0;
}

.bg-light {
    background: var(--off-white) !important;
}

.lead {
    font-size: 1.15rem;
    color: var(--gray-500);
    line-height: 1.8;
}

/* ==================== About Page Styles ==================== */
.about-image-wrapper {
    position: relative;
}

.about-image-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--shadow-lg);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
}

.about-image-placeholder {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: var(--radius-xl);
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 30px;
}

.about-image-placeholder i {
    font-size: 6rem;
    margin-bottom: 16px;
    opacity: 0.5;
    color: var(--primary);
}

.about-image-placeholder span {
    font-size: 1.1rem;
    font-weight: 500;
}

.about-image-placeholder small {
    font-style: italic;
    opacity: 0.7;
    color: var(--gold);
}

.about-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-md);
}

.about-info-card h5 {
    color: var(--navy);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--gold);
    font-size: 1.1rem;
}

.about-info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-info-card li {
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.95rem;
    color: var(--gray-600);
}

.about-info-card li:last-child {
    border-bottom: none;
}

.about-info-card li strong {
    color: var(--navy);
}

.about-content .section-tag,
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 12px;
}

.about-content .section-title,
.section-title {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 24px;
}

/* Bio Sections */
.bio-section {
    margin-bottom: 40px;
}

.bio-section h4 {
    color: var(--navy);
    font-size: 1.4rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-100);
}

.bio-section p {
    color: var(--gray-600);
    line-height: 1.8;
}

.bio-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.bio-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 12px;
    color: var(--gray-600);
}

.bio-list li i {
    color: var(--primary);
    margin-top: 4px;
    font-size: 1.1rem;
}

.highlight-section {
    background: linear-gradient(135deg, var(--off-white) 0%, var(--gray-50) 100%);
    border-radius: var(--radius-lg);
    padding: 32px;
    border-left: 5px solid var(--gold);
}

.highlight-section h4 {
    border-bottom: none;
    padding-bottom: 0;
}

.pm-achievements {
    margin-top: 28px;
}

.pm-achievements h5 {
    color: var(--navy);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.achievement-grid .achievement-item {
    display: flex;
    gap: 16px;
    margin: 0;
}

.achievement-grid .achievement-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.achievement-grid .achievement-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

.achievement-grid .achievement-text h6 {
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: var(--navy);
}

.achievement-grid .achievement-text p {
    font-size: 0.85rem;
    margin: 0;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ==================== Quote Section ==================== */
.quote-section {
    background: var(--off-white);
    padding: 100px 0;
}

.quote-alt {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--off-white) 100%);
}

.main-quote {
    text-align: center;
    position: relative;
    padding: 40px;
}

.quote-icon {
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.15;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.main-quote p {
    font-family: var(--font-display);
    font-size: 1.7rem;
    color: var(--navy);
    font-style: italic;
    line-height: 1.7;
    max-width: 800px;
    margin: 40px auto 32px;
}

.main-quote footer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.quote-author {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

.quote-title {
    color: var(--gray-400);
    font-size: 0.9rem;
}

/* ==================== CTA Section ==================== */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 100px 0;
    overflow: hidden;
}

.cta-alt {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 30% 70%, var(--primary-glow) 0%, transparent 50%);
    opacity: 0.5;
}

.cta-title {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 20px;
    position: relative;
}

.cta-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 36px;
    position: relative;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
}

.btn {
    font-family: var(--font-body);
    font-weight: 600;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    transition: all 0.3s var(--ease-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: none;
}

.btn-light {
    background: var(--white);
    color: var(--navy);
}

.btn-light:hover {
    background: var(--gray-100);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 0.95rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(65, 137, 221, 0.4);
    color: var(--white);
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
}

/* ==================== Stats Cards ==================== */
.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease-smooth);
    height: 100%;
    border: 1px solid var(--gray-100);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.stat-card .stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-card .stat-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.stat-card .stat-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-card .stat-label {
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* ==================== Career Timeline ==================== */
.career-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--gold) 100%);
    transform: translateX(-50%);
    border-radius: var(--radius-full);
}

.timeline-entry {
    position: relative;
    width: 50%;
    padding-right: 50px;
    padding-bottom: 40px;
}

.timeline-entry.right {
    margin-left: 50%;
    padding-right: 0;
    padding-left: 50px;
}

.timeline-dot {
    position: absolute;
    right: -10px;
    top: 8px;
    width: 20px;
    height: 20px;
    background: var(--white);
    border: 4px solid var(--primary);
    border-radius: 50%;
    z-index: 1;
}

.timeline-entry.right .timeline-dot {
    left: -10px;
    right: auto;
}

.timeline-entry.featured .timeline-dot,
.timeline-entry.active .timeline-dot {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.25);
}

.timeline-date {
    display: inline-block;
    background: var(--navy);
    color: var(--white);
    padding: 6px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.timeline-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

.timeline-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--navy);
}

.timeline-card p {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* ==================== Achievement Cards ==================== */
.achievement-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: all 0.4s var(--ease-smooth);
    border: 1px solid var(--gray-100);
}

.achievement-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.achievement-header {
    padding: 28px;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 20px;
}

.achievement-icon-large {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.achievement-icon-large i {
    font-size: 2rem;
    color: var(--white);
}

.achievement-header h4 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--navy);
}

.achievement-body {
    padding: 28px;
}

.achievement-body p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
}

.achievement-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==================== Vote Chart ==================== */
.bg-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
}

.vote-chart {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.vote-circle {
    width: 180px;
    height: 180px;
    border: 8px solid var(--gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    background: rgba(255, 255, 255, 0.1);
}

.vote-percentage {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.vote-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.vote-details {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.vote-item {
    text-align: center;
}

.vote-count {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.vote-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ==================== Vision Page ==================== */
.vision-quote {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: var(--radius-xl);
    padding: 50px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vision-quote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
}

.vision-quote i {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.3;
}

.vision-quote p {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    font-style: italic;
    line-height: 1.7;
    margin: 24px 0;
}

.vision-quote .author {
    color: var(--gold);
    font-weight: 600;
}

.vision-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 300px;
}

.vision-icon-wrapper i {
    font-size: 14rem;
    color: var(--primary);
    opacity: 0.1;
}

.vision-icon-wrapper.alt i {
    color: var(--gold);
}

.vision-points {
    margin-top: 32px;
}

.vision-point {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.vision-point .point-icon {
    flex-shrink: 0;
}

.vision-point .point-icon i {
    font-size: 1.3rem;
    color: var(--primary);
}

.vision-point .point-content h5 {
    margin-bottom: 6px;
    font-size: 1.1rem;
    color: var(--navy);
}

.vision-point .point-content p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.7;
}

/* Pillars Section (Vision Page) */
.pillars-section {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    padding: var(--section-py) 0;
    position: relative;
}

.commitment-item {
    padding: 32px;
    text-align: center;
}

.commitment-item i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.commitment-item h5 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.commitment-item p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.95rem;
}

/* ==================== News Page Styles ==================== */
.news-featured {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
    border: 1px solid var(--gray-100);
}

.news-featured-image {
    height: 300px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--primary) 100%);
    position: relative;
}

.news-featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: var(--navy);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-featured-content {
    padding: 36px;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}

.news-meta .news-date {
    position: static;
    background: none;
    color: var(--gray-400);
    padding: 0;
}

.news-featured-content h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--navy);
}

.news-featured-content p {
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.8;
}

/* News Cards */
.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease-smooth);
    height: 100%;
    border: 1px solid var(--gray-100);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.news-image {
    height: 180px;
    background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
    position: relative;
}

.news-date {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: var(--navy);
    color: var(--white);
    padding: 6px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
}

.news-content {
    padding: 28px;
}

.news-category {
    display: inline-block;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.news-card h4 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    line-height: 1.4;
    color: var(--navy);
}

.news-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.news-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.news-link:hover {
    color: var(--primary-dark);
    gap: 10px;
}

/* News Sidebar */
.news-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
}

.widget-title {
    color: var(--navy);
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--gold);
}

.search-form {
    display: flex;
    gap: 10px;
}

.search-form .form-control {
    flex: 1;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li a {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-600);
}

.category-list li:last-child a {
    border-bottom: none;
}

.category-list li a span {
    background: var(--off-white);
    padding: 3px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--gray-500);
}

.category-list li a:hover {
    color: var(--primary);
}

.recent-post {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-100);
}

.recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-image {
    width: 70px;
    height: 70px;
    background: var(--gray-200);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.recent-post-content h6 {
    font-size: 0.9rem;
    margin-bottom: 6px;
    line-height: 1.4;
}

.recent-post-content h6 a {
    color: var(--navy);
}

.recent-post-content h6 a:hover {
    color: var(--primary);
}

.recent-post-content .date {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.newsletter-widget {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border: none;
}

.newsletter-widget .widget-title {
    color: var(--white);
    border-bottom-color: var(--gold);
}

.newsletter-widget p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.sidebar-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s var(--ease-smooth);
}

.social-link.facebook { background: #1877f2; }
.social-link.twitter { background: #000; }
.social-link.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link.youtube { background: #ff0000; }

.social-link:hover {
    transform: translateY(-4px);
    color: var(--white);
}

/* Video Cards */
.video-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: all 0.4s var(--ease-smooth);
    border: 1px solid var(--gray-100);
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.video-thumbnail {
    height: 180px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--gray-800) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumbnail i {
    font-size: 4rem;
    color: var(--white);
    opacity: 0.7;
    transition: all 0.3s var(--ease-smooth);
}

.video-card:hover .video-thumbnail i {
    opacity: 1;
    transform: scale(1.15);
}

.video-info {
    padding: 20px;
}

.video-info h5 {
    font-size: 1rem;
    margin-bottom: 6px;
    color: var(--navy);
}

.video-duration {
    font-size: 0.85rem;
    color: var(--gray-400);
}

/* ==================== Contact Page Styles ==================== */
.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: all 0.4s var(--ease-smooth);
    border: 1px solid var(--gray-100);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.contact-icon i {
    font-size: 2rem;
    color: var(--white);
}

.contact-card h4 {
    margin-bottom: 16px;
    color: var(--navy);
}

.contact-card p {
    color: var(--gray-600);
    margin: 0;
}

.contact-card a {
    color: var(--primary);
}

.volunteer-benefits {
    list-style: none;
    padding: 0;
}

.volunteer-benefits li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
    color: var(--gray-600);
}

.volunteer-benefits li i {
    color: var(--primary);
    font-size: 1.1rem;
}

.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.form-title {
    color: var(--navy);
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--gold);
}

.form-control, .form-select {
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    transition: all 0.3s var(--ease-smooth);
    font-size: 0.95rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(65, 137, 221, 0.1);
}

.form-label {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

/* Support Cards */
.support-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: all 0.4s var(--ease-smooth);
    border: 1px solid var(--gray-100);
}

.support-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.support-icon {
    width: 90px;
    height: 90px;
    background: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
}

.support-icon i {
    font-size: 2.5rem;
    color: var(--primary);
}

.support-card h4 {
    margin-bottom: 16px;
    color: var(--navy);
}

.support-card p {
    color: var(--gray-600);
    margin-bottom: 24px;
}

/* Contact Info List */
.contact-info-list {
    margin-top: 32px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}

.contact-info-item i {
    width: 54px;
    height: 54px;
    background: var(--off-white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-info-item h5 {
    margin-bottom: 4px;
    font-size: 1rem;
    color: var(--navy);
}

.contact-info-item p {
    color: var(--gray-600);
    margin: 0;
}

.social-section h5 {
    margin-bottom: 16px;
    color: var(--navy);
}

.social-links-large a {
    width: 52px;
    height: 52px;
    background: var(--navy);
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    margin-right: 12px;
    transition: all 0.3s var(--ease-smooth);
}

.social-links-large a:hover {
    background: var(--primary);
    transform: translateY(-4px);
    color: var(--white);
}

/* ==================== Pagination ==================== */
.pagination .page-link {
    color: var(--navy);
    border: none;
    padding: 14px 20px;
    margin: 0 4px;
    border-radius: var(--radius);
    font-weight: 500;
}

.pagination .page-item.active .page-link {
    background: var(--primary);
    color: var(--white);
}

.pagination .page-link:hover {
    background: var(--off-white);
    color: var(--primary);
}

/* ==================== Responsive Additions ==================== */
@media (max-width: 991px) {
    .timeline-line { left: 30px; }
    .timeline-entry,
    .timeline-entry.right {
        width: 100%;
        padding-left: 70px;
        padding-right: 0;
        margin-left: 0;
    }
    .timeline-dot,
    .timeline-entry.right .timeline-dot {
        left: 20px;
        right: auto;
    }
    
    .achievement-grid {
        grid-template-columns: 1fr;
    }
    
    .vision-icon-wrapper {
        min-height: 200px;
    }
    .vision-icon-wrapper i {
        font-size: 10rem;
    }
}

@media (max-width: 767px) {
    .section-title { font-size: 2rem; }
    .cta-title { font-size: 2.2rem; }
    
    .main-quote p { font-size: 1.3rem; }
    
    .vision-icon-wrapper { display: none; }
    
    .vote-chart { padding: 30px 20px; }
    .vote-circle { width: 150px; height: 150px; }
    .vote-percentage { font-size: 2.8rem; }
    .vote-details { gap: 30px; }
    
    .news-sidebar { margin-top: 50px; }
}

@media (max-width: 575px) {
    .btn { padding: 12px 24px; font-size: 0.85rem; }
    .btn-lg { padding: 14px 28px; }
    
    .stat-card { padding: 30px 20px; }
    .stat-card .stat-number { font-size: 2.2rem; }
    
    .form-card { padding: 28px 20px; }
    
    .vote-details { flex-direction: column; gap: 20px; }
    
    .vision-quote { padding: 30px 24px; }
    .vision-quote p { font-size: 1.2rem; }
}

/* ==================== Print ==================== */
@media print {
    .top-bar, .navbar, .hero-scroll-cta, .hero-bottom-bar,
    .cta-banner-section, .final-cta-section, .back-to-top, .footer,
    .cta-section, .quote-section {
        display: none !important;
    }
    
    .page-header {
        background: var(--gray-100) !important;
        -webkit-print-color-adjust: exact;
    }
}
