/**
 * منظومة خدمة المواطنين v4.0
 * Egyptian Political Site - Main Stylesheet
 * RTL | Cairo Font | Egyptian National Colors
 */

/* ========================================
   CSS Variables
   ======================================== */
:root {
    /* Primary Colors - Egyptian Theme */
    --primary: #1a365d;
    --primary-light: #2a4a7f;
    --primary-dark: #0f2341;
    --primary-rgb: 26, 54, 93;

    /* Gold Accent */
    --gold: #d4af37;
    --gold-light: #e8cc6e;
    --gold-dark: #b8941f;

    /* Egyptian Red */
    --red: #c41e3a;
    --red-light: #e83e5a;
    --red-dark: #a01830;

    /* Neutrals */
    --white: #ffffff;
    --light: #f8f9fc;
    --gray-50: #f5f6fa;
    --gray-100: #edf0f7;
    --gray-200: #dde2ed;
    --gray-300: #c5ccd9;
    --gray-400: #9ca3b3;
    --gray-500: #6c7486;
    --gray-600: #4a5063;
    --gray-700: #353a4c;
    --gray-800: #242838;
    --dark: #1a1d2b;
    --black: #0d0f17;

    /* Semantic */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;

    /* Typography */
    --font-main: 'Cairo', 'Segoe UI', Tahoma, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
    --shadow-gold: 0 4px 20px rgba(212,175,55,0.3);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 6px;
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;

    /* Layout */
    --container-max: 1200px;
    --nav-height: 72px;
    --top-bar-height: 38px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: calc(var(--nav-height) + var(--top-bar-height) + 20px);
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    font-size: var(--font-size-base);
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    direction: rtl;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

a:hover {
    color: var(--gold);
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: var(--font-main);
    border: none;
    background: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

input, textarea, select {
    font-family: var(--font-main);
    font-size: var(--font-size-base);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
}

/* ========================================
   Container
   ======================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* ========================================
   Top Bar
   ======================================== */
.top-bar {
    background: var(--primary-dark);
    color: var(--white);
    font-size: var(--font-size-xs);
    height: var(--top-bar-height);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1001;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.top-bar-social {
    display: flex;
    gap: var(--space-2);
}

.top-bar-social a {
    color: var(--white);
    opacity: 0.65;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    transition: var(--transition);
    font-size: 13px;
}

.top-bar-social a:hover {
    opacity: 1;
    background: var(--gold);
    color: var(--primary-dark);
    transform: translateY(-1px);
}

.top-bar-divider {
    width: 1px;
    height: 18px;
    background: rgba(255,255,255,0.2);
}

.top-bar-info {
    display: flex;
    gap: var(--space-5);
}

.top-bar-link {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: var(--transition);
    font-size: var(--font-size-xs);
    letter-spacing: 0.3px;
}

.top-bar-link:hover {
    color: var(--gold-light);
}

.top-bar-link i {
    color: var(--gold);
    font-size: 11px;
}

.top-bar-left {
    display: flex;
    align-items: center;
}

.top-bar-staff-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255,255,255,0.7);
    font-size: 11px;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.top-bar-staff-btn i {
    font-size: 11px;
    opacity: 0.7;
}

.top-bar-staff-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
    transform: translateY(-1px);
}

.top-bar-staff-btn:hover i {
    opacity: 1;
}

/* ========================================
   Main Navigation
   ======================================== */
.main-nav {
    background: var(--white);
    height: var(--nav-height);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    transition: var(--transition);
}

.main-nav.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    height: 64px;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--primary);
    text-decoration: none;
    flex-shrink: 0;
    padding: var(--space-2) 0;
}

.nav-logo:hover { color: var(--primary); }

.logo-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 21px;
    box-shadow: 0 2px 8px rgba(26, 54, 93, 0.25);
    position: relative;
}

.logo-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius) + 2px);
    border: 2px solid var(--gold);
    opacity: 0.3;
}

.main-nav.scrolled .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
}

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

.logo-text strong {
    display: block;
    font-size: 0.9rem;
    line-height: 1.3;
    color: var(--primary);
    font-weight: 700;
}

.logo-text small {
    font-size: 0.7rem;
    color: var(--gold-dark);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    list-style: none;
}

.nav-menu a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    color: var(--gray-600);
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
    text-decoration: none;
}

.nav-menu a i {
    font-size: 13px;
    color: var(--gray-400);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.05);
}

.nav-menu a:hover i {
    color: var(--gold);
}

.nav-menu a.active {
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.07);
    font-weight: 600;
}

.nav-menu a.active i {
    color: var(--gold);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 20%;
    left: 20%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 3px 3px 0 0;
}

/* Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-2);
    z-index: 1015;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
    position: relative;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

/* ========================================
   Flash Messages
   ======================================== */
.flash-msg {
    padding: var(--space-3) 0;
    font-size: var(--font-size-sm);
    font-weight: 500;
    position: relative;
}

.flash-msg .container {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.flash-success { background: #ecfdf5; color: #065f46; }
.flash-error { background: #fef2f2; color: #991b1b; }
.flash-info { background: #eff6ff; color: #1e40af; }

.flash-close {
    margin-right: auto;
    font-size: 20px;
    opacity: 0.5;
    cursor: pointer;
    background: none;
    border: none;
    color: inherit;
}

/* ========================================
   Hero Section (Homepage) — Banner Style
   ======================================== */
.hero {
    background-color: #0b1a2d;
    background-image: url('../img/hero-banner.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 110% auto;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
    margin-top: calc(-1 * (var(--top-bar-height) + var(--nav-height)));
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(11, 26, 45, 0.95) 0%,
        rgba(11, 26, 45, 0.3) 18%,
        rgba(11, 26, 45, 0.0) 30%,
        rgba(11, 26, 45, 0.0) 60%,
        rgba(11, 26, 45, 0.15) 85%,
        rgba(11, 26, 45, 0.4) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 5%, var(--gold) 25%, var(--gold-light) 50%, var(--gold) 75%, transparent 95%);
    z-index: 3;
}

/* ===== Mobile Hero Content (hidden on desktop) ===== */
.hero-mobile-content {
    display: none;
}

.hero-mp-photo-wrapper {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
    box-shadow: 0 8px 40px rgba(212, 175, 55, 0.3), 0 0 0 6px rgba(255,255,255,0.08);
    margin: 0 auto var(--space-6);
    animation: heroPhotoFloat 4s ease-in-out infinite;
}

.hero-mp-photo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;
    border: 3px solid var(--primary-dark);
}

.hero-mp-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    text-align: center;
    margin-bottom: var(--space-2);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    line-height: 1.4;
}

.hero-mp-title {
    font-size: 0.95rem;
    color: var(--gold);
    text-align: center;
    font-weight: 600;
    margin-bottom: var(--space-6);
    letter-spacing: 0.5px;
}

.hero-mp-badges {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    flex-wrap: wrap;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.badge-parliament {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.badge-party {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

/* ========================================
   CTA Strip (Between Hero & Stats)
   ======================================== */
.cta-strip {
    background: var(--primary-dark);
    padding: var(--space-6) 0;
    position: relative;
}

.cta-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
    opacity: 0.5;
}

.cta-strip-inner {
    display: flex;
    gap: var(--space-5);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-strip-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 44px;
    font-size: var(--font-size-base);
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.cta-strip-btn i {
    font-size: 15px;
}

.cta-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--primary-dark);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}

.cta-primary:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    color: var(--primary-dark);
    box-shadow: 0 6px 28px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.08);
}

/* ========================================
   Homepage Transparent Navigation
   ======================================== */

/* --- Top Bar: ultra-thin glass --- */
.page-home .top-bar {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px) saturate(1.6);
    -webkit-backdrop-filter: blur(20px) saturate(1.6);
    position: relative;
    z-index: 1001;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    height: 34px;
}

.page-home .top-bar::after {
    display: none;
}

/* --- Main Nav: premium glass card --- */
.page-home .main-nav {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(28px) saturate(1.8);
    -webkit-backdrop-filter: blur(28px) saturate(1.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- Logo: compact with clear spacing from menu --- */
.page-home .main-nav .nav-logo {
    gap: 10px;
    margin-left: 40px;
}

.page-home .main-nav .logo-text {
    display: flex;
}

.page-home .main-nav .logo-text strong {
    font-size: 0.95rem;
    color: var(--white);
    text-shadow: 0 1px 8px rgba(0,0,0,0.25);
}

.page-home .main-nav .logo-text small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.8px;
    text-shadow: none;
}

.page-home .main-nav .logo-icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: none;
    color: var(--gold);
    border-radius: 10px;
}

.page-home .main-nav .logo-icon::after {
    display: none;
}

/* --- Nav divider between logo and menu --- */
.page-home .main-nav .nav-menu {
    gap: 3px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 20px;
    margin-right: auto;
}

/* --- Nav Menu Items: refined glass pills --- */
.page-home .main-nav .nav-menu a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 0.82rem;
    padding: 6px 14px;
    border-radius: 8px;
    transition: all 0.25s ease;
    text-shadow: none;
    letter-spacing: 0.2px;
    border: 1px solid transparent;
}

.page-home .main-nav .nav-menu a i {
    color: rgba(255, 255, 255, 0.35);
    font-size: 11px;
}

.page-home .main-nav .nav-menu a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.08);
}

.page-home .main-nav .nav-menu a:hover i {
    color: var(--gold);
}

.page-home .main-nav .nav-menu a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.12);
}

.page-home .main-nav .nav-menu a.active i {
    color: var(--gold);
}

.page-home .main-nav .nav-menu a.active::after {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    height: 2px;
    bottom: -1px;
    right: 25%;
    left: 25%;
}

.page-home .nav-toggle span {
    background: var(--white);
}

/* Scrolled — back to solid */
.page-home .main-nav.scrolled {
    background: var(--white);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.page-home .main-nav.scrolled .nav-logo {
    margin-left: 0;
}

.page-home .main-nav.scrolled .nav-menu {
    border-right: none;
    padding-right: 0;
}

.page-home .main-nav.scrolled .logo-text strong {
    color: var(--primary);
    text-shadow: none;
}

.page-home .main-nav.scrolled .logo-text small {
    color: var(--gold-dark);
    text-shadow: none;
    font-size: 0.7rem;
    opacity: 1;
}

.page-home .main-nav.scrolled .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    box-shadow: 0 2px 8px rgba(26, 54, 93, 0.25);
    border: none;
    border-radius: var(--radius);
}

.page-home .main-nav.scrolled .logo-icon::after {
    display: block;
    border-color: rgba(212,175,55,0.3);
}

.page-home .main-nav.scrolled .nav-menu a {
    color: var(--gray-600);
    text-shadow: none;
}

.page-home .main-nav.scrolled .nav-menu a i {
    color: var(--gray-400);
}

.page-home .main-nav.scrolled .nav-menu a:hover,
.page-home .main-nav.scrolled .nav-menu a.active {
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.07);
}

.page-home .main-nav.scrolled .nav-menu a:hover i,
.page-home .main-nav.scrolled .nav-menu a.active i {
    color: var(--gold);
}

.page-home .main-nav.scrolled .nav-toggle span {
    background: var(--primary);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-8);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
}

.btn i {
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--primary-dark);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    color: var(--primary-dark);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn-outline {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.4);
    color: var(--white);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,255,255,0.1);
}

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

.btn-white:hover {
    background: var(--gray-50);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.btn-sm {
    padding: var(--space-2) var(--space-5);
    font-size: var(--font-size-sm);
}

.btn-lg {
    padding: var(--space-4) var(--space-10);
    font-size: var(--font-size-lg);
}

/* ========================================
   Section Base
   ======================================== */
.section {
    padding: var(--space-20) 0;
}

.section-alt {
    background: var(--gray-50);
}

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

.section-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.section-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-1) var(--space-4);
    background: rgba(var(--primary-rgb), 0.06);
    border-radius: var(--radius-xl);
    color: var(--gold-dark);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--space-4);
}

.section-dark .section-badge {
    background: rgba(212,175,55,0.15);
    color: var(--gold);
}

.section-header h2 {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    margin-bottom: var(--space-3);
}

.section-dark .section-header h2 {
    color: var(--white);
}

.section-header p {
    color: var(--gray-500);
    font-size: var(--font-size-lg);
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-header p {
    color: rgba(255,255,255,0.6);
}

/* ========================================
   Stats Bar
   ======================================== */
.stats-section {
    background: var(--gray-50);
    padding: var(--space-12) 0;
}

.stats-bar {
    background: var(--white);
    margin-top: 0;
    position: relative;
    z-index: 10;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: var(--space-8) var(--space-10);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
}

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

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: var(--gray-200);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(var(--primary-rgb), 0.06);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-3);
    color: var(--gold);
    font-size: 22px;
}

.stat-number {
    font-size: var(--font-size-3xl);
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: var(--space-1);
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--gray-500);
    font-weight: 500;
}

/* ========================================
   Services Section Background
   ======================================== */
.services-section {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 40%, rgba(var(--primary-rgb), 0.02) 100%);
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--gold);
}

.services-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1' fill='%231a365d' fill-opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}

.services-section > .container {
    position: relative;
    z-index: 1;
}

/* ========================================
   Services Cards
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    text-align: center;
    box-shadow: 0 4px 20px rgba(var(--primary-rgb), 0.06);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--primary));
    transform: scaleX(0);
    transition: var(--transition);
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.08) 0%, rgba(var(--primary-rgb), 0.03) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-5);
    font-size: 28px;
    color: var(--gold);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--gold);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-3);
}

.service-card p {
    color: var(--gray-500);
    font-size: var(--font-size-sm);
    line-height: 1.8;
}

.service-card .service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-5);
    color: var(--gold-dark);
    font-weight: 600;
    font-size: var(--font-size-sm);
}

.service-card .service-link:hover {
    gap: var(--space-3);
}

/* ========================================
   News Cards
   ======================================== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

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

.news-card-img {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: var(--transition-slow);
}

/* Focal point overrides */
.news-card-img img[data-pos="center"] { object-position: center center; }
.news-card-img img[data-pos="bottom"] { object-position: bottom center; }

.news-card:hover .news-card-img img {
    transform: scale(1.05);
}

.news-card-img .img-placeholder {
    font-size: 48px;
    color: var(--gold);
    opacity: 0.3;
}

/* Smart Placeholder for news without images */
.img-placeholder-smart {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    background: linear-gradient(135deg, #1a365d 0%, #2d4a7a 50%, #1a365d 100%);
}
.img-placeholder-smart .placeholder-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image:
        radial-gradient(circle at 20% 80%, var(--gold) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, var(--gold) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, var(--gold) 0.5px, transparent 0.5px);
    background-size: 30px 30px, 40px 40px, 20px 20px;
}
.img-placeholder-smart i {
    font-size: 36px;
    color: var(--gold);
    opacity: 0.7;
    z-index: 1;
    text-shadow: 0 2px 12px rgba(212,175,55,0.3);
    transition: all 0.3s;
}
.news-card:hover .img-placeholder-smart i {
    opacity: 1;
    transform: scale(1.1);
}
.img-placeholder-smart span {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
    z-index: 1;
    padding: 3px 12px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
}
/* Category-specific gradients */
.img-placeholder-smart[data-cat="أنشطة برلمانية"],
.img-placeholder-smart[data-cat="parliament"] {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 60%, #1a365d 100%);
}
.img-placeholder-smart[data-cat="خدمات"],
.img-placeholder-smart[data-cat="services"] {
    background: linear-gradient(135deg, #065f46 0%, #047857 60%, #065f46 100%);
}
.img-placeholder-smart[data-cat="خدمات"] i,
.img-placeholder-smart[data-cat="services"] i {
    color: #6ee7b7;
}
.img-placeholder-smart[data-cat="زيارات ميدانية"],
.img-placeholder-smart[data-cat="field"] {
    background: linear-gradient(135deg, #7c2d12 0%, #c2410c 60%, #7c2d12 100%);
}
.img-placeholder-smart[data-cat="زيارات ميدانية"] i,
.img-placeholder-smart[data-cat="field"] i {
    color: #fdba74;
}
.img-placeholder-smart[data-cat="صحة"] {
    background: linear-gradient(135deg, #881337 0%, #be123c 60%, #881337 100%);
}
.img-placeholder-smart[data-cat="صحة"] i {
    color: #fda4af;
}
.img-placeholder-smart[data-cat="تعليم"] {
    background: linear-gradient(135deg, #3730a3 0%, #4f46e5 60%, #3730a3 100%);
}
.img-placeholder-smart[data-cat="تعليم"] i {
    color: #a5b4fc;
}
.img-placeholder-smart[data-cat="بنية تحتية"] {
    background: linear-gradient(135deg, #78350f 0%, #a16207 60%, #78350f 100%);
}
.img-placeholder-smart[data-cat="بنية تحتية"] i {
    color: #fcd34d;
}

.news-card-date {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    background: var(--gold);
    color: var(--primary-dark);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    font-weight: 700;
}

.news-card-body {
    padding: var(--space-6);
}

.news-card-category {
    display: inline-block;
    padding: var(--space-1) var(--space-3);
    background: rgba(var(--primary-rgb), 0.06);
    color: var(--primary);
    font-size: var(--font-size-xs);
    font-weight: 600;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-3);
}

.news-card h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-3);
    line-height: 1.5;
}

.news-card h3 a {
    color: var(--primary);
}

.news-card h3 a:hover {
    color: var(--gold-dark);
}

.news-card p {
    color: var(--gray-500);
    font-size: var(--font-size-sm);
    line-height: 1.8;
    margin-bottom: var(--space-4);
}

.news-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-4);
    border-top: 1px solid var(--gray-100);
}

.news-card-footer .read-more {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: var(--space-16) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1' fill='%23d4af37' fill-opacity='0.1'/%3E%3C/svg%3E");
}

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

.cta-section h2 {
    color: var(--white);
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-4);
}

.cta-section p {
    color: rgba(255,255,255,0.7);
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Services Enhanced Layout (2+4)
   ======================================== */
.services-primary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    margin-bottom: var(--space-6);
}

.services-secondary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.services-primary .service-card {
    padding: var(--space-10);
}

.services-primary .service-icon {
    width: 80px;
    height: 80px;
    font-size: 32px;
}

.services-primary .service-card h3 {
    font-size: var(--font-size-2xl);
}

.service-num {
    position: absolute;
    top: var(--space-5);
    left: var(--space-5);
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.06;
    line-height: 1;
    pointer-events: none;
}

/* ========================================
   Trust Indicators
   ======================================== */
.trust-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: var(--space-16) 0;
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1' fill='%23d4af37' fill-opacity='0.08'/%3E%3C/svg%3E");
    pointer-events: none;
}

.trust-section .container {
    position: relative;
    z-index: 1;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
}

.trust-card {
    text-align: center;
    color: var(--white);
    position: relative;
}

.trust-card:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255,255,255,0.1);
}

.trust-icon {
    width: 64px;
    height: 64px;
    background: rgba(212,175,55,0.15);
    border: 1px solid rgba(212,175,55,0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    color: var(--gold);
    font-size: 24px;
    transition: var(--transition);
}

.trust-card:hover .trust-icon {
    background: var(--gold);
    color: var(--primary-dark);
    transform: scale(1.1);
}

.trust-card h4 {
    color: var(--white);
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-2);
}

.trust-card p {
    color: rgba(255,255,255,0.6);
    font-size: var(--font-size-sm);
    line-height: 1.8;
}

/* ========================================
   Homepage News Featured Card
   ======================================== */
.page-home .news-grid {
    grid-template-columns: 1fr 1fr;
}

.page-home .news-grid .news-card:first-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.page-home .news-grid .news-card:first-child .news-card-img {
    aspect-ratio: unset;
    min-height: 300px;
}

.page-home .news-grid .news-card:first-child .news-card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-8);
}

.page-home .news-grid .news-card:first-child h3 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-4);
}

.page-home .news-grid .news-card:first-child .news-card-body p {
    font-size: var(--font-size-base);
}

/* ========================================
   Testimonials
   ======================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212,175,55,0.3);
}

.testimonial-quote {
    position: absolute;
    top: var(--space-4);
    left: var(--space-4);
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.12;
    line-height: 1;
    font-family: Georgia, serif;
    pointer-events: none;
}

.testimonial-text {
    color: var(--gray-600);
    font-size: var(--font-size-base);
    line-height: 1.9;
    margin-bottom: var(--space-6);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding-top: var(--space-4);
    border-top: 1px solid var(--gray-100);
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--gold);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--font-size-lg);
    flex-shrink: 0;
}

.testimonial-author-info strong {
    display: block;
    color: var(--primary);
    font-size: var(--font-size-sm);
}

.testimonial-author-info span {
    color: var(--gray-400);
    font-size: var(--font-size-xs);
}

/* ========================================
   Enhanced CTA
   ======================================== */
.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(212,175,55,0.15);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    font-size: 36px;
    color: var(--gold);
    border: 1px solid rgba(212,175,55,0.2);
}

.cta-stat {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: rgba(255,255,255,0.1);
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-xl);
    color: var(--gold-light);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--space-6);
    border: 1px solid rgba(212,175,55,0.2);
}

/* ========================================
   New Sections Responsive
   ======================================== */
@media (max-width: 1024px) {
    .services-secondary {
        grid-template-columns: repeat(2, 1fr);
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .trust-card:nth-child(2)::after {
        display: none;
    }
    .page-home .news-grid .news-card:first-child {
        grid-template-columns: 1fr;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .services-primary {
        grid-template-columns: 1fr;
    }
    .services-secondary {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-secondary .service-card {
        padding: var(--space-5);
    }
    .services-primary .service-card {
        padding: var(--space-6);
    }
    .services-primary .service-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-5);
    }
    .trust-card::after {
        display: none !important;
    }
    .trust-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    .trust-section {
        padding: var(--space-12) 0;
    }
    .page-home .news-grid {
        grid-template-columns: 1fr;
    }
    .page-home .news-grid .news-card:first-child {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    .page-home .news-grid .news-card:first-child h3 {
        font-size: var(--font-size-xl);
    }
    .page-home .news-grid .news-card:first-child .news-card-body {
        padding: var(--space-5);
    }
    .cta-section {
        padding: var(--space-12) 0;
    }
    .cta-section h2 {
        font-size: var(--font-size-2xl);
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    .section {
        padding: var(--space-12) 0;
    }
    .section-header {
        margin-bottom: var(--space-8);
    }
    .section-header h2 {
        font-size: var(--font-size-2xl);
    }
    .section-header p {
        font-size: var(--font-size-base);
    }
}

@media (max-width: 480px) {
    .services-secondary {
        grid-template-columns: 1fr;
    }
    .trust-grid {
        grid-template-columns: 1fr;
    }
    .service-num {
        font-size: 2rem;
    }
}

/* ========================================
   Contact / Form Styles
   ======================================== */
.form-group {
    margin-bottom: var(--space-5);
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: var(--space-2);
    font-size: var(--font-size-sm);
}

.form-group label .required {
    color: var(--red);
}

.form-control {
    width: 100%;
    padding: var(--space-3) var(--space-4);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: var(--font-size-base);
    color: var(--gray-700);
    background: var(--white);
    transition: var(--transition);
    direction: rtl;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212,175,55,0.1);
}

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

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%236c7486'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 16px center;
    padding-left: 36px;
}

.form-check {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    cursor: pointer;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-10);
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-5);
    background: var(--gray-50);
    border-radius: var(--radius);
    margin-bottom: var(--space-4);
    transition: var(--transition);
}

.contact-info-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.contact-info-card i {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--gold);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: var(--font-size-base);
    margin-bottom: var(--space-1);
}

.contact-info-card p {
    color: var(--gray-500);
    font-size: var(--font-size-sm);
}

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

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: var(--space-4);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.open {
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-5) var(--space-6);
    cursor: pointer;
    width: 100%;
    text-align: right;
    background: none;
    border: none;
    font-family: var(--font-main);
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--primary);
    gap: var(--space-4);
}

.faq-question i {
    color: var(--gold);
    font-size: 14px;
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

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

.faq-answer-content {
    padding: 0 var(--space-6) var(--space-5);
    color: var(--gray-500);
    line-height: 1.9;
    font-size: var(--font-size-sm);
    border-top: 1px solid var(--gray-100);
    padding-top: var(--space-5);
}

/* ========================================
   Gallery
   ======================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-5);
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: var(--gray-100);
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-5);
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay h4 {
    color: var(--white);
    font-size: var(--font-size-base);
}

.gallery-overlay span {
    color: var(--gold);
    font-size: var(--font-size-sm);
}

/* ========================================
   Ticket Submit Wizard
   ======================================== */
.wizard-container {
    max-width: 700px;
    margin: 0 auto;
}

.wizard-steps {
    display: flex;
    justify-content: center;
    margin-bottom: var(--space-10);
    position: relative;
}

.wizard-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 15%;
    left: 15%;
    height: 2px;
    background: var(--gray-200);
    z-index: 0;
}

.wizard-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    position: relative;
    z-index: 1;
    flex: 1;
}

.wizard-step-num {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--white);
    border: 2px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--gray-400);
    transition: var(--transition);
}

.wizard-step.active .wizard-step-num {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--primary-dark);
}

.wizard-step.done .wizard-step-num {
    background: var(--success);
    border-color: var(--success);
    color: var(--white);
}

.wizard-step-label {
    font-size: var(--font-size-xs);
    color: var(--gray-400);
    font-weight: 500;
}

.wizard-step.active .wizard-step-label {
    color: var(--primary);
    font-weight: 700;
}

.wizard-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    box-shadow: var(--shadow-md);
    display: none;
}

.wizard-panel.active {
    display: block;
    animation: fadeInUp 0.3s ease;
}

.wizard-nav {
    display: flex;
    justify-content: space-between;
    margin-top: var(--space-8);
    padding-top: var(--space-6);
    border-top: 1px solid var(--gray-100);
}

/* ========================================
   Ticket Tracker
   ======================================== */
.track-form {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.track-input-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.track-input-group input {
    width: 100%;
}

.ticket-timeline {
    max-width: 700px;
    margin: var(--space-10) auto 0;
}

.timeline-item {
    display: flex;
    gap: var(--space-5);
    padding-bottom: var(--space-8);
    position: relative;
}

.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    right: 19px;
    top: 40px;
    bottom: 0;
    width: 2px;
    background: var(--gray-200);
}

.timeline-dot {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    z-index: 1;
}

.timeline-dot.status-new { background: var(--info); }
.timeline-dot.status-progress { background: var(--warning); }
.timeline-dot.status-done { background: var(--success); }
.timeline-dot.status-closed { background: var(--gray-400); }

.timeline-content {
    background: var(--white);
    border-radius: var(--radius);
    padding: var(--space-5);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    flex: 1;
}

.timeline-content h4 {
    font-size: var(--font-size-base);
    margin-bottom: var(--space-2);
}

.timeline-content p {
    color: var(--gray-500);
    font-size: var(--font-size-sm);
}

.timeline-content .timeline-date {
    font-size: var(--font-size-xs);
    color: var(--gray-400);
    margin-top: var(--space-2);
}

/* Tracker responsive */
@media (max-width: 576px) {
    .track-input-group {
        flex-direction: column;
    }
    .timeline-item {
        gap: var(--space-3);
    }
    .timeline-dot {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
    .timeline-item:not(:last-child)::before {
        right: 15px;
    }
    .timeline-content {
        padding: var(--space-4);
    }
    .ticket-timeline {
        margin-top: var(--space-6);
    }
}

/* ========================================
   About Page
   ======================================== */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-12);
    align-items: center;
}

.about-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-img img {
    width: 100%;
    height: auto;
}

.about-img-placeholder {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 80px;
    opacity: 0.4;
}

.about-text h2 {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-4);
}

.about-text h2 span {
    color: var(--gold);
}

.about-text p {
    color: var(--gray-500);
    line-height: 2;
    margin-bottom: var(--space-5);
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.about-highlight {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3);
    background: var(--gray-50);
    border-radius: var(--radius-sm);
}

.about-highlight i {
    color: var(--gold);
    font-size: 20px;
}

.about-highlight span {
    font-weight: 600;
    color: var(--primary);
    font-size: var(--font-size-sm);
}

/* ========================================
   Priority Issues (About Page)
   ======================================== */
.priorities-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    max-width: 900px;
    margin: 0 auto;
}

.priority-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-6);
    padding: var(--space-8);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border-right: 5px solid var(--gold);
    transition: var(--transition);
}

.priority-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.priority-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
}

.priority-content h3 {
    margin: 0 0 var(--space-3);
    color: var(--primary);
    font-size: var(--font-size-xl);
    font-weight: 700;
}

.priority-content p {
    margin: 0;
    color: var(--gray-600);
    font-size: var(--font-size-base);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .priority-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: var(--space-6);
    }
    
    .priority-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* ========================================
   Priority Featured (Advanced Layout)
   ======================================== */
.priorities-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

.section-subtitle {
    color: var(--gray-600);
    font-size: var(--font-size-lg);
    max-width: 600px;
    margin: var(--space-4) auto 0;
}

.priority-featured {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: var(--space-8);
    align-items: center;
    padding: var(--space-10);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-bottom: var(--space-8);
    position: relative;
    overflow: hidden;
}

.priority-featured::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
}

.priority-featured-alt {
    grid-template-columns: 1fr 150px;
}

.priority-featured-alt::before {
    right: auto;
    left: 0;
}

.priority-featured-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
}

.priority-icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    box-shadow: 0 8px 25px rgba(11, 26, 45, 0.3);
}

.priority-number {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--gray-200);
    letter-spacing: -2px;
}

.priority-featured-content h3 {
    margin: 0 0 var(--space-4);
    color: var(--primary);
    font-size: var(--font-size-2xl);
    font-weight: 700;
}

.priority-featured-content p {
    margin: 0 0 var(--space-5);
    color: var(--gray-600);
    font-size: var(--font-size-lg);
    line-height: 1.9;
}

.priority-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.priority-tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--secondary-light);
    color: var(--primary);
    border-radius: var(--radius-xl);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.priority-tag i {
    color: var(--gold);
    font-size: 0.85rem;
}

/* Vision Cards */
.vision-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
    max-width: 900px;
    margin: 0 auto;
}

.vision-card {
    padding: var(--space-8);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    text-align: center;
}

.vision-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
    margin: 0 auto var(--space-5);
}

.vision-card h3 {
    margin: 0 0 var(--space-4);
    color: var(--primary);
    font-size: var(--font-size-xl);
}

.vision-card p {
    margin: 0;
    color: var(--gray-600);
    line-height: 1.8;
}

@media (max-width: 900px) {
    .priority-featured {
        grid-template-columns: 1fr;
        text-align: center;
        padding: var(--space-8);
    }
    
    .priority-featured-alt {
        grid-template-columns: 1fr;
    }
    
    .priority-featured-icon {
        order: -1;
    }
    
    .priority-icon-wrapper {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .priority-tags {
        justify-content: center;
    }
    
    .vision-cards {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   About Page - Advanced Sections
   ======================================== */

/* Quote Section */
.about-quote-section {
    padding: var(--space-12) 0 var(--space-8);
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.about-quote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.about-quote-icon {
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.3;
    position: absolute;
    top: -30px;
    right: 50%;
    transform: translateX(50%);
}

.about-quote blockquote {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--primary);
    line-height: 1.7;
    margin: 0 0 var(--space-4);
    padding: var(--space-8) var(--space-6);
    font-style: italic;
}

.about-quote cite {
    font-size: var(--font-size-lg);
    color: var(--gold-dark);
    font-style: normal;
    font-weight: 600;
}

/* Story Section */
.about-story-section {
    padding: var(--space-16) 0;
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: var(--space-12);
    align-items: start;
}

.about-story-content {
    order: 1;
}

.about-story-image {
    order: 2;
    position: sticky;
    top: 120px;
}

/* MP Photo Frame - Elegant Design */
.mp-photo-frame {
    position: relative;
    padding: 15px;
}

.mp-photo-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 80%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: var(--radius-xl);
    opacity: 0.15;
    z-index: 0;
}

.mp-photo-container {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
    border: 4px solid var(--white);
}

.mp-photo-container img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.mp-photo-frame:hover .mp-photo-container img {
    transform: scale(1.03);
}

.mp-photo-badge {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.4);
    font-weight: 600;
    font-size: var(--font-size-sm);
    white-space: nowrap;
}

.mp-photo-badge i {
    color: var(--gold);
    font-size: 1.1rem;
}

.about-story-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.section-header-right {
    text-align: right;
}

.section-header-right .section-badge {
    margin: 0 0 var(--space-3) 0;
}

.about-lead {
    font-size: var(--font-size-xl);
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: var(--space-5);
}

.about-story-content p {
    font-size: var(--font-size-lg);
    color: var(--gray-600);
    line-height: 1.9;
    margin-bottom: var(--space-5);
}

.about-story-content strong {
    color: var(--primary);
}

.about-story-content em {
    color: var(--gold-dark);
    font-style: normal;
    font-weight: 600;
}

/* Highlight Badge - Elegant Inline Style */
.highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    font-size: var(--font-size-sm);
    font-weight: 600;
    border-radius: 20px;
    white-space: nowrap;
    vertical-align: middle;
    transition: var(--transition);
}

.highlight-badge i {
    font-size: 0.85em;
    opacity: 0.9;
}

.highlight-badge.gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
}

.about-story-content p .highlight-badge {
    margin: 0 4px;
}

/* Parliament Section */
.about-parliament-section {
    padding: var(--space-16) 0;
}

.parliament-content {
    max-width: 1000px;
    margin: 0 auto;
}

.parliament-main {
    margin-bottom: var(--space-10);
}

.parliament-lead {
    font-size: var(--font-size-xl);
    line-height: 1.9;
    color: var(--gray-700);
    margin-bottom: var(--space-5);
}

.parliament-main p {
    font-size: var(--font-size-lg);
    line-height: 1.9;
    color: var(--gray-600);
}

.parliament-main strong {
    color: var(--primary);
}

.parliament-main em {
    color: var(--gold-dark);
    font-style: normal;
    font-weight: 600;
    background: rgba(212, 175, 55, 0.1);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
}

.parliament-role {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
}

.role-card {
    padding: var(--space-8);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    text-align: center;
}

.role-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
    margin: 0 auto var(--space-4);
}

.role-card h4 {
    color: var(--primary);
    font-size: var(--font-size-lg);
    margin: 0 0 var(--space-2);
}

.role-card p {
    color: var(--gray-600);
    font-size: var(--font-size-sm);
    margin: 0;
    line-height: 1.6;
}

.role-highlight {
    padding: var(--space-8);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: var(--space-5);
}

.role-highlight i {
    font-size: 3rem;
    color: var(--white);
    opacity: 0.9;
}

.role-highlight p {
    color: var(--white);
    font-size: var(--font-size-base);
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
}

/* Communication Section */
.communication-section {
    padding: var(--space-16) 0;
}

.communication-content {
    max-width: 1000px;
    margin: 0 auto;
}

.communication-text {
    text-align: center;
    margin-bottom: var(--space-10);
}

.communication-text h3 {
    font-size: var(--font-size-2xl);
    color: var(--primary);
    margin: 0 0 var(--space-5);
}

.communication-text h3 i {
    color: var(--gold);
    margin-left: var(--space-3);
}

.communication-text p {
    font-size: var(--font-size-lg);
    color: var(--gray-600);
    line-height: 1.9;
    max-width: 700px;
    margin: 0 auto var(--space-4);
}

.communication-text strong {
    color: var(--primary);
}

.communication-text em {
    color: var(--gold-dark);
    font-style: normal;
    font-weight: 600;
}

.communication-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.comm-feature {
    text-align: center;
    padding: var(--space-8);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: var(--transition);
}

.comm-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.comm-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
    margin: 0 auto var(--space-4);
}

.comm-feature h4 {
    color: var(--primary);
    font-size: var(--font-size-lg);
    margin: 0 0 var(--space-2);
}

.comm-feature p {
    color: var(--gray-600);
    font-size: var(--font-size-sm);
    margin: 0;
}

/* Commitment Section */
.commitment-section {
    padding: var(--space-16) 0;
    background: linear-gradient(135deg, var(--primary) 0%, #0f2440 100%);
}

.commitment-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: var(--space-12);
}

.commitment-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    margin: 0 auto var(--space-8);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.commitment-card blockquote {
    font-size: var(--font-size-2xl);
    color: var(--white);
    line-height: 1.8;
    margin: 0;
    font-weight: 500;
}

.commitment-card blockquote strong {
    color: var(--gold);
}

/* About Page Responsive */
@media (max-width: 1024px) {
    .about-story {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .about-story-image {
        order: -1;
        position: static;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .mp-photo-badge {
        padding: 10px 18px;
        font-size: 0.8rem;
        bottom: 20px;
    }
    
    .section-header-right {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .mp-photo-frame {
        padding: 10px;
    }
    
    .mp-photo-badge {
        padding: 8px 14px;
        font-size: 0.75rem;
        gap: 6px;
        bottom: 15px;
    }
    
    .mp-photo-badge i {
        font-size: 0.9rem;
    }
    
    .about-quote blockquote {
        font-size: var(--font-size-xl);
        padding: var(--space-6) var(--space-4);
    }
    
    .about-quote-icon {
        font-size: 3rem;
    }
    
    .highlight-badge {
        padding: 3px 10px;
        font-size: 0.8rem;
    }
    
    .parliament-role {
        grid-template-columns: 1fr;
    }
    
    .role-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .communication-features {
        grid-template-columns: 1fr;
    }
    
    .commitment-card {
        padding: var(--space-8);
    }
    
    .commitment-card blockquote {
        font-size: var(--font-size-lg);
    }
    
    .commitment-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}

/* ========================================
   Ticket Status Badge
   ======================================== */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-xl);
    font-size: var(--font-size-xs);
    font-weight: 600;
}

.status-new {
    background: #dbeafe;
    color: #1d4ed8;
}

.status-progress {
    background: #fef3c7;
    color: #b45309;
}

.status-waiting {
    background: #fce7f3;
    color: #be185d;
}

.status-resolved {
    background: #d1fae5;
    color: #047857;
}

.status-closed {
    background: #e5e7eb;
    color: #4b5563;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.7);
    padding-top: var(--space-12);
    position: relative;
}

.footer-wave {
    position: absolute;
    top: -2px;
    right: 0;
    left: 0;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 60px;
    fill: var(--white);
}

body[data-page] .section:last-of-type + .site-footer .footer-wave svg,
.section-alt + .site-footer .footer-wave svg {
    fill: var(--gray-50);
}

.cta-section + .site-footer .footer-wave svg {
    fill: var(--primary-dark);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: var(--space-10);
    padding-top: var(--space-10);
    padding-bottom: var(--space-10);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-5);
}

.footer-logo i {
    font-size: 28px;
    color: var(--gold);
}

.footer-logo h3 {
    color: var(--white);
    font-size: var(--font-size-xl);
}

.footer-col h4 {
    color: var(--white);
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-5);
    position: relative;
    padding-bottom: var(--space-3);
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background: var(--gold);
    border-radius: 3px;
}

.footer-col ul li {
    margin-bottom: var(--space-2);
}

.footer-col ul li a {
    color: rgba(255,255,255,0.6);
    font-size: var(--font-size-sm);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-right: var(--space-2);
}

.footer-col ul li a i {
    font-size: 10px;
    opacity: 0.5;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
    font-size: var(--font-size-sm);
}

.footer-contact i {
    color: var(--gold);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-4);
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: var(--radius);
    background: rgba(255,255,255,0.08);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 16px;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: var(--space-5) 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--font-size-sm);
}

.footer-powered {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--gold);
    opacity: 0.7;
}

/* ========================================
   Back to Top
   ======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 46px;
    height: 46px;
    background: var(--primary);
    color: var(--gold);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    cursor: pointer;
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* ========================================
   WhatsApp Float
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    left: 30px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

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

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

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

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

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

/* ========================================
   Utilities
   ======================================== */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-primary { color: var(--primary); }
.text-muted { color: var(--gray-500); }
.fw-bold { font-weight: 700; }
.mt-2 { margin-top: var(--space-2); }
.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }

.empty-state {
    text-align: center;
    padding: var(--space-16) var(--space-8);
    color: var(--gray-400);
}

.empty-state i {
    font-size: 60px;
    margin-bottom: var(--space-5);
    opacity: 0.3;
}

.empty-state h3 {
    color: var(--gray-500);
    margin-bottom: var(--space-3);
}

/* ========================================
   Lightbox (Gallery Modal)
   ======================================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.open {
    display: flex;
    opacity: 1;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius);
    box-shadow: 0 0 40px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.25);
}

/* ========================================
   Responsive
   ======================================== */

/* Tablet - Hide nav icons, reduce font */
@media (max-width: 1200px) and (min-width: 1025px) {
    .nav-menu a {
        padding: 6px 8px;
        font-size: 0.75rem;
    }
    .nav-menu a i {
        display: none;
    }
    .logo-text strong {
        font-size: 0.85rem;
    }
    .logo-text small {
        font-size: 0.65rem;
    }
    .page-home .main-nav .nav-menu a {
        padding: 6px 8px;
        font-size: 0.75rem;
    }
    .page-home .main-nav .nav-menu a i {
        display: none;
    }
}

/* Switch to hamburger menu at 1024px */
@media (max-width: 1024px) {
    :root {
        --nav-height: 60px;
    }
    
    /* Mobile Nav */
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -280px;
        width: 280px;
        height: 100dvh;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: calc(var(--nav-height) + var(--space-8)) var(--space-6) var(--space-6);
        box-shadow: -4px 0 20px rgba(0,0,0,0.15);
        transition: right 0.3s ease, visibility 0.3s ease;
        align-items: stretch;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 1010;
        isolation: isolate;
        pointer-events: auto;
        visibility: hidden;
    }

    .nav-menu.open {
        right: 0;
        visibility: visible;
    }

    .nav-menu li {
        margin: 0;
        width: 100%;
    }

    .nav-menu a {
        justify-content: flex-start;
        padding: 14px 16px;
        font-size: 1rem;
        color: var(--gray-700);
        border-radius: var(--radius-sm);
        width: 100%;
        pointer-events: auto;
    }

    .nav-menu a i {
        display: flex;
        font-size: 1.1rem;
        width: 24px;
        text-align: center;
        justify-content: center;
    }

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

    .page-home .nav-menu a,
    .page-home .main-nav .nav-menu a {
        color: var(--gray-700);
        background: transparent;
    }
    
    .page-home .nav-menu a i,
    .page-home .main-nav .nav-menu a i {
        display: flex;
    }

    .page-home .nav-menu a:hover,
    .page-home .nav-menu a.active,
    .page-home .main-nav .nav-menu a:hover,
    .page-home .main-nav .nav-menu a.active {
        background: var(--secondary-light);
        color: var(--primary);
    }

    /* Nav Overlay */
    .nav-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 280px;
        width: calc(100vw - 280px);
        height: 100dvh;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        pointer-events: none;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }

    .about-intro {
        grid-template-columns: 1fr;
    }

    .about-img {
        max-width: 400px;
        margin: 0 auto;
    }

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

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

@media (max-width: 768px) {
    :root {
        --font-size-5xl: 2.2rem;
        --font-size-4xl: 1.8rem;
        --font-size-3xl: 1.5rem;
    }

    .top-bar-info {
        display: none;
    }

    .top-bar-divider {
        display: none;
    }

    .top-bar-right {
        gap: var(--space-2);
    }

    .top-bar-social {
        margin: 0;
    }

    .top-bar-staff-btn span {
        display: none;
    }

    .top-bar-staff-btn {
        width: 28px;
        height: 28px;
        padding: 0;
        justify-content: center;
        border-radius: 6px;
    }

    /* Hero Mobile — Composed Layout */
    .hero {
        min-height: auto !important;
        background-image: none !important;
        background-color: #0b1a2d !important;
        background-size: 0 !important;
        padding-top: calc(var(--top-bar-height) + var(--nav-height) + var(--space-8));
        padding-bottom: var(--space-8);
        position: relative;
        overflow: hidden;
    }

    /* Gradient via pseudo-element (avoids shorthand conflicts) */
    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(165deg, 
            #0b1a2d 0%, 
            #0f2440 25%,
            #132d4f 50%, 
            #1a365d 75%, 
            #0f2440 100%
        );
        z-index: 0;
        pointer-events: none;
    }

    /* Decorative subtle pattern */
    .hero::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 70% 30%, rgba(212,175,55,0.08) 0%, transparent 50%),
                    radial-gradient(circle at 20% 80%, rgba(212,175,55,0.05) 0%, transparent 40%);
        z-index: 0;
        pointer-events: none;
    }

    .hero-overlay {
        display: none !important;
    }

    .hero-mobile-content {
        display: flex;
        position: relative;
        z-index: 2;
        justify-content: center;
        align-items: center;
    }

    .hero-mobile-inner {
        padding: var(--space-4);
        width: 100%;
        max-width: 380px;
    }

    .page-home .main-nav .nav-logo {
        margin-left: 0;
    }

    /* CTA Strip */
    .cta-strip {
        padding: var(--space-4) 0;
    }

    .cta-strip-btn {
        padding: 12px 28px;
        font-size: var(--font-size-sm);
    }

    /* Grids → single column */
    .services-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    /* Stats */
    .stats-bar {
        margin-top: 0;
        padding: var(--space-5);
        border-radius: var(--radius);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }

    .stat-item::after {
        display: none !important;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .stat-number {
        font-size: var(--font-size-2xl);
    }

    .stat-label {
        font-size: var(--font-size-xs);
    }

    .stats-section {
        padding: var(--space-8) 0;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: var(--space-2);
        text-align: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: var(--space-2);
    }

    /* Page Hero */
    .page-hero {
        padding: var(--space-12) 0 var(--space-10);
    }

    .page-hero h1 {
        font-size: var(--font-size-3xl);
    }

    /* About */
    .about-highlights {
        grid-template-columns: 1fr;
    }

    /* Wizard & Track */
    .wizard-steps::before {
        display: none;
    }

    .wizard-step-label {
        display: none;
    }

    .track-input-group {
        flex-direction: column;
    }

    /* Fix inline grid styles on mobile */
    .services-grid[style*="repeat(2"] {
        grid-template-columns: 1fr !important;
    }

    div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    div[style*="grid-template-columns: repeat(2"] {
        grid-template-columns: 1fr !important;
    }

    div[style*="grid-template-columns: repeat(auto-fill"] {
        grid-template-columns: 1fr 1fr !important;
    }

    /* News card mobile */
    .news-card-body {
        padding: var(--space-4);
    }

    .news-card-img {
        aspect-ratio: 16 / 9;
    }

    /* Section spacing */
    .section {
        padding: var(--space-12) 0;
    }

    .section-header {
        margin-bottom: var(--space-8);
    }

    /* Contact grid */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* CTA Section */
    .cta-section {
        padding: var(--space-10) 0;
    }

    .cta-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    /* Logo text on mobile */
    .logo-text small {
        display: none;
    }

    /* ===== Mobile Responsive Fixes ===== */

    /* Fix: ul with inline grid-template-columns (services.php features) */
    ul[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
    }

    /* Fix: Search form flex-wrap on small screens */
    form[style*="display: flex"][style*="gap"] {
        flex-wrap: wrap !important;
    }

    form[style*="display: flex"] button[type="submit"] {
        width: 100%;
    }

    /* Fix: Search results card flex-wrap */
    div[style*="display: flex"][style*="gap: 20px"][style*="align-items: center"] {
        flex-wrap: wrap !important;
    }

    /* Fix: Search result image responsive */
    div[style*="display: flex"][style*="gap: 20px"] img,
    div[style*="display: flex"][style*="gap: 20px"] div[style*="width: 80px"] {
        width: 60px !important;
        height: 60px !important;
    }

    /* Fix: 404 page font responsive */
    .page-404 .error-404-section div[style*="font-size: 120px"],
    div[style*="font-size: 120px"] {
        font-size: clamp(60px, 18vw, 120px) !important;
    }

    /* Fix: Share buttons flex-wrap (news.php) */
    div[style*="display: flex"][style*="gap: var(--space-3)"] {
        flex-wrap: wrap !important;
    }

    /* Fix: Copy button larger touch target (track.php) */
    button[onclick*="copyTrackID"] {
        padding: 6px 14px !important;
        font-size: var(--font-size-sm) !important;
        min-height: 36px;
        min-width: 60px;
    }

    /* Fix: Submit-ticket track ID overflow */
    div[style*="letter-spacing: 4px"] {
        font-size: var(--font-size-2xl) !important;
        letter-spacing: 2px !important;
        word-break: break-all;
        overflow-wrap: break-word;
    }

    /* Fix: Ticket details responsive */
    .ticket-timeline div[style*="display: flex"][style*="justify-content: space-between"] {
        flex-direction: column !important;
        align-items: flex-start !important;
    }
}

@media (max-width: 480px) {
    :root {
        --font-size-5xl: 1.8rem;
        --font-size-4xl: 1.5rem;
        --font-size-3xl: 1.3rem;
        --font-size-2xl: 1.15rem;
    }

    .container {
        padding: 0 var(--space-3);
    }

    /* Hero smallest */
    .hero {
        padding-top: calc(var(--top-bar-height) + var(--nav-height) + var(--space-6));
        padding-bottom: var(--space-6);
    }

    .hero-mp-photo-wrapper {
        width: 130px;
        height: 130px;
    }

    .hero-mp-name {
        font-size: 1.35rem;
    }

    .hero-mp-title {
        font-size: 0.85rem;
    }

    .hero-badge {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .hero h1 {
        font-size: var(--font-size-3xl);
    }

    .hero p {
        font-size: var(--font-size-sm);
    }

    .hero-content .btn {
        padding: 10px 24px;
        font-size: var(--font-size-sm);
    }

    /* CTA Strip */
    .cta-strip-inner {
        flex-direction: column;
        gap: var(--space-2);
    }

    .cta-strip-btn {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
    }

    /* Stats 2x2 stays but smaller */
    .stats-grid {
        gap: var(--space-3);
    }

    .stat-number {
        font-size: var(--font-size-xl);
    }

    .stat-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    /* Services */
    .service-card {
        padding: var(--space-4);
    }

    /* News */
    .news-card-body {
        padding: var(--space-3);
    }

    .news-card-title {
        font-size: var(--font-size-base);
    }

    /* Trust */
    .trust-item {
        padding: var(--space-3);
    }

    /* Section spacing */
    .section {
        padding: var(--space-8) 0;
    }

    .section-header {
        margin-bottom: var(--space-6);
    }

    .section-header h2 {
        font-size: var(--font-size-2xl);
    }

    /* Page Hero */
    .page-hero {
        padding: var(--space-10) 0 var(--space-8);
    }

    .page-hero h1 {
        font-size: var(--font-size-2xl);
    }

    /* Footer */
    .footer-col h4 {
        font-size: var(--font-size-base);
    }

    /* CTA Section */
    .cta-section h2 {
        font-size: var(--font-size-xl);
    }

    .cta-section p {
        font-size: var(--font-size-sm);
    }

    .cta-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    /* Testimonials */
    .testimonial-card {
        padding: var(--space-4);
    }

    /* Top Bar even smaller */
    .top-bar {
        padding: 4px 0;
        font-size: 11px;
    }

    /* Featured news */
    .featured-news-card {
        border-radius: var(--radius);
    }

    .featured-news-body {
        padding: var(--space-4);
    }

    .featured-news-title {
        font-size: var(--font-size-lg);
    }

    /* Wizard steps */
    .wizard-step {
        width: 32px;
        height: 32px;
        font-size: var(--font-size-xs);
    }

    /* FAQ */
    .faq-question {
        padding: var(--space-3) var(--space-4);
        font-size: var(--font-size-sm);
    }

    .faq-answer {
        padding: var(--space-3) var(--space-4);
    }

    /* ===== 480px Responsive Extras ===== */

    /* Fix: Search form stacks vertically on small phones */
    form[style*="display: flex"] input[type="text"] {
        width: 100% !important;
        padding: 12px 16px !important;
    }

    form[style*="display: flex"] button[type="submit"] {
        padding: 12px 20px !important;
    }

    /* Fix: Search result card stacks */
    div[style*="display: flex"][style*="gap: 20px"][style*="align-items: center"] {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    /* Fix: Error section padding */
    .error-404-section {
        padding: 40px 15px !important;
        min-height: 50vh !important;
    }

    /* Fix: CTA buttons stack */
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
    .top-bar,
    .main-nav,
    .back-to-top,
    .whatsapp-float,
    .site-footer,
    .cta-section,
    .cta-strip,
    .preloader,
    .scroll-progress {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    .hero {
        min-height: auto;
        padding: 20px 0;
        background: none !important;
    }

    .stats-bar {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* ========================================
   Preloader
   ======================================== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--primary-dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-icon {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 20px;
    animation: preloaderPulse 1.2s ease-in-out infinite;
}

.preloader-bar {
    width: 160px;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
}

.preloader-fill {
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 4px;
    animation: preloaderSlide 1s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

@keyframes preloaderSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(400%); }
}

/* ========================================
   Scroll Progress Bar
   ======================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    right: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    z-index: 10001;
    transition: width 0.1s linear;
    box-shadow: 0 0 8px rgba(212,175,55,0.4);
}

/* ========================================
   Enhanced Page Hero Banner
   ======================================== */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #0a1628 100%);
    padding: var(--space-20) 0 var(--space-16);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}

.page-hero-decor {
    position: absolute;
    border-radius: var(--radius-full);
    pointer-events: none;
}

.page-hero-decor-1 {
    width: 300px;
    height: 300px;
    background: var(--gold);
    top: -120px;
    left: -80px;
    opacity: 0.06;
    filter: blur(60px);
}

.page-hero-decor-2 {
    width: 200px;
    height: 200px;
    background: var(--red);
    bottom: -80px;
    right: -60px;
    opacity: 0.06;
    filter: blur(50px);
}

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

.page-hero h1 {
    color: var(--white);
    font-size: var(--font-size-4xl);
    font-weight: 900;
    margin-bottom: var(--space-3);
    position: relative;
    display: inline-block;
}

.page-hero-title-line {
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 4px;
    margin: 0 auto var(--space-4);
}

.page-hero p {
    color: rgba(255,255,255,0.75);
    font-size: var(--font-size-lg);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    margin-bottom: var(--space-6);
    font-size: var(--font-size-sm);
}

.breadcrumbs a {
    color: var(--gold-light);
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.breadcrumbs a:hover {
    opacity: 1;
    color: var(--gold);
}

.breadcrumbs a i {
    font-size: 11px;
}

.bc-sep {
    color: rgba(255,255,255,0.3);
    font-size: 10px;
}

.bc-current {
    color: var(--white);
    font-weight: 600;
}

/* ========================================
   Staff Login Link
   ======================================== */
.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

.staff-login-link {
    color: rgba(255,255,255,0.4);
    font-size: var(--font-size-xs);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    transition: var(--transition);
}

.staff-login-link:hover {
    color: var(--gold);
}

.staff-login-link i {
    font-size: 11px;
}

/* ========================================
   Featured News Banner
   ======================================== */
.featured-news-banner {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
}

.featured-news-bg {
    position: absolute;
    inset: 0;
}

.featured-news-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.featured-news-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,54,93,0.95) 0%, rgba(26,54,93,0.4) 50%, rgba(0,0,0,0.1) 100%);
}

.featured-news-content {
    position: relative;
    z-index: 2;
    padding: var(--space-10);
    color: var(--white);
    max-width: 700px;
}

.featured-news-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold);
    color: var(--primary-dark);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: var(--font-size-xs);
    font-weight: 700;
    margin-bottom: var(--space-4);
}

.featured-news-content h2 {
    font-size: 1.8rem;
    margin-bottom: var(--space-3);
    line-height: 1.5;
}

.featured-news-content h2 a {
    color: var(--white);
    text-decoration: none;
}

.featured-news-content h2 a:hover {
    color: var(--gold);
}

.featured-news-content p {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: var(--space-2);
}

.featured-news-meta {
    display: flex;
    gap: var(--space-4);
    align-items: center;
    flex-wrap: wrap;
    font-size: var(--font-size-sm);
    color: rgba(255,255,255,0.7);
}

.featured-news-meta .news-card-category {
    background: rgba(255,255,255,0.15);
    color: var(--white);
}

/* ========================================
   News Category Filters
   ======================================== */
.news-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.news-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--gray-500);
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
    text-decoration: none;
}

.news-filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(var(--primary-rgb), 0.04);
}

.news-filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.news-filter-btn small {
    font-weight: 400;
    opacity: 0.7;
}

/* ========================================
   News Source Badge
   ======================================== */
.news-source-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
}

.source-facebook {
    background: #e7f0ff;
    color: #1877f2;
}

.source-manual {
    background: #ecfdf5;
    color: #065f46;
}

/* ========================================
   AOS Failsafe
   Ensures content is visible if AOS JS
   fails to load or initialize properly.
   AOS adds .aos-init when it processes
   elements — if missing, show them.
   ======================================== */
[data-aos]:not(.aos-init) {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* News Page Responsive */
@media (max-width: 768px) {
    .featured-news-banner { min-height: 300px; }
    .featured-news-content { padding: var(--space-6); }
    .featured-news-content h2 { font-size: 1.3rem; }
    .news-filters { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
}

/* ========================================
   Mobile Landscape Navigation Fix
   ======================================== */
@media (max-width: 768px) and (orientation: landscape) {
    .nav-menu {
        padding-top: 50px !important;
        padding-bottom: 20px !important;
        overflow-y: scroll !important;
        -webkit-overflow-scrolling: touch !important;
    }
    .nav-menu a,
    .page-home .nav-menu a,
    .page-home .main-nav .nav-menu a {
        padding: 9px 16px !important;
        font-size: 0.88rem !important;
    }
}
