/* ============================================
   TABLE OF CONTENTS
   1. GLOBAL & UTILITIES
   2. PAGE HERO COMPONENT
   3. QUICK NAVIGATION
   4. ABOUT US PAGE
   5. CAREER PAGE
   6. CONTACT PAGE
   7. FACILITY PAGE
   8. GALLERY PAGE
   9. NEWS & ARTICLES (includes news-grid, news-featured)
   10. EVENTS SECTION
   11. BROCHURE SECTION
   12. PROJECT DETAILS PAGE
   13. PROJECTS PAGE
   14. RESPONSIVE DESIGN
============================================ */

/* ============================================
   1. GLOBAL & UTILITIES
============================================ */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

.container {
    max-width: var(--max-width, 1200px);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    margin: 60px 0;
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 24px;
}

/* ============================================
   2. PAGE HERO COMPONENT
   Single source of truth for all page heroes
============================================ */

.page-hero {
    background: linear-gradient(135deg, var(--gray), var(--gray-pale));
    padding: 140px 24px 80px;
    color: white;
    text-align: center;
    position: relative;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--white);
    clip-path: ellipse(75% 100% at 50% 100%);
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.page-hero p {
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
    font-size: 1.1rem;
}

/* Hero variations */
.article-hero,
.project-hero {
    background: var(--gray);
    padding: 140px 24px 40px;
    color: white;
    position: relative;
}

/* ============================================
   3. QUICK NAVIGATION
   Shared component for about-nav and quick-nav
============================================ */

.about-nav,
.quick-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.about-nav {
    margin: -20px 0 40px;
}

.quick-nav {
    margin: -20px 0 20px;
}

.about-nav a,
.quick-nav a {
    padding: 10px 18px;
    background: white;
    border: 1px solid var(--gray-lighter);
    border-radius: 50px;
    text-decoration: none;
    color: var(--navy);
    font-weight: 600;
    font-size: 0.88rem;
    box-shadow: var(--shadow);
    transition: all var(--transition-fast);
}

.about-nav a:hover,
.quick-nav a:hover {
    background: var(--orange);
    color: white;
    border-color: var(--orange);
    transform: translateY(-2px);
}

/* ============================================
   4. ABOUT US PAGE
============================================ */

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.mv-card {
    background: var(--off-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border-top: 4px solid var(--orange);
}

.mv-card h3 {
    color: var(--navy);
    font-size: 1.4rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.timeline {
    position: relative;
    margin-top: 30px;
    padding-left: 30px;
    border-left: 2px solid var(--gray-lighter);
}

.timeline-item {
    position: relative;
    margin-bottom: 28px;
    padding-left: 20px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 4px;
    width: 14px;
    height: 14px;
    background: var(--orange);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--orange);
}

.timeline-year {
    font-weight: 700;
    color: var(--orange-dark);
    font-size: 0.9rem;
}

.timeline-item h4 {
    color: var(--navy);
    margin: 4px 0 6px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.expertise-card {
    background: white;
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-lighter);
    transition: all var(--transition);
}

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

.expertise-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.board-member {
    text-align: center;
    background: white;
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.board-avatar {
    width: 160px;
    height: 180px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0 auto 16px;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

.board-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.board-member h4 {
    color: var(--navy);
    margin-bottom: 6px;
    font-size: 1.05rem;
    line-height: 1.3;
}

.board-member .board-position {
    color: var(--orange);
    font-weight: 600;
    font-size: 0.8rem;
    display: block;
    line-height: 1.4;
}

.board-member .board-bio {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--gray-lighter);
    font-size: 0.82rem;
    line-height: 1.6;
    color: var(--text);
    text-align: center;
}

.board-member .board-bio p {
    margin-bottom: 6px;
}

.board-member .board-bio p:last-child {
    margin-bottom: 0;
}

.message-box {
    background: var(--navy);
    color: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.message-box::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    opacity: 0.1;
    font-family: serif;
}

/* ============================================
   5. CAREER PAGE
============================================ */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.benefit-card {
    background: var(--off-white);
    padding: 24px;
    border-radius: var(--radius);
    text-align: center;
    border-top: 3px solid var(--orange);
}

.benefit-icon {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.jobs-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.job-card {
    background: white;
    border: 1px solid var(--gray-lighter);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
    transition: all var(--transition);
}

.job-card:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.job-title {
    color: var(--navy);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.job-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--gray);
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.job-tag {
    display: inline-block;
    background: var(--orange-pale);
    color: var(--orange-dark);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-left: 8px;
}

.apply-btn {
    background: var(--navy);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all var(--transition-fast);
}

.apply-btn:hover {
    background: var(--orange);
}

.application-form {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-top: 40px;
    border: 1px solid var(--gray-lighter);
}

/* Form styles (shared across pages) */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--navy);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--gray-lighter);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--off-white);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: white;
    box-shadow: 0 0 0 3px rgba(232, 119, 34, 0.1);
}

.submit-btn {
    background: var(--orange);
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius);
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    transition: all var(--transition);
}

.submit-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}

/* ============================================
   6. CONTACT PAGE
============================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    margin-top: 40px;
    align-items: start;
}

.contact-form {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-lighter);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.contact-form .form-group textarea {
    min-height: 500px;
    resize: vertical;
}

.btn-submit {
    background: var(--orange);
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition);
    width: 100%;
}

.btn-submit:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contact-info-card {
    background: var(--navy);
    color: white;
    padding: 32px;
    border-radius: var(--radius-lg);
}

.right-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: white;
}

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

.info-icon {
    width: 42px;
    height: 42px;
    background: rgba(232, 119, 34, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.info-content strong {
    display: block;
    margin-bottom: 4px;
    color: var(--orange-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-content span,
.info-content a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    line-height: 1.5;
}

.info-content a:hover {
    color: var(--orange-light);
}

.map-section {
    margin-top: 60px;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   7. FACILITY PAGE
============================================ */

.facilities-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.facility-item {
    background: var(--off-white);
    border: 1px solid var(--gray-lighter);
    border-left: 4px solid var(--orange);
    padding: 20px 24px;
    border-radius: var(--radius);
    transition: all var(--transition);
}

.facility-item:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateX(4px);
}

.facility-item h4 {
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.facility-item p {
    color: var(--gray-dark);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.facility-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.management-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.staff-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 3px solid var(--orange);
}

.staff-avatar {
    width: 140px;
    height: 160px;
    border-radius: 8px;
    background: var(--navy);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 2rem;
    margin: 0 auto 16px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

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

.staff-card h5 {
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 4px;
}

.staff-card .staff-position {
    color: var(--orange);
    font-size: 0.85rem;
    font-weight: 600;
}

.staff-card .staff-bio {
    margin-top: 12px;
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text);
    text-align: center;
}

.staff-card .staff-bio p {
    margin-bottom: 6px;
}

/* ============================================
   8. GALLERY PAGE
============================================ */

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 30px 0 40px;
}

.filter-btn {
    padding: 8px 18px;
    border: 1px solid var(--gray-lighter);
    background: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--gray-dark);
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

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

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

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

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    transform: translateY(100%);
    transition: transform var(--transition);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-item .category-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(11, 30, 61, 0.85);
    color: white;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.open {
    display: flex;
}

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

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: background var(--transition-fast);
}

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

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

/* ============================================
   9. NEWS & ARTICLES
   Includes news-grid, news-featured, article details
============================================ */

/* News Grid Layout */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
}

/* Featured News Section */
.news-featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 30px;
    cursor: pointer;
    text-decoration: none;
}

.news-featured-img {
    background: linear-gradient(135deg, #1a3555, #0f2547);
    min-height: 320px;
}

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

.news-featured-body {
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Date Badge Component */
.news-date-badge {
    display: inline-block;
    background: var(--orange-pale);
    color: var(--orange-dark);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 12px;
    width: fit-content;
}

/* Article Details Page */
.article-hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.back-link:hover {
    color: white;
}

.article-meta {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.article-date {
    background: var(--orange);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
}

.article-category {
    color: var(--orange-light);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.article-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.article-image {
    max-width: 1100px;
    margin: -40px auto 0;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

.article-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.article-layout {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 50px;
    align-items: start;
}

.article-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #1f2937;
}

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

.article-content h2 {
    color: var(--navy);
    font-size: 1.4rem;
    margin: 32px 0 16px;
    font-weight: 700;
}

.article-content blockquote {
    border-left: 4px solid var(--orange);
    padding: 16px 24px;
    background: var(--orange-pale);
    margin: 24px 0;
    font-style: italic;
    color: var(--navy-dark);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.article-content img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 24px 0;
}

/* Share Box */
.share-box {
    display: flex;
    gap: 10px;
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid var(--gray-lighter);
    border-bottom: 1px solid var(--gray-lighter);
    align-items: center;
}

.share-label {
    font-weight: 600;
    color: var(--navy);
    margin-right: 8px;
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--navy);
    transition: all var(--transition-fast);
}

.share-btn:hover {
    background: var(--orange);
    color: white;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: white;
    border: 1px solid var(--gray-lighter);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}

.sidebar-card h3 {
    color: var(--navy);
    font-size: 1.1rem;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--orange-pale);
}

.recent-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-lighter);
}

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

.recent-thumb {
    width: 70px;
    height: 60px;
    background: var(--gray-pale);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    overflow: hidden;
}

.recent-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-content h4 {
    font-size: 0.9rem;
    color: var(--navy);
    margin-bottom: 4px;
    line-height: 1.3;
}

.recent-content a {
    text-decoration: none;
    color: inherit;
}

.recent-content a:hover h4 {
    color: var(--orange);
}

.recent-date {
    font-size: 0.75rem;
    color: var(--gray);
}

/* ============================================
   10. EVENTS SECTION
============================================ */

.event-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}

.event-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: var(--radius);
    border-left: 4px solid var(--orange);
    box-shadow: var(--shadow);
    align-items: center;
}

.event-date {
    text-align: center;
    background: var(--navy);
    color: white;
    border-radius: var(--radius);
    padding: 12px;
}

.event-date .day {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.event-date .month {
    font-size: 0.8rem;
    text-transform: uppercase;
    opacity: 0.9;
}

/* ============================================
   11. BROCHURE SECTION
============================================ */

.brochure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.brochure-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 3px solid var(--orange);
    transition: all var(--transition);
}

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

.brochure-icon {
    width: 64px;
    height: 64px;
    background: var(--orange-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.8rem;
    color: var(--orange-dark);
}

.download-btn {
    display: inline-block;
    margin-top: 14px;
    padding: 8px 18px;
    background: var(--navy);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}

.download-btn:hover {
    background: var(--orange);
}

/* ============================================
   12. PROJECT DETAILS PAGE
============================================ */

.project-hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.project-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}

.project-meta-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 16px 0;
}

.meta-tag {
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.project-hero-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4/3;
    background: var(--gray-pale);
}

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

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.spec-item {
    background: var(--off-white);
    padding: 18px;
    border-radius: var(--radius);
    border-left: 3px solid var(--orange);
}

.spec-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--gray);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.spec-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.timeline-mini {
    background: white;
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
    height: fit-content;
}

.timeline-step {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--gray-lighter);
}

.timeline-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-dot {
    width: 28px;
    height: 28px;
    background: var(--orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.gallery-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.gallery-mini img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: transform var(--transition-fast);
}

.gallery-mini img:hover {
    transform: scale(1.05);
}

/* ============================================
   13. PROJECTS PAGE
============================================ */

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

.project-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

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

.project-meta {
    display: flex;
    gap: 16px;
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--gray);
}

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

/* ============================================
   14. RESPONSIVE DESIGN
   Consolidated media queries
============================================ */

/* Tablet and below */
@media (max-width: 1024px) {
    .article-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sidebar {
        position: static;
    }
    
    .article-image img {
        height: 320px;
    }
    
    .project-hero-inner {
        grid-template-columns: 1fr;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-mini {
        position: static;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info-card {
        position: static;
    }
}

/* Mobile and below */
@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .job-card {
        grid-template-columns: 1fr;
    }
    
    .form-grid,
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .page-hero {
        padding: 100px 20px 60px;
    }
    
    /* News responsive */
    .news-featured {
        grid-template-columns: 1fr;
    }
    
    .news-featured-img {
        min-height: 220px;
    }
    
    /* Events responsive */
    .event-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .event-date {
        display: inline-block;
        width: auto;
        padding: 8px 16px;
    }
    
    .event-date .day {
        display: inline;
        font-size: 1.2rem;
    }
    
    .event-date .month {
        display: inline;
        margin-left: 5px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .brochure-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
}