/* ============================================
   SWAT POLICE - MASTER STYLESHEET
   Version: 2.0
   ============================================ */

/* ===== ROOT VARIABLES ===== */
:root {
    --primary: #0B1A33;
    --primary-light: #132b4a;
    --primary-dark: #060f1f;
    --accent: #D4A843;
    --accent-light: #e8c96e;
    --accent-dark: #b8922e;
    --white: #ffffff;
    --light-bg: #f5f7fb;
    --text-dark: #1a1a2e;
    --text-gray: #6b7a8f;
    --text-light: #8a9bb5;
    --shadow: 0 10px 40px rgba(11, 26, 51, 0.08);
    --shadow-hover: 0 20px 60px rgba(11, 26, 51, 0.15);
    --radius: 20px;
    --radius-sm: 12px;
    --radius-xs: 8px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    opacity: 1;
    transition: opacity 0.3s ease;
}

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

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

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

/* ============================================
   PAGE LOADER
   ============================================ */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 26, 51, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.page-loader.active {
    opacity: 1;
    visibility: visible;
}

.loader-spinner {
    width: 70px;
    height: 70px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary);
    animation: loaderPulse 1.5s infinite;
}

@keyframes loaderPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(212, 168, 67, 0.7);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 20px rgba(212, 168, 67, 0);
    }
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--primary);
    padding: 6px 0;
    border-bottom: 2px solid var(--accent);
    position: relative;
    z-index: 1001;
}

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

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

.top-left .flag-icon {
    height: 20px;
    border-radius: 3px;
}

.top-left .gov-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
}

.top-left .gov-text strong {
    color: var(--accent);
    font-weight: 600;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-right .social-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: var(--transition);
}

.top-right .social-btn:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
}

.top-right .datetime {
    color: rgba(255, 255, 255, 0.35);
    font-size: 10px;
    padding-left: 10px;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.top-right .datetime i {
    color: var(--accent);
    margin-right: 4px;
}

/* ============================================
   MAIN HEADER
   ============================================ */
.main-header {
    background: var(--white);
    padding: 12px 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

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

.brand-text h1 {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
    line-height: 1.2;
}

.brand-text h1 span {
    color: var(--accent);
}

.brand-text .tagline {
    font-size: 10px;
    color: var(--text-gray);
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.brand-text .tagline i {
    color: var(--accent);
    margin-right: 4px;
}

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

.emergency-btn {
    background: #dc3545;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    animation: emergency-pulse 2s infinite;
}

.emergency-btn:hover {
    transform: scale(1.05);
    background: #c0392b;
    color: #fff;
}

@keyframes emergency-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(220, 53, 69, 0); }
}

.menu-toggle {
    display: none;
    background: var(--primary);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-xs);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
}

.menu-toggle:hover {
    background: var(--accent);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    padding: 0;
    position: sticky;
    top: 74px;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    padding: 14px 20px;
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.3px;
    cursor: pointer;
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--accent);
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 3px 3px 0 0;
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
    width: 60%;
}

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

.nav-menu > li > a i {
    margin-right: 6px;
    font-size: 12px;
}

.badge-new {
    background: var(--accent);
    color: var(--primary);
    font-size: 7px;
    padding: 1px 8px;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 4px;
    animation: badge-pulse 1.5s infinite;
}

@keyframes badge-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* ============================================
   DROPDOWN MENU
   ============================================ */
.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 230px;
    padding: 10px 0;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    box-shadow: var(--shadow-hover);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
    border-top: 3px solid var(--accent);
    list-style: none;
    margin: 0;
}

/* Show dropdown on hover (desktop) */
.nav-menu .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Show dropdown when .open class added (mobile/click) */
.nav-menu .dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: block;
}

.nav-menu .dropdown-menu li a {
    padding: 10px 22px;
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
    border-left: 3px solid transparent;
    cursor: pointer;
}

.nav-menu .dropdown-menu li a:hover {
    background: var(--light-bg);
    color: var(--primary);
    border-left-color: var(--accent);
}

.nav-menu .dropdown-menu li a i {
    color: var(--accent);
    margin-right: 10px;
    width: 18px;
}

/* ============================================
   SCROLL TOP BUTTON
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: var(--accent);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 20px rgba(11, 26, 51, 0.3);
    transition: var(--transition);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    border: 2px solid var(--accent);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-3px) scale(1.05);
    background: var(--accent);
    color: var(--primary);
}

/* ============================================
   FLOATING SOCIAL ICONS
   ============================================ */
.floating-social {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.float-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 17px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.float-icon:hover {
    transform: scale(1.1) translateX(-3px);
    color: #fff;
}

.float-icon.fb { background: #1877f2; }
.float-icon.tw { background: #1da1f2; }
.float-icon.ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.float-icon.yt { background: #ff0000; }

/* ============================================
   MAIN CONTENT
   ============================================ */
.main-content {
    min-height: 60vh;
}

.page-content {
    animation: fadeInUp 0.5s ease;
}

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

/* ============================================
   PAGE HEADER (for inner pages)
   ============================================ */
.page-header {
    text-align: center;
    margin-bottom: 40px;
    padding-top: 50px;
}

.page-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.page-header h2 span {
    color: var(--accent);
}

.page-header p {
    color: var(--text-gray);
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-label {
    display: inline-block;
    background: rgba(212, 168, 67, 0.12);
    color: var(--accent);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
}

.section-header h2 span {
    color: var(--accent);
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    padding: 60px 0 50px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f7fb 100%);
    position: relative;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--accent);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-content h1 {
    font-size: 44px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.15;
    margin-bottom: 16px;
}

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

.hero-content p {
    color: var(--text-gray);
    font-size: 17px;
    max-width: 480px;
    margin-bottom: 28px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 168, 67, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: 2px solid var(--primary);
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(11, 26, 51, 0.2);
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat .stat-number {
    display: block;
    font-size: 30px;
    font-weight: 800;
    color: var(--primary);
}

.stat .stat-label {
    font-size: 13px;
    color: var(--text-gray);
}

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    text-align: center;
    max-width: 350px;
    width: 100%;
    border: 1px solid rgba(212, 168, 67, 0.15);
}

.hero-logo-wrapper {
    position: relative;
    display: inline-block;
}

.hero-logo {
    max-width: 200px;
    height: auto;
}

.hero-shield {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: var(--accent);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.4);
}

.hero-quote {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-quote i {
    color: var(--accent);
    font-size: 14px;
    opacity: 0.5;
}

.hero-quote p {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
    margin: 0;
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
    background: var(--primary);
    padding: 12px 0;
    border-bottom: 2px solid var(--accent);
}

.announcement-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.announcement-icon {
    color: var(--accent);
    font-size: 20px;
    animation: pulse-banner 1.5s infinite;
}

@keyframes pulse-banner {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.announcement-text {
    color: rgba(255, 255, 255, 0.85);
    flex: 1;
    font-size: 14px;
}

.announcement-text strong {
    color: var(--accent);
}

.announcement-btn {
    background: var(--accent);
    color: var(--primary);
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    border: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.announcement-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.4);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: 60px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border-bottom: 4px solid transparent;
    cursor: pointer;
    display: block;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--accent);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 168, 67, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
    color: var(--accent);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--accent);
    color: var(--primary);
}

.service-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary);
}

.service-card p {
    font-size: 13px;
    color: var(--text-gray);
    margin: 0;
}

/* ============================================
   DPO SECTION
   ============================================ */
.dpo-section {
    padding: 60px 0;
    background: var(--white);
}

.dpo-card {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px;
    background: var(--light-bg);
    padding: 30px;
    border-radius: var(--radius);
    border-left: 4px solid var(--accent);
}

.dpo-image {
    position: relative;
}

.dpo-image img {
    width: 100%;
    border-radius: var(--radius-sm);
    border: 3px solid var(--accent);
    padding: 3px;
}

.dpo-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent);
    color: var(--primary);
    padding: 2px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
}

.dpo-message h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2px;
}

.dpo-message .dpo-title {
    color: var(--text-gray);
    font-size: 14px;
    display: block;
    margin-bottom: 12px;
}

.dpo-message p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.read-more:hover {
    gap: 15px;
    color: var(--primary);
}

/* Full DPO Card (for DPO page) */
.dpo-full-card {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.dpo-full-image {
    position: relative;
}

.dpo-full-image img {
    width: 100%;
    border-radius: var(--radius-sm);
    border: 3px solid var(--accent);
    padding: 3px;
}

.dpo-full-message h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.dpo-full-message .dpo-title {
    color: var(--text-gray);
    font-size: 15px;
    display: block;
    margin-bottom: 20px;
}

.dpo-content {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.9;
}

/* ============================================
   EMERGENCY SECTION
   ============================================ */
.emergency-section {
    padding: 50px 0;
}

.emergency-card {
    background: var(--primary);
    padding: 30px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 25px;
    height: 100%;
}

.emergency-icon {
    background: var(--accent);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    flex-shrink: 0;
}

.pulse {
    animation: phone-pulse 1.5s infinite;
}

@keyframes phone-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.emergency-info h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.emergency-number {
    color: var(--accent);
    font-size: 26px;
    font-weight: 800;
    display: inline-block;
}

.emergency-number:hover {
    color: #ffd700;
}

.emergency-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    display: block;
}

.raabta-card {
    background: var(--white);
    padding: 25px 30px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow);
    height: 100%;
}

.raabta-info {
    flex: 1;
}

.raabta-info h4 {
    font-weight: 700;
    color: var(--primary);
    font-size: 20px;
}

.raabta-info h4 i {
    color: var(--accent);
}

.raabta-info p {
    color: var(--text-gray);
    margin-bottom: 12px;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--accent);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    border: 2px solid var(--accent);
}

.btn-download:hover {
    background: var(--accent);
    color: var(--primary);
}

.raabta-image {
    max-width: 120px;
}

.raabta-image img {
    border-radius: var(--radius-sm);
}

/* ============================================
   FACEBOOK SECTION
   ============================================ */
.facebook-section {
    padding: 40px 0 60px;
}

.facebook-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.facebook-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.facebook-header i {
    color: #1877f2;
    font-size: 26px;
}

.facebook-header span {
    font-weight: 700;
    font-size: 16px;
    color: var(--primary);
}

.facebook-header .live-badge {
    background: #dc3545;
    color: #fff;
    font-size: 9px;
    padding: 2px 12px;
    border-radius: 50px;
    margin-left: auto;
    animation: live-pulse 1s infinite;
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.facebook-feed {
    max-height: 400px;
    overflow-y: auto;
}

/* ============================================
   CONTENT CARDS (for inner pages)
   ============================================ */
.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.content-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--accent);
}

.content-card.full-width {
    grid-column: 1 / -1;
}

.content-card.text-center {
    text-align: center;
}

.content-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 168, 67, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent);
    margin-bottom: 15px;
}

.content-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.content-card h3 i {
    color: var(--accent);
    margin-right: 8px;
}

.content-card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.8;
}

/* Info Stats */
.info-stats {
    display: flex;
    gap: 40px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.info-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.info-stat i {
    color: var(--accent);
    font-size: 24px;
    margin-bottom: 5px;
}

.info-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
}

.info-label {
    font-size: 12px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   PRESS LIST
   ============================================ */
.press-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.press-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.press-item:hover {
    background: var(--white);
    border-left-color: var(--accent);
    box-shadow: var(--shadow);
}

.press-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
    padding: 10px;
    background: var(--primary);
    border-radius: var(--radius-xs);
    color: #fff;
}

.date-day {
    font-size: 22px;
    font-weight: 800;
    color: var(--accent);
}

.date-month {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.press-content {
    flex: 1;
}

.press-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.press-content p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

.press-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.press-link:hover {
    background: var(--primary);
    color: var(--accent);
    transform: scale(1.1);
}

/* ============================================
   DOWNLOADS GRID
   ============================================ */
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.download-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.download-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}

.download-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 168, 67, 0.1);
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--accent);
    flex-shrink: 0;
}

.download-info {
    flex: 1;
}

.download-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 3px;
}

.download-info span {
    font-size: 12px;
    color: var(--text-gray);
}

.download-arrow {
    color: var(--accent);
    font-size: 18px;
}

/* ============================================
   CONTACT GRID
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.contact-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-top-color: var(--accent);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 168, 67, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--accent);
    margin: 0 auto 15px;
}

.contact-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.contact-card a {
    color: var(--accent);
    font-weight: 600;
}

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

/* ============================================
   FORMER DPOS
   ============================================ */
.former-dpos-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.former-dpo-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--light-bg);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--accent);
}

.former-dpo-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent);
    flex-shrink: 0;
}

.former-dpo-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.former-dpo-info p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

/* ============================================
   ORGANOGRAM & MERIT ICONS
   ============================================ */
.organogram-icon,
.merit-icon {
    font-size: 60px;
    color: var(--accent);
    margin-bottom: 20px;
}

/* ============================================
   MODALS
   ============================================ */
.glass-modal {
    border-radius: var(--radius);
    border: none;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-hover);
}

.glass-modal .modal-header {
    background: var(--primary);
    border-radius: var(--radius) var(--radius) 0 0;
    border-bottom: 3px solid var(--accent);
}

.glass-modal .modal-title {
    color: #fff;
    font-weight: 700;
}

.glass-modal .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.recruit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.recruit-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--light-bg);
    border-radius: var(--radius-sm);
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    border: 2px solid transparent;
    gap: 10px;
}

.recruit-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.recruit-card .recruit-icon {
    font-size: 28px;
    color: var(--accent);
}

.recruit-card.highlight {
    background: var(--accent);
    color: var(--primary);
}

.recruit-card.highlight .recruit-icon {
    color: var(--primary);
}

.recruit-card.highlight:hover {
    background: var(--accent-dark);
}

.recruit-image img {
    width: 100%;
    border-radius: var(--radius-sm);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--primary);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 20px;
    border-top: 4px solid var(--accent);
}

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

.footer-widget {
    margin-bottom: 10px;
}

.footer-widget h4 {
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 5px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.footer-widget p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
}

.footer-widget ul li {
    margin-bottom: 8px;
}

.footer-widget ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.footer-widget ul li a i {
    font-size: 10px;
    color: var(--accent);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 10px;
}

.contact-info li i {
    color: var(--accent);
    width: 18px;
    margin-top: 4px;
}

.contact-info li a {
    color: rgba(255, 255, 255, 0.6);
}

.contact-info li a:hover {
    color: var(--accent);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
    font-size: 15px;
}

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

.partner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.partner-grid a {
    background: #fff;
    border-radius: var(--radius-xs);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    min-height: 50px;
}

.partner-grid a:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(212, 168, 67, 0.3);
}

.partner-grid a img {
    max-width: 100%;
    max-height: 35px;
    object-fit: contain;
}

.footer-bottom {
    padding: 18px 0;
}

.footer-bottom span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

.footer-credit strong {
    color: var(--accent);
}

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

/* Tablets & Small Laptops */
@media (max-width: 991px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 10px 0;
        background: var(--white);
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: var(--shadow-hover);
        border-top: 2px solid var(--accent);
        z-index: 998;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu > li > a {
        padding: 12px 20px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }

    .nav-menu > li > a::after {
        display: none;
    }

    /* Mobile dropdown */
    .nav-menu .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        transform: none;
        padding: 0;
        border-top: none;
        background: var(--light-bg);
        display: none;
    }

    .nav-menu .dropdown.open .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .nav-menu .dropdown-menu li a {
        padding: 10px 35px;
        border-left: none;
    }

    .nav-menu .dropdown-menu li a:hover {
        padding-left: 40px;
    }

    .top-right .datetime {
        display: none;
    }

    .brand .logo {
        height: 40px;
    }

    .brand-text h1 {
        font-size: 17px;
    }

    .header-actions .emergency-btn span {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-card {
        max-width: 280px;
        margin: 0 auto;
    }

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

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

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

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

    .dpo-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .dpo-image {
        max-width: 200px;
        margin: 0 auto;
    }

    .dpo-badge {
        right: 10px;
    }

    .dpo-full-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .dpo-full-image {
        max-width: 220px;
        margin: 0 auto;
    }

    .emergency-card {
        flex-direction: column;
        text-align: center;
    }

    .raabta-card {
        flex-direction: column;
        text-align: center;
    }

    .raabta-image {
        max-width: 100px;
    }
}

/* Mobile Phones */
@media (max-width: 767px) {
    .hero-section {
        padding: 40px 0 30px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

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

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

    .section-header h2,
    .page-header h2 {
        font-size: 26px;
    }

    .emergency-number {
        font-size: 22px;
    }

    .announcement-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .announcement-btn {
        width: 100%;
        justify-content: center;
    }

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

    .stat .stat-number {
        font-size: 24px;
    }

    .footer-widget {
        margin-bottom: 25px;
    }

    .partner-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .floating-social {
        right: 10px;
        bottom: 80px;
    }

    .float-icon {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .info-stats {
        gap: 20px;
    }

    .press-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .brand .logo {
        height: 35px;
    }

    .brand-text h1 {
        font-size: 15px;
    }

    .brand-text .tagline {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .service-card {
        padding: 20px 12px;
    }

    .service-card h3 {
        font-size: 13px;
    }

    .service-card p {
        font-size: 11px;
    }

    .service-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .hero-content h1 {
        font-size: 24px;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .dpo-card {
        padding: 20px;
    }

    .dpo-full-card {
        padding: 25px;
    }

    .emergency-card,
    .raabta-card {
        padding: 20px;
    }

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

    .top-left .gov-text {
        font-size: 9px;
    }

    .top-left .flag-icon {
        height: 16px;
    }

    .former-dpo-item {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   DISTRICT OVERVIEW PAGE STYLES
   ============================================ */

/* ===== PAGE HERO ===== */
.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid var(--accent);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.page-hero-content .section-label {
    background: rgba(212, 168, 67, 0.2);
    color: var(--accent);
}

.page-hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin: 12px 0 15px;
    line-height: 1.2;
}

.page-hero-content h1 span {
    color: var(--accent);
}

.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.breadcrumb-nav a:hover {
    color: var(--accent);
}

.breadcrumb-nav a i {
    color: var(--accent);
    font-size: 12px;
}

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

.breadcrumb-current {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
}

/* ===== DISTRICT CONTENT ===== */
.district-content-section {
    padding: 60px 0;
}

/* ===== INTRO CARD ===== */
.district-intro {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    border-left: 5px solid var(--accent);
}

.intro-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.intro-text h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
    line-height: 1.3;
}

.intro-text h2 span {
    color: var(--accent);
}

.intro-text p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 12px;
    text-align: justify;
}

.intro-text strong {
    color: var(--primary);
    font-weight: 700;
}

/* Map Preview */
.map-preview-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    cursor: pointer;
    border: 3px solid var(--accent);
    transition: var(--transition);
    background: var(--light-bg);
}

.map-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(212, 168, 67, 0.25);
}

.map-img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.map-preview-card:hover .map-img {
    transform: scale(1.03);
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(11, 26, 51, 0.9), transparent);
    color: #fff;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.map-overlay i {
    font-size: 22px;
    color: var(--accent);
}

.map-overlay span {
    font-size: 12px;
    font-weight: 500;
}

/* ===== QUICK FACTS ===== */
.quick-facts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.fact-card {
    background: var(--white);
    padding: 25px 20px;
    border-radius: var(--radius-sm);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.fact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--accent);
}

.fact-icon {
    width: 55px;
    height: 55px;
    background: rgba(212, 168, 67, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--accent);
    margin: 0 auto 12px;
    transition: var(--transition);
}

.fact-card:hover .fact-icon {
    background: var(--accent);
    color: var(--primary);
}

.fact-value {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 2px;
}

.fact-label {
    display: block;
    font-size: 12px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== INFO SECTION CARDS ===== */
.info-section-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 25px;
    transition: var(--transition);
}

.info-section-card:hover {
    box-shadow: var(--shadow-hover);
}

.info-section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-bg);
}

.info-section-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--accent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.info-section-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.info-section-body p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 12px;
    text-align: justify;
}

.info-section-body p:last-child {
    margin-bottom: 0;
}

.info-section-body strong {
    color: var(--primary);
    font-weight: 700;
}

.info-section-body em {
    color: var(--accent);
    font-style: italic;
}

/* Route Info */
.route-info {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
}

.route-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--light-bg);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
    border: 1px solid rgba(212, 168, 67, 0.2);
}

.route-item i {
    color: var(--accent);
}

/* Info Link */
.info-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--accent);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 10px;
    transition: var(--transition);
}

.info-link:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Two Column Grid */
.two-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 12px 15px;
    background: var(--light-bg);
    border-radius: var(--radius-xs);
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    border-left: 3px solid var(--accent);
    transition: var(--transition);
}

.feature-list li:hover {
    background: #eef1f7;
    transform: translateX(5px);
}

.feature-list li strong {
    color: var(--primary);
    font-weight: 700;
}

/* Three Column Grid */
.three-column-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 25px;
}

.small-info-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--accent);
    height: 100%;
}

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

.small-card-icon {
    width: 55px;
    height: 55px;
    background: rgba(212, 168, 67, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--accent);
    margin: 0 auto 15px;
}

.small-info-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.small-info-card p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* ===== HERITAGE SECTION ===== */
.heritage-section {
    padding: 30px 0;
    margin-bottom: 20px;
}

.heritage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.heritage-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.heritage-image {
    height: 180px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

.heritage-placeholder {
    font-size: 60px;
    color: var(--accent);
    opacity: 0.5;
}

.heritage-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.heritage-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.heritage-content h4 i {
    color: var(--accent);
    font-size: 18px;
}

.heritage-content p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
    flex: 1;
    text-align: justify;
}

.heritage-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

.heritage-link:hover {
    color: var(--primary);
    gap: 12px;
}

/* ===== AREAS SECTION ===== */
.areas-section {
    padding: 30px 0;
}

.area-group {
    margin-bottom: 50px;
}

.area-group:last-child {
    margin-bottom: 0;
}

.area-group-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
    padding: 20px 25px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-sm);
    border-left: 5px solid var(--accent);
    position: relative;
    overflow: hidden;
}

.area-group-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.area-group-icon {
    width: 55px;
    height: 55px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.area-group-header > div:last-child {
    position: relative;
    z-index: 1;
}

.area-group-label {
    display: block;
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2px;
}

.area-group-header h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

/* Places Grid */
.places-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.place-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid transparent;
    display: flex;
    flex-direction: column;
}

.place-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-left-color: var(--accent);
}

.place-card.lake-card {
    background: linear-gradient(135deg, #e8f4f8 0%, #f5f7fb 100%);
    border-left-color: #4a9ec4;
}

.place-card.lake-card:hover {
    border-left-color: #2d7a9e;
}

.place-icon {
    width: 45px;
    height: 45px;
    background: rgba(212, 168, 67, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent);
    margin-bottom: 15px;
    transition: var(--transition);
}

.place-card:hover .place-icon {
    background: var(--accent);
    color: var(--primary);
    transform: scale(1.1);
}

.place-card.lake-card .place-icon {
    background: rgba(74, 158, 196, 0.15);
    color: #2d7a9e;
}

.place-card.lake-card:hover .place-icon {
    background: #2d7a9e;
    color: #fff;
}

.place-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.place-card p {
    color: var(--text-gray);
    font-size: 13.5px;
    line-height: 1.75;
    margin-bottom: 15px;
    flex: 1;
    text-align: justify;
}

.place-card p strong {
    color: var(--primary);
    font-weight: 700;
}

.place-card p em {
    color: var(--accent);
    font-style: italic;
}

.place-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    align-self: flex-start;
}

.place-link:hover {
    color: var(--primary);
    gap: 10px;
}

.place-link i {
    font-size: 10px;
}

/* ============================================
   RESPONSIVE - DISTRICT PAGE
   ============================================ */
@media (max-width: 991px) {
    .page-hero-content h1 {
        font-size: 32px;
    }

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

    .two-column-grid {
        grid-template-columns: 1fr;
    }

    .three-column-grid {
        grid-template-columns: 1fr;
    }

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

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

    .district-intro {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .page-hero {
        padding: 40px 0 30px;
    }

    .page-hero-content h1 {
        font-size: 26px;
    }

    .breadcrumb-nav {
        font-size: 12px;
        padding: 6px 15px;
    }

    .breadcrumb-nav a span {
        display: none;
    }

    .district-content-section {
        padding: 40px 0;
    }

    .district-intro {
        padding: 25px;
    }

    .intro-text h2 {
        font-size: 22px;
    }

    .intro-text p {
        font-size: 14px;
    }

    .quick-facts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .fact-card {
        padding: 18px 12px;
    }

    .fact-value {
        font-size: 16px;
    }

    .fact-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .info-section-card {
        padding: 20px;
    }

    .info-section-header h3 {
        font-size: 17px;
    }

    .info-section-icon {
        width: 42px;
        height: 42px;
        font-size: 17px;
    }

    .info-section-body p {
        font-size: 14px;
    }

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

    .place-card {
        padding: 20px;
    }

    .area-group-header {
        padding: 15px 18px;
        gap: 12px;
    }

    .area-group-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .area-group-header h3 {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .page-hero-content h1 {
        font-size: 22px;
    }

    .quick-facts-grid {
        grid-template-columns: 1fr 1fr;
    }

    .fact-card {
        padding: 15px 10px;
    }

    .fact-value {
        font-size: 14px;
    }

    .fact-label {
        font-size: 10px;
    }

    .fact-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 8px;
    }

    .district-intro {
        padding: 20px;
    }

    .intro-text h2 {
        font-size: 18px;
    }

    .map-preview-card {
        margin-top: 15px;
    }

    .route-info {
        flex-direction: column;
    }

    .route-item {
        width: 100%;
        justify-content: flex-start;
    }

    .area-group-header {
        flex-direction: column;
        text-align: center;
    }
}



/* ============================================
   FORMER DPOS PAGE STYLES
   ============================================ */

/* ===== OURDPOS CONTENT SECTION ===== */
.ourdpos-content-section {
    padding: 60px 0;
    background: var(--light-bg);
}

/* ===== OURDPOS INTRO ===== */
.ourdpos-intro {
    display: flex;
    align-items: center;
    gap: 25px;
    background: var(--white);
    padding: 35px 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    border-left: 5px solid var(--accent);
    position: relative;
    overflow: hidden;
}

.ourdpos-intro::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ourdpos-intro-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(11, 26, 51, 0.15);
    position: relative;
    z-index: 1;
}

.ourdpos-intro-text {
    position: relative;
    z-index: 1;
}

.ourdpos-intro-text h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.ourdpos-intro-text h2 span {
    color: var(--accent);
}

.ourdpos-intro-text p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

/* ===== GALLERY SECTION ===== */
.ourdpos-gallery-section {
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px;
    box-shadow: var(--shadow);
}

/* Gallery Header */
.gallery-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 25px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--light-bg);
    flex-wrap: wrap;
    gap: 15px;
}

.gallery-header-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.gallery-icon {
    width: 55px;
    height: 55px;
    background: rgba(212, 168, 67, 0.12);
    color: var(--accent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.gallery-label {
    display: block;
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2px;
}

.gallery-header-left h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.gallery-count {
    background: var(--primary);
    color: var(--accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ===== DPO GALLERY GRID ===== */
.ourdpos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.dpo-gallery-card {
    background: var(--white);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(11, 26, 51, 0.08);
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
}

.dpo-gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent);
}

/* Image Wrapper */
.dpo-gallery-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    aspect-ratio: 3 / 4;
}

.dpo-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.dpo-gallery-card:hover .dpo-gallery-image img {
    transform: scale(1.08);
}

/* Overlay */
.dpo-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(11, 26, 51, 0.9) 0%, rgba(11, 26, 51, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: #fff;
    gap: 10px;
}

.dpo-gallery-card:hover .dpo-gallery-overlay {
    opacity: 1;
}

.overlay-icon {
    width: 55px;
    height: 55px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transform: scale(0.8);
    transition: var(--transition);
}

.dpo-gallery-card:hover .overlay-icon {
    transform: scale(1);
}

.dpo-gallery-overlay span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Info Section */
.dpo-gallery-info {
    padding: 18px;
    text-align: center;
    background: var(--white);
}

.dpo-gallery-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(212, 168, 67, 0.12);
    color: var(--accent);
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.dpo-gallery-badge i {
    font-size: 9px;
}

.dpo-gallery-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 3px;
    line-height: 1.3;
}

.dpo-gallery-info > span {
    display: block;
    font-size: 12px;
    color: var(--text-gray);
}

/* Gallery Hint */
.gallery-hint {
    text-align: center;
    margin-top: 30px;
    padding: 15px;
    background: var(--light-bg);
    border-radius: var(--radius-sm);
    color: var(--text-gray);
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.gallery-hint i {
    color: var(--accent);
    font-size: 15px;
}

/* ===== EMPTY STATE ===== */
.empty-state {
    text-align: center;
    padding: 60px 30px;
    background: var(--light-bg);
    border-radius: var(--radius);
    border: 2px dashed rgba(212, 168, 67, 0.3);
}

.empty-icon {
    width: 90px;
    height: 90px;
    background: rgba(212, 168, 67, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    margin: 0 auto 20px;
}

.empty-state h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.empty-state p {
    color: var(--text-gray);
    font-size: 14px;
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   DPO GALLERY MODAL
   ============================================ */
.dpo-gallery-modal {
    border-radius: var(--radius);
    border: none;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(11, 26, 51, 0.4);
}

.dpo-gallery-modal .modal-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 20px 25px;
    border: none;
    border-bottom: 3px solid var(--accent);
}

.dpo-gallery-modal .modal-title {
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.dpo-gallery-modal .modal-title i {
    color: var(--accent);
    font-size: 20px;
}

.dpo-gallery-modal .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: var(--transition);
}

.dpo-gallery-modal .btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.dpo-gallery-modal .modal-body {
    padding: 30px;
    background: var(--light-bg);
}

/* Gallery Image Wrapper */
.gallery-modal-image-wrapper {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 15px;
    box-shadow: 0 10px 40px rgba(11, 26, 51, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    border: 3px solid var(--accent);
}

.gallery-modal-image {
    max-width: 100%;
    max-height: 500px;
    width: auto;
    height: auto;
    display: block;
    border-radius: var(--radius-xs);
    object-fit: contain;
    animation: galleryFadeIn 0.4s ease;
}

@keyframes galleryFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Gallery Caption */
.gallery-modal-caption {
    margin-top: 20px;
    padding: 18px 25px;
    background: var(--white);
    border-radius: var(--radius-sm);
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.7;
    text-align: center;
    border-left: 4px solid var(--accent);
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-caption:empty {
    display: none;
}

/* Modal Footer */
.dpo-gallery-modal .modal-footer {
    background: var(--white);
    border: none;
    padding: 20px 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.gallery-nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 15px;
}

.gallery-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--primary);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
}

.gallery-nav-btn:hover:not(.disabled) {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 168, 67, 0.3);
}

.gallery-nav-btn.disabled,
.gallery-nav-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    background: var(--text-light);
    border-color: var(--text-light);
}

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

.gallery-counter {
    background: var(--light-bg);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    border: 1px solid rgba(212, 168, 67, 0.2);
    white-space: nowrap;
}

.gallery-counter span {
    color: var(--accent);
    font-weight: 800;
}

/* ============================================
   RESPONSIVE - FORMER DPOS PAGE
   ============================================ */
@media (max-width: 1199px) {
    .ourdpos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .ourdpos-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .ourdpos-intro {
        padding: 25px 30px;
    }

    .ourdpos-intro-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
    }

    .ourdpos-intro-text h2 {
        font-size: 22px;
    }

    .ourdpos-gallery-section {
        padding: 25px;
    }
}

@media (max-width: 767px) {
    .ourdpos-content-section {
        padding: 40px 0;
    }

    .ourdpos-intro {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        gap: 15px;
    }

    .ourdpos-intro-text p {
        font-size: 14px;
    }

    .ourdpos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .gallery-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .gallery-count {
        font-size: 11px;
        padding: 6px 15px;
    }

    .gallery-header-left h3 {
        font-size: 17px;
    }

    .gallery-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .dpo-gallery-info {
        padding: 14px 10px;
    }

    .dpo-gallery-info h4 {
        font-size: 12px;
    }

    .dpo-gallery-badge {
        font-size: 9px;
        padding: 2px 9px;
    }

    .gallery-modal-image-wrapper {
        min-height: 280px;
        padding: 10px;
    }

    .dpo-gallery-modal .modal-body {
        padding: 20px;
    }

    .dpo-gallery-modal .modal-title {
        font-size: 15px;
    }

    .gallery-nav-btn {
        padding: 10px 16px;
        font-size: 12px;
    }

    .gallery-nav-btn span {
        display: none;
    }

    .gallery-counter {
        padding: 8px 16px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .ourdpos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .dpo-gallery-image {
        aspect-ratio: 1 / 1;
    }

    .dpo-gallery-info {
        padding: 12px 8px;
    }

    .dpo-gallery-info h4 {
        font-size: 11px;
    }

    .dpo-gallery-badge {
        font-size: 8px;
        padding: 2px 8px;
    }

    .overlay-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .dpo-gallery-overlay span {
        font-size: 10px;
    }

    .gallery-modal-image-wrapper {
        min-height: 220px;
    }

    .gallery-modal-caption {
        padding: 12px 18px;
        font-size: 13px;
    }
}

/* ============================================
   PUBLIC SERVICES PAGE STYLES
   ============================================ */

/* ===== SERVICES CONTENT SECTION ===== */
.services-content-section {
    padding: 60px 0;
    background: var(--light-bg);
}

/* ===== SERVICES INTRO ===== */
.services-intro {
    display: flex;
    align-items: center;
    gap: 25px;
    background: var(--white);
    padding: 35px 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    border-left: 5px solid var(--accent);
    position: relative;
    overflow: hidden;
}

.services-intro::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-intro-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(11, 26, 51, 0.15);
    position: relative;
    z-index: 1;
}

.services-intro-text {
    position: relative;
    z-index: 1;
}

.services-intro-text h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.services-intro-text h2 span {
    color: var(--accent);
}

.services-intro-text p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

/* ===== PUBLIC SERVICES GRID ===== */
.public-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* ===== PUBLIC SERVICE CARD ===== */
.public-service-card {
    background: var(--white);
    padding: 35px 22px 28px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.public-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(135deg, rgba(212, 168, 67, 0.06) 0%, rgba(11, 26, 51, 0.03) 100%);
    transition: height 0.4s ease;
}

.public-service-card:hover::before {
    height: 100%;
}

.public-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--accent);
}

/* Icon */
.public-service-icon {
    width: 72px;
    height: 72px;
    background: rgba(212, 168, 67, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: var(--accent);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.public-service-card:hover .public-service-icon {
    background: var(--accent);
    color: var(--primary);
    transform: scale(1.08) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(212, 168, 67, 0.35);
}

/* Special SOS Icon */
.public-service-icon.sos {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    animation: sosPulse 2s infinite;
}

.public-service-card:hover .public-service-icon.sos {
    background: #dc3545;
    color: #fff;
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.35);
}

@keyframes sosPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.3); }
    50% { box-shadow: 0 0 0 12px rgba(220, 53, 69, 0); }
}

/* Special FIR Icon */
.public-service-icon.fir {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.public-service-card:hover .public-service-icon.fir {
    background: #28a745;
    color: #fff;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.35);
}

/* Title */
.public-service-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.4;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.public-service-card:hover h3 {
    color: var(--accent);
}

/* Tag */
.public-service-tag {
    display: inline-block;
    background: var(--light-bg);
    color: var(--text-gray);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(212, 168, 67, 0.15);
}

.public-service-card:hover .public-service-tag {
    background: var(--accent);
    color: var(--primary);
    border-color: var(--accent);
}

/* ============================================
   RESPONSIVE - PUBLIC SERVICES PAGE
   ============================================ */
@media (max-width: 1199px) {
    .public-services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
    }
}

@media (max-width: 991px) {
    .public-services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

    .services-intro {
        padding: 28px 30px;
    }

    .services-intro-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
    }

    .services-intro-text h2 {
        font-size: 22px;
    }

    .public-service-card {
        padding: 28px 18px 22px;
    }

    .public-service-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 15px;
    }

    .public-service-card h3 {
        font-size: 14px;
        min-height: 38px;
    }
}

@media (max-width: 767px) {
    .services-content-section {
        padding: 40px 0;
    }

    .services-intro {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        gap: 15px;
    }

    .services-intro-text p {
        font-size: 14px;
    }

    .services-intro-text h2 {
        font-size: 20px;
    }

    .services-intro-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

    .public-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .public-service-card {
        padding: 22px 15px 18px;
        border-radius: var(--radius-sm);
    }

    .public-service-icon {
        width: 52px;
        height: 52px;
        font-size: 21px;
        border-radius: 14px;
        margin-bottom: 12px;
    }

    .public-service-card h3 {
        font-size: 13px;
        min-height: 34px;
        margin-bottom: 8px;
    }

    .public-service-tag {
        font-size: 9px;
        padding: 3px 10px;
    }
}

@media (max-width: 576px) {
    .public-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .public-service-card {
        padding: 18px 10px 15px;
    }

    .public-service-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
        border-radius: 12px;
        margin-bottom: 10px;
    }

    .public-service-card h3 {
        font-size: 11px;
        min-height: 30px;
        line-height: 1.3;
    }

    .public-service-tag {
        font-size: 8px;
        padding: 2px 8px;
        letter-spacing: 0.5px;
    }
}


/* ============================================
   PRESS RELEASE PAGE STYLES
   ============================================ */

/* ===== PRESS CONTENT SECTION ===== */
.press-content-section {
    padding: 60px 0;
    background: var(--light-bg);
}

/* ===== PRESS INTRO ===== */
.press-intro {
    display: flex;
    align-items: center;
    gap: 25px;
    background: var(--white);
    padding: 35px 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    border-left: 5px solid var(--accent);
    position: relative;
    overflow: hidden;
}

.press-intro::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.press-intro-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(11, 26, 51, 0.15);
    position: relative;
    z-index: 1;
}

.press-intro-text {
    position: relative;
    z-index: 1;
}

.press-intro-text h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.press-intro-text h2 span {
    color: var(--accent);
}

.press-intro-text p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

/* ===== PRESS TABLE WRAPPER ===== */
.press-table-wrapper {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.press-table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--light-bg);
    flex-wrap: wrap;
    gap: 15px;
}

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

.press-header-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 168, 67, 0.12);
    color: var(--accent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.press-header-label {
    display: block;
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2px;
}

.press-header-left h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.press-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.press-header-badge i {
    font-size: 10px;
    animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ===== PRESS TABLE ===== */
.press-table-responsive {
    overflow-x: auto;
    margin-bottom: 20px;
    border-radius: var(--radius-sm);
}

.press-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 12px;
    margin: 0;
}

.press-table thead th {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    padding: 14px 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    text-align: center;
}

.press-table thead th:first-child {
    border-radius: var(--radius-xs) 0 0 var(--radius-xs);
}

.press-table thead th:last-child {
    border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
}

.press-table thead th i {
    margin-right: 5px;
    color: var(--accent);
}

/* Press Row */
.press-row {
    transition: var(--transition);
}

.press-row td {
    background: var(--light-bg);
    border: none;
    padding: 20px 15px;
    vertical-align: middle;
}

.press-row td:first-child {
    border-radius: var(--radius-xs) 0 0 var(--radius-xs);
}

.press-row td:last-child {
    border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
}

.press-row:hover td {
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.press-row:hover td:first-child {
    box-shadow: -4px 4px 15px rgba(0, 0, 0, 0.05);
}

.press-row:hover td:last-child {
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.05);
}

/* View Cell */
.press-cell-view {
    text-align: center;
}

.view-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--primary);
    border: none;
    padding: 12px 18px;
    border-radius: var(--radius-xs);
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(212, 168, 67, 0.3);
    min-width: 80px;
}

.view-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(212, 168, 67, 0.5);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--accent);
}

.view-btn i {
    font-size: 18px;
}

/* Content Cell */
.press-cell-content {
    padding: 20px 20px !important;
}

.press-title-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.press-title-icon {
    width: 45px;
    height: 45px;
    background: rgba(212, 168, 67, 0.12);
    color: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: var(--transition);
}

.press-row:hover .press-title-icon {
    background: var(--accent);
    color: var(--primary);
    transform: rotate(-5deg) scale(1.08);
}

.press-title-content {
    flex: 1;
    min-width: 0;
}

.press-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 10px 0;
    line-height: 1.5;
    text-align: right;
    direction: rtl;
}

.press-label-ur {
    color: var(--accent);
    font-weight: 700;
    font-family: 'Noto Nastaliq Urdu Draft', serif;
    margin-left: 5px;
}

.press-detail {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
    text-align: right;
    direction: rtl;
}

.press-detail-text {
    color: var(--text-gray);
}

/* More/Less Link */
.morelink {
    color: var(--accent);
    font-weight: 700;
    text-decoration: none;
    margin-right: 5px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    direction: ltr;
}

.morelink:hover {
    color: var(--primary);
    gap: 8px;
}

.morelink i {
    font-size: 10px;
}

.moreellipses {
    color: var(--text-gray);
}

/* Meta Info */
.press-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.press-date-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(11, 26, 51, 0.06);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.press-date-badge i {
    color: var(--accent);
    font-size: 11px;
}

/* Sno Cell */
.press-cell-sno {
    text-align: center;
}

.sno-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: var(--primary);
    color: var(--accent);
    border-radius: 50%;
    font-weight: 800;
    font-size: 14px;
    transition: var(--transition);
}

.press-row:hover .sno-badge {
    background: var(--accent);
    color: var(--primary);
    transform: scale(1.1);
}

/* ===== ARCHIVE BUTTON ===== */
.press-archive-wrapper {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid var(--light-bg);
}

.press-archive-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(11, 26, 51, 0.15);
    position: relative;
    overflow: hidden;
}

.press-archive-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.3), transparent);
    transition: left 0.6s;
}

.press-archive-btn:hover::before {
    left: 100%;
}

.press-archive-btn:hover {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 168, 67, 0.4);
}

.press-archive-btn i:first-child {
    color: var(--accent);
    transition: var(--transition);
}

.press-archive-btn:hover i:first-child {
    color: var(--primary);
}

.press-archive-btn i:last-child {
    font-size: 12px;
    transition: var(--transition);
}

.press-archive-btn:hover i:last-child {
    transform: translateX(5px);
}

/* ===== EMPTY STATE ===== */
.press-empty-state {
    text-align: center;
    padding: 60px 30px;
    background: var(--light-bg);
    border-radius: var(--radius);
    border: 2px dashed rgba(212, 168, 67, 0.3);
}

.press-empty-icon {
    width: 90px;
    height: 90px;
    background: rgba(212, 168, 67, 0.1);
    color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    margin: 0 auto 20px;
}

.press-empty-state h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.press-empty-state p {
    color: var(--text-gray);
    font-size: 14px;
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== LOADING & ERROR STATES ===== */
.loading-state,
.error-state {
    text-align: center;
    padding: 60px 30px;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--light-bg);
    border-top-color: var(--accent);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spinLoader 1s linear infinite;
}

@keyframes spinLoader {
    to { transform: rotate(360deg); }
}

.loading-state p,
.error-state p {
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
}

.error-state i {
    font-size: 50px;
    color: #dc3545;
    margin-bottom: 15px;
    display: block;
}

/* ============================================
   RESPONSIVE - PRESS RELEASE PAGE
   ============================================ */
@media (max-width: 991px) {
    .press-intro {
        padding: 28px 30px;
    }

    .press-intro-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
    }

    .press-intro-text h2 {
        font-size: 22px;
    }

    .press-table-wrapper {
        padding: 20px;
    }

    .press-title {
        font-size: 15px;
    }

    .press-detail {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .press-content-section {
        padding: 40px 0;
    }

    .press-intro {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        gap: 15px;
    }

    .press-intro-text p {
        font-size: 14px;
    }

    .press-intro-text h2 {
        font-size: 20px;
    }

    .press-intro-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

    .press-table-wrapper {
        padding: 15px;
    }

    .press-table-header {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Convert table to cards on mobile */
    .press-table thead {
        display: none;
    }

    .press-table,
    .press-table tbody,
    .press-table tr,
    .press-table td {
        display: block;
        width: 100%;
    }

    .press-table {
        border-spacing: 0;
    }

    .press-row {
        background: var(--light-bg);
        border-radius: var(--radius-sm);
        margin-bottom: 15px;
        padding: 20px 15px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        position: relative;
        border-left: 4px solid var(--accent);
    }

    .press-row td {
        padding: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }

    .press-row:hover td {
        background: transparent;
        box-shadow: none;
    }

    .press-cell-view {
        order: 3;
    }

    .press-cell-content {
        order: 1;
    }

    .press-cell-sno {
        order: 2;
        position: absolute;
        top: 15px;
        left: 15px;
    }

    .view-btn {
        width: 100%;
        flex-direction: row;
        gap: 10px;
        padding: 12px 20px;
    }

    .press-title-wrapper {
        gap: 12px;
    }

    .press-title-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .press-title {
        font-size: 14px;
        line-height: 1.5;
    }

    .press-detail {
        font-size: 13px;
    }

    .press-archive-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .press-table-wrapper {
        padding: 12px;
    }

    .press-row {
        padding: 15px 12px;
    }

    .press-title {
        font-size: 13px;
    }

    .press-detail {
        font-size: 12px;
    }

    .press-date-badge {
        font-size: 10px;
        padding: 4px 10px;
    }

    .sno-badge {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .view-btn {
        font-size: 10px;
        padding: 10px 15px;
    }

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

    .press-archive-btn {
        font-size: 12px;
        padding: 10px 20px;
    }
}

/* ============================================
   PRESS DETAIL MODAL - Custom Styles
   ============================================ */
#pressDetailModal .modal-body {
    padding: 30px;
    max-height: 70vh;
    overflow-y: auto;
}

/* Custom scrollbar for modal */
#pressDetailModal .modal-body::-webkit-scrollbar {
    width: 8px;
}

#pressDetailModal .modal-body::-webkit-scrollbar-track {
    background: var(--light-bg);
    border-radius: 10px;
}

#pressDetailModal .modal-body::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}

#pressDetailModal .modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--accent-dark);
}

/* Press detail content (assuming press_detail.php output) */
#pressDetailModal h1,
#pressDetailModal h2,
#pressDetailModal h3,
#pressDetailModal h4 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 15px;
}

#pressDetailModal p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 15px;
    text-align: justify;
}

#pressDetailModal img {
    max-width: 100%;
    border-radius: var(--radius-sm);
    margin: 15px 0;
}

#pressDetailModal strong {
    color: var(--primary);
    font-weight: 700;
}

#pressDetailModal .press-detail-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--light-bg);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

#pressDetailModal .press-detail-date i {
    color: var(--accent);
}


/* ============================================
   PRESS ARCHIVE PAGE - Additional Styles
   ============================================ */

/* Archive Icon Variant */
.press-intro-icon.archive-icon {
    background: linear-gradient(135deg, #4a5a7e 0%, #2c3e5c 100%);
    position: relative;
}

.press-intro-icon.archive-icon::after {
    content: '';
    position: absolute;
    top: -3px;
    right: -3px;
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    border: 3px solid var(--white);
}

.press-header-icon.archive-header-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--accent);
}

/* Archive Badge */
.press-header-badge.archive-badge {
    background: rgba(11, 26, 51, 0.08);
    color: var(--primary);
    border: 1px solid rgba(212, 168, 67, 0.2);
}

.press-header-badge.archive-badge i {
    color: var(--accent);
    animation: none;
}

/* Reference Badge */
.press-ref-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(212, 168, 67, 0.12);
    color: var(--accent-dark);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.press-ref-badge i {
    font-size: 10px;
}

/* Back Button */
.press-archive-btn.back-btn {
    background: linear-gradient(135deg, var(--light-bg) 0%, #e8edf5 100%);
    color: var(--primary);
    border: 2px solid var(--accent);
    box-shadow: 0 4px 15px rgba(11, 26, 51, 0.08);
}

.press-archive-btn.back-btn:hover {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--primary);
    border-color: var(--accent);
    box-shadow: 0 12px 35px rgba(212, 168, 67, 0.4);
}

.press-archive-btn.back-btn i:first-child {
    color: var(--accent);
    transition: var(--transition);
}

.press-archive-btn.back-btn:hover i:first-child {
    color: var(--primary);
    transform: translateX(-5px);
}

/* ============================================
   RESPONSIVE - PRESS ARCHIVE
   ============================================ */
@media (max-width: 767px) {
    .press-intro-icon.archive-icon::after {
        width: 16px;
        height: 16px;
    }

    .press-meta {
        gap: 8px;
    }

    .press-ref-badge {
        font-size: 10px;
        padding: 4px 10px;
    }

    .press-archive-btn.back-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .press-ref-badge {
        display: none;
    }
}

/* ============================================
   DOWNLOADS PAGE STYLES
   ============================================ */

/* ===== DOWNLOADS CONTENT SECTION ===== */
.downloads-content-section {
    padding: 60px 0;
    background: var(--light-bg);
}

/* ===== DOWNLOADS INTRO ===== */
.downloads-intro {
    display: flex;
    align-items: center;
    gap: 25px;
    background: var(--white);
    padding: 35px 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    border-left: 5px solid var(--accent);
    position: relative;
    overflow: hidden;
}

.downloads-intro::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.downloads-intro-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--accent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(11, 26, 51, 0.15);
    position: relative;
    z-index: 1;
}

.downloads-intro-text {
    position: relative;
    z-index: 1;
}

.downloads-intro-text h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.downloads-intro-text h2 span {
    color: var(--accent);
}

.downloads-intro-text p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
    text-align: justify;
}

/* ===== DOWNLOADS GRID ===== */
.downloads-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 30px;
}

/* ===== DOWNLOAD FILE CARD ===== */
.download-file-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--white);
    padding: 22px 24px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid transparent;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
}

.download-file-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.08), transparent);
    transition: left 0.6s;
}

.download-file-card:hover::before {
    left: 100%;
}

.download-file-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-left-color: var(--accent);
    text-decoration: none;
}

/* Icon */
.download-file-icon {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

/* PDF Icon */
.download-file-icon.pdf {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.download-file-card:hover .download-file-icon.pdf {
    background: #dc3545;
    color: #fff;
    transform: scale(1.08) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
}

/* Book Icon */
.download-file-icon.book {
    background: rgba(74, 144, 226, 0.12);
    color: #4a90e2;
}

.download-file-card:hover .download-file-icon.book {
    background: #4a90e2;
    color: #fff;
    transform: scale(1.08) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
}

/* Syllabus Icon */
.download-file-icon.syllabus {
    background: rgba(40, 167, 69, 0.12);
    color: #28a745;
}

.download-file-card:hover .download-file-icon.syllabus {
    background: #28a745;
    color: #fff;
    transform: scale(1.08) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
}

/* Finance Icon */
.download-file-icon.finance {
    background: rgba(212, 168, 67, 0.15);
    color: var(--accent-dark);
}

.download-file-card:hover .download-file-icon.finance {
    background: var(--accent);
    color: var(--primary);
    transform: scale(1.08) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(212, 168, 67, 0.4);
}

/* Info */
.download-file-info {
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}

.download-file-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
    line-height: 1.4;
    transition: var(--transition);
}

.download-file-card:hover .download-file-info h4 {
    color: var(--accent-dark);
}

/* Subtitle */
.download-file-info .subtitle {
    display: inline-block;
    color: var(--text-gray);
    font-size: 13px;
    font-weight: 500;
    margin-left: 4px;
}

/* Language Badge */
.lang-badge {
    display: inline-block;
    background: rgba(212, 168, 67, 0.15);
    color: var(--accent-dark);
    padding: 1px 8px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    vertical-align: middle;
    margin-left: 4px;
}

.lang-badge.urdu {
    font-family: 'Noto Nastaliq Urdu Draft', serif;
    font-size: 12px;
    background: rgba(11, 26, 51, 0.08);
    color: var(--primary);
    text-transform: none;
    padding: 2px 10px;
    letter-spacing: 0;
}

.download-file-type {
    display: inline-block;
    color: var(--text-gray);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Action Arrow */
.download-file-action {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--light-bg);
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.download-file-card:hover .download-file-action {
    background: var(--accent);
    color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(212, 168, 67, 0.4);
}

.download-file-card:hover .download-file-action i {
    animation: downloadBounce 0.6s ease infinite alternate;
}

@keyframes downloadBounce {
    from { transform: translateY(0); }
    to { transform: translateY(3px); }
}

/* ===== FOOTER NOTE ===== */
.downloads-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    color: var(--text-gray);
    font-size: 13px;
    text-align: center;
    border-left: 4px solid var(--accent);
}

.downloads-note i {
    color: var(--accent);
    font-size: 16px;
    flex-shrink: 0;
}

/* ============================================
   RESPONSIVE - DOWNLOADS PAGE
   ============================================ */
@media (max-width: 991px) {
    .downloads-intro {
        padding: 28px 30px;
    }

    .downloads-intro-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
    }

    .downloads-intro-text h2 {
        font-size: 22px;
    }

    .downloads-grid-modern {
        grid-template-columns: 1fr;
    }

    .download-file-card {
        padding: 18px 20px;
    }
}

@media (max-width: 767px) {
    .downloads-content-section {
        padding: 40px 0;
    }

    .downloads-intro {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        gap: 15px;
    }

    .downloads-intro-text p {
        font-size: 14px;
    }

    .downloads-intro-text h2 {
        font-size: 20px;
    }

    .downloads-intro-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

    .download-file-card {
        padding: 16px 18px;
        gap: 14px;
    }

    .download-file-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        border-radius: 12px;
    }

    .download-file-info h4 {
        font-size: 14px;
    }

    .download-file-type {
        font-size: 11px;
    }

    .download-file-action {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .download-file-card {
        padding: 14px 14px;
        gap: 12px;
        border-radius: 12px;
    }

    .download-file-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
        border-radius: 10px;
    }

    .download-file-info h4 {
        font-size: 13px;
        line-height: 1.35;
    }

    .download-file-info .subtitle {
        display: block;
        font-size: 11px;
        margin-left: 0;
    }

    .download-file-type {
        font-size: 10px;
    }

    .download-file-action {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .lang-badge {
        font-size: 9px;
        padding: 1px 6px;
    }

    .downloads-note {
        font-size: 12px;
        padding: 12px 18px;
    }
}

/* ============================================
   POLICE INITIATIVES PAGE - Additional Styles
   ============================================ */

/* ===== INITIATIVE GROUPS ===== */
.initiative-group {
    margin-bottom: 45px;
}

.initiative-group:last-child {
    margin-bottom: 0;
}

.initiative-group-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
    padding: 18px 25px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-sm);
    border-left: 5px solid var(--accent);
    position: relative;
    overflow: hidden;
}

.initiative-group-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.initiative-group-icon {
    width: 55px;
    height: 55px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 6px 20px rgba(212, 168, 67, 0.35);
}

.initiative-group-header > div:last-child {
    position: relative;
    z-index: 1;
}

.initiative-group-label {
    display: block;
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 2px;
}

.initiative-group-header h3 {
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    margin: 0;
}

/* Subtitle inside card title */
.subtitle-inline {
    display: inline-block;
    color: var(--text-gray);
    font-size: 12px;
    font-weight: 500;
    margin-left: 3px;
}

/* ============================================
   RESPONSIVE - POLICE INITIATIVES PAGE
   ============================================ */
@media (max-width: 767px) {
    .initiative-group {
        margin-bottom: 35px;
    }

    .initiative-group-header {
        padding: 15px 18px;
        gap: 12px;
    }

    .initiative-group-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
        border-radius: 12px;
    }

    .initiative-group-header h3 {
        font-size: 16px;
    }

    .initiative-group-label {
        font-size: 10px;
    }
}

@media (max-width: 576px) {
    .initiative-group-header {
        padding: 12px 15px;
    }

    .initiative-group-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .initiative-group-header h3 {
        font-size: 14px;
    }

    .subtitle-inline {
        display: block;
        font-size: 11px;
        margin-left: 0;
    }
}