/* ============================================
   BTC JOB FAIR - OFFICIAL GOVERNMENT STYLE
   Compact, Mobile-Friendly, Professional
   ============================================ */

:root {
    --govt-blue: #003D82;
    --govt-dark: #001F3F;
    --govt-light: #4A90E2;
    --govt-orange: #FF6B35;
    --govt-green: #27AE60;
    --pure-white: #FFFFFF;
    --light-bg: #F5F7FA;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --border-color: #BDC3C7;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Arial, sans-serif;
    background: var(--light-bg);
    color: var(--text-dark);
    overflow-x: hidden;
    font-size: 14px;
    line-height: 1.5;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ============ TOP ALERT BAR ============ */
.top-alert-bar {
    background: var(--govt-dark);
    color: var(--pure-white);
    padding: 6px 0;
    font-size: 12px;
    border-bottom: 2px solid var(--govt-orange);
}

.top-alert-bar marquee {
    font-weight: 500;
}

/* ============ HEADER ============ */
.jobfair-header {
    background: var(--govt-blue);
    padding: 10px 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 2px solid var(--govt-orange);
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.header-logo-left {
    height: 45px;
    width: auto;
    object-fit: contain;
    max-width: 120px;
}

.header-logo-right {
    height: 45px;
    width: auto;
    object-fit: contain;
    max-width: 120px;
    background-color: #FFFFFF;
    padding: 5px;
    border-radius: 3px;
}

.logo-text-center {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.site-logo {
    font-size: 18px;
    font-weight: 700;
    color: var(--pure-white);
    margin: 0;
    letter-spacing: 0.5px;
}

.logo-tagline {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 2px;
    font-weight: 400;
}

.main-nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.nav-link {
    background: rgba(255, 255, 255, 0.1);
    color: var(--pure-white);
    padding: 6px 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 12px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    background: var(--govt-orange);
    color: var(--pure-white);
}

/* ============ HERO BANNER SECTION ============ */
.banner-hero {
    background: var(--pure-white);
    padding: 0;
}

.banner-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero-banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px;
}

/* Banner responsive adjustments */
@media (max-width: 1200px) {
    .hero-banner-image {
        max-height: 500px;
    }
}

@media (max-width: 768px) {
    .hero-banner-image {
        max-height: 400px;
    }
    
    .banner-image-wrapper {
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    .hero-banner-image {
        max-height: 300px;
    }
}

/* ============ EVENT HIGHLIGHT ============ */
.event-highlight {
    background: var(--pure-white);
    padding: 20px 0;
    box-shadow: var(--shadow);
}

.note-important {
    background: var(--govt-orange);
    color: var(--pure-white);
    padding: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.event-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
}

.detail-card {
    background: var(--light-bg);
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    border: 2px solid var(--border-color);
}

.card-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.card-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 5px;
}

.card-value {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

/* ============ IMAGES SHOWCASE ============ */
.images-showcase {
    padding: 20px 0;
}

.images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.placeholder-image {
    background: var(--pure-white);
    padding: 30px;
    border-radius: 6px;
    text-align: center;
    border: 2px solid var(--border-color);
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-content {
    font-size: 32px;
    color: var(--text-light);
}

.image-content span {
    display: block;
    font-size: 12px;
    margin-top: 10px;
    font-weight: 600;
}

/* ============ REGISTRATION SECTION ============ */
.registration-section {
    background: var(--pure-white);
    padding: 25px 0;
    box-shadow: var(--shadow);
}

.reg-highlight-box {
    background: linear-gradient(135deg, #E8F5E9 0%, #FFF9C4 100%);
    padding: 20px;
    border-radius: 8px;
    border: 2px solid var(--govt-green);
}

.reg-icon {
    font-size: 36px;
    text-align: center;
    margin-bottom: 10px;
}

.reg-title {
    text-align: center;
    color: var(--govt-blue);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.registration-link-box {
    background: var(--pure-white);
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    margin: 15px 0;
    border: 2px dashed var(--govt-blue);
}

.reg-link-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 5px;
}

.reg-link-url {
    font-size: 15px;
    font-weight: 700;
    color: var(--govt-blue);
}

.documents-required {
    margin: 15px 0;
}

.doc-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    color: var(--text-dark);
}

.doc-lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.doc-list {
    list-style: none;
    padding: 0;
}

.doc-list li {
    padding: 5px 0;
    font-size: 12px;
    color: var(--text-dark);
}

.mega-apply-btn {
    display: inline-block;
    background: var(--govt-orange);
    color: var(--pure-white);
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border-radius: 6px;
    margin: 15px 0 10px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.mega-apply-btn:hover {
    background: #E55A2B;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.apply-button-section {
    text-align: center;
}

.urgent-text {
    font-size: 12px;
    color: var(--danger-red);
    font-weight: 600;
    margin-top: 8px;
}

/* ============ CONTACT INFO ============ */
.contact-info-section {
    background: var(--light-bg);
    padding: 20px 0;
}

.contact-box {
    background: var(--pure-white);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
}

.contact-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.contact-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--govt-blue);
    margin-bottom: 12px;
}

.phone-numbers {
    margin: 15px 0;
}

.phone-link {
    display: inline-block;
    color: var(--govt-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin: 0 5px;
    padding: 5px 10px;
    border: 2px solid var(--govt-blue);
    border-radius: 4px;
    transition: all 0.2s ease;
}

.phone-link:hover {
    background: var(--govt-blue);
    color: var(--pure-white);
}

.separator {
    color: var(--text-light);
    margin: 0 5px;
}

.coordinated-by {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 2px solid var(--border-color);
}

.coordinated-by p {
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.coordinators {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
}

/* ============ FEATURES HIGHLIGHT ============ */
.features-highlight {
    padding: 25px 0;
    background: var(--pure-white);
}

.features-title {
    text-align: center;
    color: var(--govt-blue);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.features-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
}

.showcase-card {
    background: var(--light-bg);
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.showcase-card:hover {
    border-color: var(--govt-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.showcase-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.showcase-card h3 {
    font-size: 13px;
    font-weight: 700;
    color: var(--govt-blue);
    margin-bottom: 6px;
}

.showcase-card p {
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.4;
}

/* ============ STATUS CHECK SECTION ============ */
.status-check-section {
    padding: 25px 0;
    background: var(--light-bg);
}

.status-box {
    background: var(--pure-white);
    padding: 20px;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow);
}

.status-title {
    text-align: center;
    color: var(--govt-blue);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.status-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 12px;
    margin-bottom: 15px;
}

.status-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.status-input {
    flex: 1;
    padding: 10px 12px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 13px;
}

.status-input:focus {
    outline: none;
    border-color: var(--govt-blue);
}

.status-btn {
    padding: 10px 20px;
    background: var(--govt-blue);
    color: var(--pure-white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.status-btn:hover {
    background: var(--govt-dark);
}

.result-card {
    padding: 15px;
    border-radius: 6px;
    margin-top: 15px;
}

.success-card {
    background: #E8F5E9;
    border: 2px solid var(--govt-green);
}

.error-card {
    background: #FFEBEE;
    border: 2px solid #EF5350;
}

.result-card h3 {
    font-size: 15px;
    margin-bottom: 10px;
}

.result-details p {
    font-size: 12px;
    margin: 6px 0;
    color: var(--text-dark);
}

.result-status {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 11px;
}

.status-pending {
    background: #FFF9C4;
    color: #F57C00;
}

/* ============ FOOTER ============ */
.jobfair-footer {
    background: var(--govt-dark);
    color: var(--pure-white);
    padding: 20px 0;
}

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

.footer-heading {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--pure-white);
}

.footer-col p {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin: 6px 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--govt-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    font-size: 11px;
    margin: 5px 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-developer {
    margin-top: 8px !important;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-developer a {
    color: var(--govt-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-developer a:hover {
    color: var(--pure-white);
    text-decoration: underline;
}

/* ============ MOBILE RESPONSIVE ============ */
@media (max-width: 768px) {
    body {
        font-size: 13px;
    }
    
    .logo-section {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 8px;
    }
    
    .header-logo-left,
    .header-logo-right {
        height: 35px;
        max-width: 100px;
    }
    
    .logo-text-center {
        min-width: auto;
        width: 100%;
    }
    
    .site-logo {
        font-size: 16px;
    }
    
    .logo-tagline {
        font-size: 9px;
    }
    
    .mega-text {
        font-size: 28px;
    }
    
    .jobfair-text {
        font-size: 24px;
    }
    
    .year-badge {
        font-size: 16px;
        padding: 6px 12px;
    }
    
    .event-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .images-grid {
        grid-template-columns: 1fr;
    }
    
    .doc-lists {
        grid-template-columns: 1fr;
    }
    
    .phone-link {
        display: block;
        margin: 5px 0;
    }
    
    .separator {
        display: none;
    }
    
    .features-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .status-input-group {
        flex-direction: column;
    }
    
    .status-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .mega-hero {
        padding: 20px 0;
    }
    
    .event-details-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-card {
        padding: 10px;
    }
    
    .features-showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .mega-apply-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

