/* District Municipal Assembly Website - Main Styles */
/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c5aa0;
    --secondary-color: #1a4480;
    --accent-color: #ffd700;
    --text-color: #333333;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --border-color: #dee2e6;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    margin: 0;
    padding: 0;
}

html {
    margin: 0;
    padding: 0;
}

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

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: var(--secondary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

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

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact-info a {
    color: inherit;
    text-decoration: none;
}

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

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    color: var(--white);
    font-size: 16px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--accent-color);
}

.header-main {
    padding: 20px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: 22px;
}

.logo img {
    height: 72px;
    width: auto;
}

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

.logo-text h1 {
    color: var(--primary-color);
    font-size: clamp(15px, 1.35vw, 20px);
    font-weight: bold;
    line-height: 1.15;
    margin-bottom: 3px;
}

.logo-text p {
    color: var(--medium-gray);
    font-size: 13px;
    line-height: 1.25;
}

/* Navigation Styles */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-color);
    cursor: pointer;
}

.main-nav {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.3s;
    position: relative;
}

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

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: clamp(380px, 68vh, 700px);
    min-height: 380px;
    overflow: hidden;
    background: var(--light-gray);
}

/* Page Header Section */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 60px 0 40px;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 38px;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-header .breadcrumb {
    color: rgba(255, 255, 255, 0.8);
}

.page-header .breadcrumb a {
    color: var(--accent-color);
}

.main-content {
    padding: 40px 0;
    min-height: calc(100vh - 400px);
}

.carousel-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.carousel-slides {
    display: flex;
    height: 100%;
    width: 100%;
    transition: transform 0.5s ease-in-out;
    position: relative;
}

.carousel-slide {
    min-width: 100%;
    max-width: 100%;
    height: 100%;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: var(--light-gray);
    isolation: isolate;
}

.carousel-slide.fit-cover {
    background-size: cover;
    background-color: var(--light-gray);
}

.carousel-slide.fit-contain {
    background-size: contain;
    background-color: #000;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.18) 45%, rgba(0, 0, 0, 0.08) 100%);
    z-index: 1;
}

.carousel-content {
    position: relative;
    text-align: left;
    color: var(--text-color);
    z-index: 2;
    max-width: 540px;
    width: min(88%, 540px);
    padding: 16px 20px;
    margin-bottom: 8px;
    background: color-mix(in srgb, var(--secondary-color) 22%, transparent);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    backdrop-filter: blur(12px) saturate(140%);
    border: 1px solid color-mix(in srgb, var(--white) 28%, transparent);
    border-radius: 0;
    box-shadow: var(--shadow-lg);
}

.carousel-content h2 {
    font-size: 2.2em;
    line-height: 1.15;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.carousel-content p {
    font-size: 1.05em;
    line-height: 1.4;
    margin-bottom: 10px;
    opacity: 1;
    color: color-mix(in srgb, var(--white) 90%, var(--light-gray));
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.carousel-content .btn {
    padding: 9px 18px;
    font-size: 14px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background: #e6c200;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

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

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    color: var(--primary-color);
    transition: all 0.3s;
    z-index: 3;
}

.carousel-nav,
.carousel-indicators {
    display: none;
}

.carousel-nav:hover {
    background: var(--white);
    box-shadow: var(--shadow);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.carousel-indicator.active {
    background: var(--white);
}

/* Carousel content positioning variants */
.carousel-slide.text-bottom-left {
    justify-content: flex-start;
}

.carousel-slide.text-bottom-center {
    justify-content: center;
}

.carousel-slide.text-bottom-center .carousel-content {
    text-align: center;
}

.carousel-slide.text-bottom-right {
    justify-content: flex-end;
}

.carousel-slide.text-bottom-right .carousel-content {
    text-align: right;
}

/* Responsive carousel heights */
@media (min-width: 1200px) {
    .hero {
        height: min(74vh, 760px);
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .hero {
        height: min(66vh, 620px);
        min-height: 420px;
    }
}

@media (max-width: 767px) {
    .hero {
        height: 52vh;
        min-height: 340px;
    }

    .carousel-slide::before {
        background: linear-gradient(to top, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.08) 40%, rgba(0, 0, 0, 0) 100%);
    }
    
    .carousel-content {
        width: 100%;
        max-width: 100%;
        padding: 12px 14px;
        margin-bottom: 0;
        border-radius: 0;
        background: #1f2328;
        box-shadow: none;
        text-align: center;
    }
    
    .carousel-content h2 {
        font-size: 1.45em;
        line-height: 1.2;
        margin-bottom: 6px;
        color: var(--white);
    }
    
    .carousel-content p {
        font-size: 0.98em;
        line-height: 1.35;
        margin-bottom: 8px;
        color: var(--white);
    }

    .carousel-content .btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* About */
.img-responsive {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

/* Quick Links Section */
.quick-links {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1em;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.quick-link-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.quick-link-card .icon {
    font-size: 3em;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.quick-link-card h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: var(--text-color);
}

.quick-link-card p {
    color: var(--medium-gray);
    margin-bottom: 25px;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
}

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

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.content-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

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

.card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

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

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 1.3em;
    margin-bottom: 15px;
    color: var(--text-color);
}

.card-content p {
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.card-meta {
    font-size: 14px;
    color: var(--medium-gray);
    margin-bottom: 15px;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: var(--light-gray);
    border-radius: 5px;
    overflow: hidden;
    margin: 15px 0;
}

.progress-fill {
    height: 100%;
    background: var(--success-color);
    transition: width 0.3s;
}

/* Projects */
.project-stats {
    padding: 20px 0 10px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.stat-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow);
}

.stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--light-gray);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.stat-info h3 {
    font-size: 1.35rem;
    line-height: 1.1;
    color: var(--text-color);
}

.stat-info p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-top: 4px;
}

.featured-projects,
.projects-section,
.project-categories {
    padding: 48px 0;
}

.featured-projects {
    background: var(--light-gray);
}

.featured-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.featured-project-card,
.project-card,
.category-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.project-image {
    position: relative;
    height: 220px;
    background: var(--light-gray);
}

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

.project-status {
    position: absolute;
    top: 12px;
    left: 12px;
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--white);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    text-transform: capitalize;
}

.status-completed {
    color: var(--success-color);
}

.status-ongoing {
    color: var(--primary-color);
}

.status-planned {
    color: var(--warning-color);
}

.featured-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.project-content {
    padding: 18px;
}

.project-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.35;
}

.project-content h3 a {
    text-decoration: none;
    color: var(--text-color);
}

.project-content h3 a:hover {
    color: var(--primary-color);
}

.project-content p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.project-progress {
    margin: 14px 0;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--medium-gray);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    color: var(--medium-gray);
    font-size: 0.84rem;
    margin-bottom: 14px;
}

.project-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.project-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 10px;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

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

.btn-sm {
    padding: 8px 12px;
    font-size: 0.86rem;
}

.project-filters {
    padding: 20px 0 8px;
}

.project-filters .filters-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.project-search {
    max-width: 340px;
    width: 100%;
}

.project-search .search-group {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
    display: flex;
}

.project-search .search-group input {
    flex: 1;
    border: 0;
    padding: 10px 12px;
    font-size: 0.92rem;
}

.project-search .search-group input:focus {
    outline: none;
}

.project-search .search-group button {
    border: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 0 14px;
    cursor: pointer;
}

.status-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-btn {
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    color: var(--text-color);
    font-size: 0.86rem;
    line-height: 1;
    background: var(--white);
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-results {
    margin-top: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    color: var(--medium-gray);
    font-size: 0.92rem;
}

.clear-filters {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.projects-grid,
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.category-item {
    padding: 20px;
}

.category-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--light-gray);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.category-item h4 {
    margin-bottom: 8px;
    color: var(--text-color);
}

.category-item p {
    color: var(--medium-gray);
    font-size: 0.92rem;
}

.no-results {
    text-align: center;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 34px 20px;
    box-shadow: var(--shadow);
}

.no-results-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: var(--light-gray);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-results h3 {
    margin-bottom: 8px;
}

.no-results p {
    color: var(--medium-gray);
    margin-bottom: 16px;
}

/* Downloads */
.downloads-intro,
.document-filters,
.quick-categories,
.documents-section,
.downloads-help {
    padding: 44px 0;
}

.downloads-intro {
    padding-top: 20px;
}

.downloads-intro .section-title {
    margin-bottom: 30px;
}

.downloads-intro .section-title p {
    max-width: 780px;
}

.download-stats .row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.download-stats .col-md-3 {
    width: 100%;
}

.stat-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow);
    min-height: 94px;
}

.document-filters {
    padding-top: 14px;
    padding-bottom: 10px;
}

.document-filters .filters-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.document-search {
    max-width: 360px;
    width: 100%;
}

.document-search .search-group {
    display: flex;
    align-items: stretch;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
}

.document-search .search-group input {
    flex: 1;
    border: 0;
    outline: none;
    padding: 10px 12px;
    font-size: 0.92rem;
}

.document-search .search-group button {
    border: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 0 14px;
    cursor: pointer;
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.quick-categories {
    background: var(--light-gray);
}

.quick-categories .section-title {
    margin-bottom: 28px;
}

.quick-categories .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.category-card {
    text-decoration: none;
    color: inherit;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 18px;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: block;
}

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

.category-card .category-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.category-card h4 {
    color: var(--text-color);
    margin-bottom: 8px;
    font-size: 1rem;
}

.category-card p {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.documents-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.document-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 14px;
    align-items: center;
}

.document-item .document-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--light-gray);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.document-info h3 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--text-color);
}

.document-info p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 8px;
}

.document-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    font-size: 0.82rem;
    color: var(--medium-gray);
}

.document-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.document-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.category-section {
    margin-bottom: 34px;
}

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

.category-header h2 {
    color: var(--primary-color);
    font-size: 1.4rem;
}

.category-header p {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.document-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    min-height: 240px;
}

.document-header {
    padding: 14px 14px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.document-header .document-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--light-gray);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-type {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    font-size: 0.72rem;
    color: var(--medium-gray);
    background: var(--white);
}

.document-content {
    padding: 0 14px 10px;
    flex: 1;
}

.document-content h4 {
    font-size: 0.98rem;
    margin-bottom: 8px;
}

.document-content p {
    font-size: 0.86rem;
    color: var(--medium-gray);
}

.document-footer {
    padding: 10px 14px 14px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.document-stats {
    color: var(--medium-gray);
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 0.8rem;
}

.downloads-help {
    background: var(--light-gray);
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.help-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow);
}

.help-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--light-gray);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.help-item h4 {
    margin-bottom: 8px;
}

.help-item p {
    color: var(--medium-gray);
    margin-bottom: 12px;
    font-size: 0.9rem;
}

/* Staff Grid */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 34px 26px;
    margin-top: 30px;
    justify-items: center;
}

.staff-card {
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
    border: 0;
    box-shadow: none;
    max-width: 250px;
    width: 100%;
    margin: 0 auto;
}

.staff-card:hover {
    transform: translateY(-6px);
}

.staff-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 4px solid var(--light-gray);
}

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

.staff-card h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: var(--text-color);
}

.staff-card .designation {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 5px;
}

.staff-card .department {
    color: var(--medium-gray);
    font-size: 14px;
}

/* Staff card elements for the actual structure */
.staff-image {
    width: 164px;
    height: 164px;
    overflow: hidden;
    background: #efe7dc;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto 18px;
    border-radius: 50%;
}

.staff-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    transition: transform 0.3s ease;
}

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

.staff-placeholder {
    font-size: 2.5em;
    color: rgba(71, 85, 105, 0.7);
}

.staff-info {
    padding: 0 10px 12px;
    text-align: center;
}

.staff-info h3 {
    font-size: 1.1em;
    margin-bottom: 6px;
    color: #1d9bd1;
    font-weight: 600;
    line-height: 1.35;
}

.staff-position {
    color: var(--text-color);
    font-weight: 400;
    margin-bottom: 4px;
    font-size: 0.9em;
    line-height: 1.45;
}

.staff-bio {
    margin: 12px 0;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid var(--primary-color);
    color: var(--medium-gray);
    font-size: 12px;
    line-height: 1.5;
}

.staff-contact {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--medium-gray);
    font-size: 12px;
    text-decoration: none;
    transition: color 0.3s ease;
    justify-content: center;
    padding: 3px;
}

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

.contact-item i {
    width: 16px;
    font-size: 14px;
    text-align: center;
}

.contact-item span {
    flex: 1;
    text-align: left;
}

.staff-directory {
    background: #f3f4f6;
}

.directory-summary {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.directory-summary p {
    color: var(--medium-gray);
    font-size: 1rem;
    line-height: 1.6;
}

.live-search-empty {
    margin: 18px 0 6px;
    text-align: center;
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.staff-filters {
    padding: 8px 0 16px;
}

.filters-wrapper {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.staff-search {
    width: 100%;
    max-width: 360px;
}

.search-group {
    display: flex;
    align-items: stretch;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
}

.search-group input {
    flex: 1;
    border: 0;
    outline: none;
    padding: 10px 12px;
    font-size: 14px;
    color: var(--text-color);
    background: transparent;
}

.search-group input::placeholder {
    color: var(--medium-gray);
}

.search-group button {
    border: 0;
    padding: 0 14px;
    background: var(--primary-color);
    color: var(--white);
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-group button:hover {
    background: var(--secondary-color);
}

/* Department section styling */
.department-section {
    margin-bottom: 60px;
}

.department-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-gray);
}

.department-header h2 {
    color: var(--primary-color);
    font-size: 2em;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.department-header p {
    color: var(--medium-gray);
    font-size: 1.1em;
}

/* Forms */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-section p,
.footer-section li {
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section p a {
    color: var(--white);
    text-decoration: none;
}

.footer-section p a:hover {
    color: var(--accent-color);
}

.footer-section ul a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
}

.footer-bottom a {
    color: var(--white);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--accent-color);
}

/* Responsive Design */
/* Large screens - ensure 4 cards per row */
@media (min-width: 1200px) {
    .staff-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1120px;
        margin: 30px auto 0;
    }
}

/* Medium screens - 3 cards per row */
@media (min-width: 769px) and (max-width: 1199px) {
    .staff-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .header-top {
        display: none;
    }
    
    .header-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        position: relative;
    }

    .logo {
        width: auto;
        justify-content: flex-start;
        gap: 12px;
        margin-right: 0;
    }

    .logo img {
        height: 60px;
    }

    .logo-text {
        max-width: min(70vw, 360px);
    }

    .logo-text h1 {
        font-size: clamp(14px, 3.2vw, 18px);
        margin-bottom: 2px;
    }

    .logo-text p {
        font-size: 12px;
    }
    
    .nav-toggle {
        display: block;
        position: static;
        margin-left: 10px;
        flex-shrink: 0;
    }

    nav {
        position: relative;
        margin-left: auto;
    }
    
    .main-nav {
        flex-direction: column;
        position: absolute;
        top: calc(100% + 12px);
        right: 0;
        left: auto;
        min-width: 240px;
        background: var(--white);
        box-shadow: var(--shadow);
        border-radius: 8px;
        padding: 16px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
        z-index: 1001;
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero {
        height: 400px;
    }
    
    .carousel-content h2 {
        font-size: 2em;
    }
    
    .carousel-content {
        padding: 20px;
        max-width: 100%;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .section-title h2 {
        font-size: 2em;
    }
    
    .content-grid,
    .quick-links-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .stat-card {
        padding: 14px;
    }

    .project-filters .filters-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .project-search {
        max-width: 100%;
    }

    .status-filters {
        justify-content: center;
    }

    .filter-results {
        flex-direction: column;
        align-items: flex-start;
    }

    .projects-grid,
    .featured-projects-grid,
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .download-stats .row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .document-filters .filters-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .document-search {
        max-width: 100%;
    }

    .category-filters {
        justify-content: center;
    }

    .document-item {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .document-actions {
        justify-content: flex-start;
    }

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

    .help-grid {
        grid-template-columns: 1fr;
    }
    
    .staff-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 24px 16px;
    }

    .filters-wrapper {
        justify-content: center;
    }

    .staff-search {
        max-width: 100%;
    }
    
    .staff-image {
        width: 150px;
        height: 150px;
    }
    
    .staff-card {
        margin-bottom: 15px;
        max-width: none;
    }
    
    .staff-info {
        padding: 15px;
    }
    
    .department-header h2 {
        font-size: 1.5em;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .content-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .logo-text h1 {
        font-size: 13px;
        line-height: 1.2;
    }

    .logo-text p {
        display: none;
    }
    
    .carousel-content h2 {
        font-size: 1.5em;
    }

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

    .download-stats .row {
        grid-template-columns: 1fr;
    }

    .filter-btn {
        font-size: 0.82rem;
        padding: 7px 10px;
    }
    
    .carousel-content p {
        font-size: 1em;
    }
    
    .section-title h2 {
        font-size: 1.8em;
    }
    
    .quick-links-grid {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }

.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.alert {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    border-left: 4px solid;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-color: var(--success-color);
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border-color: var(--danger-color);
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
    border-color: var(--warning-color);
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

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

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 16px;
    }
}

/* Article Detail Page Styles */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    margin: 40px 0;
}

.article-detail {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--medium-gray);
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-meta i {
    color: var(--primary-color);
}

.article-image {
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-excerpt {
    background: var(--light-gray);
    padding: 20px;
    border-left: 4px solid var(--primary-color);
    margin: 30px 0;
    border-radius: 4px;
    font-size: 18px;
    font-style: italic;
}

.article-excerpt p {
    margin: 0;
}

.article-content {
    margin: 30px 0;
    font-size: 16px;
    line-height: 1.8;
}

.article-content p {
    margin-bottom: 15px;
}

.article-footer {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid var(--border-color);
}

.article-nav {
    margin-bottom: 30px;
}

.article-nav .btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.article-nav .btn:hover {
    background: var(--secondary-color);
}

.article-share {
    padding: 20px;
    background: var(--light-gray);
    border-radius: 8px;
}

.article-share h4 {
    margin-bottom: 15px;
    color: var(--text-color);
}

.share-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

/* ===== News Page ===== */

    /* Featured News Section */
    .featured-news {
        padding: 44px 0 32px;
        background: var(--white);
    }

    .featured-news .section-title {
        margin-bottom: 28px;
    }

    .featured-news-grid {
        display: grid;
        grid-template-columns: 3fr 2fr;
        grid-template-rows: auto auto;
        gap: 20px;
    }

    .featured-news-card {
        background: var(--white);
        border: 1px solid var(--border-color);
        border-radius: 14px;
        overflow: hidden;
        box-shadow: var(--shadow);
        display: flex;
        flex-direction: column;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

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

    .featured-main {
        grid-row: span 2;
    }

    .featured-main .news-image {
        height: 300px;
    }

    .featured-secondary .news-image {
        height: 160px;
    }

    .featured-news-card .news-image {
        position: relative;
        overflow: hidden;
        flex-shrink: 0;
    }

    .featured-news-card .news-image .news-image-link,
    .news-card .news-image .news-image-link {
        display: block;
        width: 100%;
        height: 100%;
        position: relative;
        text-decoration: none;
    }

    .news-image-placeholder {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 24px;
        text-align: center;
        background: linear-gradient(135deg, #e8eef7 0%, #d7e4f6 100%);
        color: var(--primary-color);
    }

    .news-image-placeholder i {
        font-size: 2rem;
        opacity: 0.9;
    }

    .news-image-placeholder span {
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .featured-news-card .news-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        position: relative;
        z-index: 1;
        transition: transform 0.3s ease;
    }

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

    .featured-news-card .featured-badge {
        width: auto;
        height: auto;
        border-radius: 20px;
        padding: 4px 10px;
        left: 12px;
        right: auto;
        font-weight: 600;
        color: #333;
        font-size: 0.75rem;
    }

    .featured-news-card .news-content {
        padding: 18px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .featured-news-card .news-meta {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px 12px;
        margin-bottom: 10px;
    }

    .news-category {
        display: inline-block;
        background: var(--primary-color);
        color: var(--white);
        font-size: 0.72rem;
        font-weight: 600;
        padding: 3px 10px;
        border-radius: 20px;
        text-transform: uppercase;
        letter-spacing: 0.4px;
    }

    .news-date {
        color: var(--medium-gray);
        font-size: 0.82rem;
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }

    .featured-news-card .news-content h3 {
        font-size: 1.15rem;
        line-height: 1.4;
        margin-bottom: 10px;
        color: var(--text-color);
    }

    .featured-main .news-content h3 {
        font-size: 1.4rem;
    }

    .featured-news-card .news-content h3 a {
        color: inherit;
        text-decoration: none;
        transition: color 0.2s ease;
    }

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

    .featured-news-card .news-content p {
        color: var(--medium-gray);
        font-size: 0.92rem;
        line-height: 1.6;
        flex: 1;
        margin-bottom: 14px;
    }

    .featured-news-card .read-more {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: var(--primary-color);
        font-weight: 600;
        font-size: 0.88rem;
        text-decoration: none;
        transition: gap 0.2s ease;
        margin-top: auto;
    }

    .featured-news-card .read-more:hover {
        gap: 10px;
    }

    /* News Filters Bar */
    .news-filters {
        background: var(--white);
        padding: 14px 0 16px;
        border-bottom: 1px solid var(--border-color);
    }

    .news-filters .filters-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
    }

    .news-search {
        max-width: 360px;
        width: 100%;
    }

    .news-search .search-group {
        display: flex;
        align-items: stretch;
        border: 1px solid var(--border-color);
        border-radius: 8px;
        overflow: hidden;
        background: var(--white);
    }

    .news-search .search-group input {
        flex: 1;
        border: 0;
        outline: none;
        padding: 10px 12px;
        font-size: 0.92rem;
        background: transparent;
    }

    .news-search .search-group button {
        border: 0;
        background: var(--primary-color);
        color: var(--white);
        padding: 0 14px;
        cursor: pointer;
        transition: background 0.2s ease;
    }

    .news-search .search-group button:hover {
        background: var(--secondary-color);
    }

    /* News Articles Grid */
    .news-articles {
        background: var(--light-gray);
        padding: 40px 0 60px;
    }

    .news-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px;
        margin-bottom: 36px;
    }

    .news-card {
        background: var(--white);
        border: 1px solid var(--border-color);
        border-radius: 14px;
        overflow: hidden;
        box-shadow: var(--shadow);
        display: flex;
        flex-direction: column;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

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

    .news-card .news-image {
        height: 200px;
        overflow: hidden;
        position: relative;
        flex-shrink: 0;
    }

    .news-card .news-image a {
        display: block;
        height: 100%;
    }

    .news-card .news-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        position: relative;
        z-index: 1;
        transition: transform 0.3s ease;
    }

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

    .news-card .news-content {
        padding: 16px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .news-card .news-meta {
        display: flex;
        align-items: center;
        gap: 8px 12px;
        flex-wrap: wrap;
        margin-bottom: 10px;
    }

    .news-card .news-content h3 {
        font-size: 1rem;
        line-height: 1.45;
        margin-bottom: 8px;
    }

    .news-card .news-content h3 a {
        color: var(--text-color);
        text-decoration: none;
        transition: color 0.2s ease;
    }

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

    .news-card .news-content p {
        color: var(--medium-gray);
        font-size: 0.9rem;
        line-height: 1.6;
        flex: 1;
        margin-bottom: 12px;
    }

    .news-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        margin-top: auto;
        padding-top: 12px;
        border-top: 1px solid var(--border-color);
    }

    .news-footer .read-more {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        color: var(--primary-color);
        font-weight: 600;
        font-size: 0.85rem;
        text-decoration: none;
        transition: gap 0.2s ease;
    }

    .news-footer .read-more:hover {
        gap: 10px;
    }

    .news-stats {
        color: var(--medium-gray);
        font-size: 0.82rem;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    /* Newsletter Signup */
    .newsletter-signup {
        background: var(--primary-color);
        padding: 50px 0;
    }

    .newsletter-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 30px;
        flex-wrap: wrap;
    }

    .newsletter-text h3 {
        font-size: 1.6rem;
        color: var(--white);
        margin-bottom: 8px;
    }

    .newsletter-text p {
        color: rgba(255, 255, 255, 0.85);
        max-width: 500px;
    }

    .newsletter-form .form-group {
        display: flex;
        gap: 10px;
        margin-bottom: 0;
        flex-wrap: nowrap;
        align-items: stretch;
    }

    .newsletter-form {
        width: 100%;
        max-width: 520px;
    }

    .newsletter-form input[type="email"] {
        padding: 12px 18px;
        border: none;
        border-radius: 8px;
        font-size: 0.95rem;
        min-width: 260px;
        min-height: 50px;
        outline: none;
        flex: 1;
    }

    .newsletter-form .btn-primary {
        background: var(--accent-color);
        color: #333;
        font-weight: 600;
        border: none;
        padding: 12px 24px;
        border-radius: 8px;
        cursor: pointer;
        white-space: nowrap;
        min-height: 50px;
        transition: background 0.2s ease, transform 0.2s ease;
    }

    .newsletter-form .btn-primary:hover {
        background: #e6c200;
        transform: translateY(-1px);
    }

    @media (max-width: 1024px) {
        .featured-news-grid {
            grid-template-columns: 1fr 1fr;
        }
        .featured-main {
            grid-column: span 2;
            grid-row: span 1;
        }
        .featured-main .news-image {
            height: 260px;
        }
        .news-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (max-width: 768px) {
        .featured-news-grid {
            grid-template-columns: 1fr;
        }
        .featured-main {
            grid-column: span 1;
        }
        .news-filters .filters-wrapper {
            flex-direction: column;
            align-items: stretch;
        }
        .news-search {
            max-width: 100%;
        }
        .news-filters .category-filters {
            justify-content: center;
        }
        .news-grid {
            grid-template-columns: 1fr;
        }
        .newsletter-content {
            flex-direction: column;
            text-align: center;
        }
        .newsletter-form .form-group {
            flex-wrap: wrap;
        }
        .newsletter-form input[type="email"] {
            min-width: 0;
            width: 100%;
        }
    }

.share-facebook {
    background: #1877f2;
    color: var(--white);
}

.share-facebook:hover {
    background: #0d66d0;
    transform: translateY(-2px);
}

.share-twitter {
    background: #1da1f2;
    color: var(--white);
}

.share-twitter:hover {
    background: #1a91da;
    transform: translateY(-2px);
}

.share-linkedin {
    background: #0a66c2;
    color: var(--white);
}

.share-linkedin:hover {
    background: #054399;
    transform: translateY(-2px);
}

/* Sidebar Styles */
.article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
}

.sidebar-widget h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 18px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

.related-articles {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-item {
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.related-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-item h4 {
    font-size: 14px;
    margin-bottom: 8px;
}

.related-item h4 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.related-item h4 a:hover {
    color: var(--secondary-color);
}

.related-item small {
    color: var(--medium-gray);
}

.widget-list {
    list-style: none;
}

.widget-list li {
    margin-bottom: 12px;
}

.widget-list a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.widget-list a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.breadcrumb {
    color: var(--medium-gray);
    font-size: 14px;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

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

.breadcrumb span {
    margin: 0 5px;
}

/* Project Details Grid */
.project-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
    padding: 30px;
    background: var(--light-gray);
    border-radius: 8px;
}

.detail-item {
    padding: 20px;
    background: var(--white);
    border-radius: 6px;
    box-shadow: var(--shadow);
}

.detail-item h4 {
    color: var(--primary-color);
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
}

.detail-item p {
    margin: 0;
    color: var(--text-color);
    font-size: 15px;
}

.progress-bar {
    width: 100%;
    height: 24px;
    background: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 8px;
}

/* Status Badge Styles */
.status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-planning {
    background: #e3f2fd;
    color: #1976d2;
}

.status-ongoing {
    background: #fff3e0;
    color: #f57c00;
}

.status-completed {
    background: #e8f5e9;
    color: #388e3c;
}

.status-on_hold {
    background: #fce4ec;
    color: #c2185b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .article-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .article-sidebar {
        order: 2;
    }

    .article-detail {
        order: 1;
    }

    .share-links {
        flex-direction: column;
    }

    .share-btn {
        width: 100%;
    }
}

/* ===== Services Page ===== */
.services-intro {
    padding: 32px 0 24px;
    background: var(--white);
}

.services-intro .section-title {
    margin-bottom: 22px;
}

.services-intro .section-title p {
    max-width: 860px;
    margin: 0 auto;
}

.service-quick-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.service-link-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-color);
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.86rem;
    transition: all 0.2s ease;
}

.service-link-chip:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.service-section {
    padding: 44px 0;
    background: var(--light-gray);
}

.service-section:nth-of-type(even) {
    background: var(--white);
}

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.service-title h2 {
    color: var(--text-color);
    font-size: 1.6rem;
    line-height: 1.3;
    margin-bottom: 6px;
}

.service-title p {
    color: var(--medium-gray);
    font-size: 0.95rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--light-gray);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.service-card h4 {
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.35;
}

.service-card p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
    margin: 2px 0 4px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.service-card ul li {
    position: relative;
    padding-left: 16px;
    color: var(--text-color);
    font-size: 0.86rem;
}

.service-card ul li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-color);
    position: absolute;
    left: 0;
    top: 9px;
}

.service-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

.service-hours {
    padding: 48px 0 60px;
    background: var(--white);
}

.service-hours .section-title {
    margin-bottom: 24px;
}

.service-hours .row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.service-hours .col-md-6 {
    width: 100%;
}

.hours-card,
.contact-card {
    background: var(--light-gray);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 20px;
    height: 100%;
}

.hours-card h3,
.contact-card h3 {
    color: var(--text-color);
    margin-bottom: 14px;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hours-list,
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.hours-item .day {
    font-weight: 600;
    color: var(--text-color);
}

.hours-item .time {
    color: var(--medium-gray);
}

.service-hours .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
}

.service-hours .contact-item:last-child {
    border-bottom: 0;
}

.service-hours .contact-item i {
    color: var(--primary-color);
    margin-top: 3px;
}

.service-hours .btn {
    margin-top: 16px;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .services-intro {
        padding-top: 24px;
    }

    .service-header {
        flex-direction: column;
        gap: 10px;
    }

    .service-title h2 {
        font-size: 1.35rem;
    }

    .services-grid,
    .service-hours .row {
        grid-template-columns: 1fr;
    }

    .hours-item {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===== About Page ===== */
.about-section {
    background: var(--white);
    padding: 34px 0 64px;
}

.about-intro {
    margin-bottom: 34px;
}

.about-section .row {
    display: grid;
    gap: 22px;
}

.about-intro .row,
.mission-vision .row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.responsibilities .row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-section .col-md-6,
.about-section .col-md-4 {
    width: 100%;
}

.about-text {
    background: var(--light-gray);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 22px;
    box-shadow: var(--shadow);
    height: 100%;
}

.about-text h2 {
    color: var(--text-color);
    margin-bottom: 12px;
    font-size: 1.6rem;
    line-height: 1.35;
}

.about-text p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.72;
    margin-bottom: 10px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    min-height: 320px;
}

.about-image .img-responsive {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
}

.mission-vision {
    margin-bottom: 40px;
}

.mission-card,
.vision-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 20px;
    box-shadow: var(--shadow);
    height: 100%;
}

.mission-card .card-icon,
.vision-card .card-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.mission-card h3,
.vision-card h3 {
    color: var(--text-color);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.mission-card p,
.vision-card p {
    color: var(--medium-gray);
    line-height: 1.65;
    font-size: 0.93rem;
}

.core-values,
.responsibilities {
    margin-top: 8px;
}

.core-values .section-title,
.responsibilities .section-title {
    margin-bottom: 26px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.value-item,
.responsibility-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 18px;
    box-shadow: var(--shadow);
    height: 100%;
}

.value-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: var(--light-gray);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.value-item h4,
.responsibility-item h4 {
    color: var(--text-color);
    font-size: 1.02rem;
    margin-bottom: 8px;
}

.value-item p,
.responsibility-item p {
    color: var(--medium-gray);
    font-size: 0.9rem;
    line-height: 1.62;
}

.responsibility-item > i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: inline-block;
}

@media (max-width: 1024px) {
    .values-grid,
    .responsibilities .row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 24px 0 50px;
    }

    .about-intro .row,
    .mission-vision .row,
    .values-grid,
    .responsibilities .row {
        grid-template-columns: 1fr;
    }

    .about-text {
        padding: 18px;
    }

    .about-text h2 {
        font-size: 1.35rem;
    }

    .about-image,
    .about-image .img-responsive {
        min-height: 240px;
    }
}

/* ===== Home Page ===== */
.home-page .hero {
    min-height: 520px;
}

.home-page .section-title {
    margin-bottom: 36px;
}

.home-page .section-title h2 {
    font-size: clamp(1.7rem, 2.5vw, 2.35rem);
    line-height: 1.25;
}

.home-page .section-title p {
    font-size: 1rem;
    max-width: 720px;
}

.home-page .quick-links,
.home-page .content-section {
    padding: 56px 0;
}

.home-page .quick-links-grid {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
}

.home-page .quick-link-card {
    padding: 24px 20px;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    min-height: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.home-page .quick-link-card .icon {
    font-size: 1.35rem;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.home-page .quick-link-card h3 {
    font-size: 1.08rem;
    margin-bottom: 10px;
    line-height: 1.35;
}

.home-page .quick-link-card p {
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 14px;
}

.home-page .quick-link-card .btn {
    margin-top: auto;
    padding: 10px 18px;
    font-size: 0.88rem;
}

.home-page .counter {
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 4px;
}

.home-page .content-wrapper {
    max-width: 860px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 24px;
    color: var(--medium-gray);
    font-size: 1rem;
    line-height: 1.75;
}

.home-page .content-wrapper h1,
.home-page .content-wrapper h2,
.home-page .content-wrapper h3,
.home-page .content-wrapper h4 {
    color: var(--text-color);
    margin-bottom: 10px;
}

.home-page .content-wrapper p {
    margin-bottom: 12px;
}

.home-page .content-wrapper p:last-child {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .home-page .quick-links-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .home-page .hero {
        min-height: 400px;
    }

    .home-page .quick-links,
    .home-page .content-section {
        padding: 42px 0;
    }

    .home-page .quick-links-grid,
    .home-page .content-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .home-page .quick-link-card {
        min-height: 0;
        padding: 20px 16px;
    }

    .home-page .section-title {
        margin-bottom: 24px;
    }

    .home-page .content-wrapper {
        padding: 18px;
    }
}

/* ===== Contact Page ===== */
.contact-page .content-section {
    padding: 52px 0 64px;
}

.contact-page .section-title {
    margin-bottom: 24px;
}

.contact-page .section-title h1 {
    color: var(--text-color);
    font-size: clamp(1.9rem, 2.4vw, 2.4rem);
    margin-bottom: 8px;
}

.contact-page .section-title p {
    color: var(--medium-gray);
    font-size: 1rem;
}

.contact-page .contact-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #ececec;
    margin: 28px 0 34px;
}

.contact-page .contact-showcase-image {
    min-height: 540px;
    overflow: hidden;
    background: #e3e3e3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-page .contact-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.contact-page .contact-showcase-panel {
    padding: 56px 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-page .contact-showcase-panel h2 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.05;
    margin-bottom: 34px;
    color: #111;
    font-weight: 700;
}

.contact-page .contact-facts-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 28px;
}

.contact-page .contact-fact h4 {
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: #111;
}

.contact-page .contact-fact p {
    color: #64748b;
    font-size: 1.02rem;
    line-height: 1.65;
    margin-bottom: 6px;
}

.contact-page .contact-socials {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 6px;
}

.contact-page .contact-socials a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #8f8f8f;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.contact-page .contact-socials a:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

.contact-page .welcome-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 34px;
    border-radius: 14px;
    margin: 34px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-page .welcome-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="30" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="70" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    z-index: 1;
}

.contact-page .welcome-section > * {
    position: relative;
    z-index: 2;
}

.contact-page .welcome-section h2 {
    margin-bottom: 12px;
    font-size: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-page .welcome-section p {
    font-size: 1rem;
    max-width: 860px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-page .quick-contact-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 26px 0 8px;
    flex-wrap: wrap;
}

.contact-page .quick-contact-btn {
    background: #0b65b4;
    color: var(--white);
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    font-weight: 600;
}

.contact-page .quick-contact-btn:hover {
    background: #095799;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.contact-page .contact-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 34px;
    align-items: start;
    margin-top: 18px;
}

.contact-page .contact-grid-single {
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: 18px auto 0;
}

.contact-page .contact-grid-single .contact-form {
    position: static;
}

.contact-page .contact-form {
    background: var(--white);
    padding: 28px;
    border-radius: 14px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    position: sticky;
    top: 20px;
}

.contact-page .contact-form h3 {
    color: var(--text-color);
    font-size: 1.35rem;
    margin-bottom: 6px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.contact-page .contact-form > p {
    color: var(--medium-gray);
    margin-bottom: 20px;
}

.contact-page .form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.contact-page .required-mark {
    color: var(--danger-color);
}

.contact-page .form-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.contact-page .contact-info-card {
    background: var(--white);
    padding: 22px;
    border-radius: 14px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    margin-bottom: 18px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-page .contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.contact-page .contact-info-card h3 {
    color: var(--primary-color);
    margin-bottom: 14px;
    font-size: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.contact-page .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-page .contact-item:last-child {
    border-bottom: none;
}

.contact-page .contact-item i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 4px;
}

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

.contact-page .contact-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-page .map-container {
    margin-top: 28px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.contact-page .map-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 16px;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.contact-page .map-container iframe {
    width: 100%;
    height: 420px;
    border: none;
}

.contact-page .footer-hours-note {
    margin-top: 20px;
}

.contact-page .alert {
    padding: 16px 18px;
    border-radius: 10px;
    margin: 16px 0;
    border-left: 4px solid;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: contactSlideIn 0.35s ease;
}

.contact-page .alert-success {
    background-color: #d4edda;
    border-color: #28a745;
    color: #155724;
}

.contact-page .alert-error {
    background-color: #f8d7da;
    border-color: #dc3545;
    color: #721c24;
}

.contact-page .alert::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1rem;
}

.contact-page .alert-success::before {
    content: "\f058";
    color: #28a745;
}

.contact-page .alert-error::before {
    content: "\f06a";
    color: #dc3545;
}

@keyframes contactSlideIn {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .contact-page .contact-showcase {
        grid-template-columns: 1fr;
    }

    .contact-page .contact-showcase-image {
        min-height: 360px;
    }

    .contact-page .contact-showcase-panel {
        padding: 30px 24px;
    }

    .contact-page .contact-showcase-panel h2 {
        margin-bottom: 20px;
    }

    .contact-page .contact-facts-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contact-page .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-page .contact-form {
        position: static;
    }
}

@media (max-width: 768px) {
    .contact-page .content-section {
        padding: 40px 0 50px;
    }

    .contact-page .welcome-section {
        padding: 24px 18px;
        margin: 24px 0;
    }

    .contact-page .welcome-section h2 {
        font-size: 1.6rem;
    }

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

    .contact-page .contact-form,
    .contact-page .contact-info-card {
        padding: 18px;
    }

    .contact-page .quick-contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-page .quick-contact-btn {
        width: 100%;
        justify-content: center;
    }

    .contact-page .map-container iframe {
        height: 300px;
    }
}
