/*
Theme Name: FireUpp
Description: A professional job portal theme matching FireUpp.com design exactly
Version: 1.0.0
*/

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #007bff;
    text-decoration: none;
}

.logo span {
    color: #28a745;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #007bff;
}

.get-app-btn {
    background: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
}

.get-app-btn:hover {
    background: #0056b3;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #007bff 0%, #28a745 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Search Bar */
.search-section {
    background: white;
    padding: 2rem 0;
    margin: -2rem 0 2rem 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.search-form {
    display: flex;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.search-input {
    flex: 1;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    min-width: 200px;
}

.search-btn {
    background: #007bff;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.search-btn:hover {
    background: #0056b3;
}

/* Quick Links */
.quick-links {
    text-align: center;
    margin: 2rem 0;
}

.quick-links h3 {
    margin-bottom: 1rem;
    color: #333;
}

.links-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.quick-link {
    background: #f8f9fa;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    color: #007bff;
    border: 1px solid #e9ecef;
    transition: all 0.3s;
}

.quick-link:hover {
    background: #007bff;
    color: white;
}

/* Job Sections */
.jobs-section {
    margin: 3rem 0;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* Job Card */
.job-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid #007bff;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.job-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.job-meta-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
}

.job-meta-item strong {
    color: #333;
    margin-right: 5px;
}

.job-date {
    font-size: 0.85rem;
    color: #28a745;
    font-weight: 500;
}

.job-vacancies {
    background: #e3f2fd;
    color: #1976d2;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* View More Button */
.view-more {
    text-align: center;
    margin: 3rem 0;
}

.view-more-btn {
    background: #28a745;
    color: white;
    padding: 15px 40px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s;
    display: inline-block;
}

.view-more-btn:hover {
    background: #1e7e34;
}

/* Footer */
.site-footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #007bff;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #007bff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Mobile First Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .jobs-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        position: relative;
    }
    
    .mobile-menu-toggle {
        display: block;
        order: 3;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        display: none;
        z-index: 1000;
    }
    
    .main-nav.active {
        display: block;
        animation: slideDown 0.3s ease-out;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
    }
    
    .main-nav li {
        border-bottom: 1px solid #f0f0f0;
    }
    
    .main-nav a {
        display: block;
        padding: 15px 20px;
        color: #333;
        transition: background 0.3s;
    }
    
    .main-nav a:hover {
        background: #f8f9fa;
        color: #007bff;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .search-form {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .search-input {
        min-width: auto;
        width: 100%;
    }
    
    .search-btn {
        width: 100%;
        padding: 18px;
        font-size: 1.1rem;
    }
    
    .jobs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .job-card {
        padding: 1.5rem;
        margin: 0;
    }
    
    .job-title {
        font-size: 1.2rem;
        line-height: 1.3;
        margin-bottom: 1.2rem;
    }
    
    .job-meta {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .job-meta-item {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .quick-links {
        margin: 1.5rem 0;
    }
    
    .links-grid {
        gap: 0.8rem;
    }
    
    .quick-link {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
    
    .get-app-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Mobile Responsive Styles */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .job-card {
        padding: 1.5rem;
    }
    
    .hero-section {
        padding: 2rem 0;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .search-section {
        margin: -1rem 0 1rem 0;
        padding: 1.5rem 0;
    }
    
    .job-title {
        font-size: 1.1rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

/* Newsletter Styles */
.newsletter-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0;
    color: white;
    text-align: center;
    margin: 4rem 0;
}

.newsletter-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 0;
    background: white;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.newsletter-input {
    flex: 1;
    border: none;
    padding: 15px 20px;
    border-radius: 45px;
    font-size: 1rem;
    outline: none;
    background: transparent;
}

.newsletter-btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 45px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.4);
}

.newsletter-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Alert Messages */
.alert {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    z-index: 9999;
    min-width: 300px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: slideInRight 0.3s ease;
}

.alert-success {
    background: #28a745;
}

.alert-error {
    background: #dc3545;
}

.alert-info {
    background: #007bff;
}

.close-alert {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.8;
    margin-left: 10px;
}

.close-alert:hover {
    opacity: 1;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Share Menu Styles */
.share-menu {
    position: absolute;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    padding: 10px;
    z-index: 1000;
    min-width: 200px;
    display: none;
}

.share-option {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    border-radius: 5px;
    transition: background 0.3s;
    gap: 10px;
}

.share-option:hover {
    background: #f8f9fa;
    color: #007bff;
}

.share-option i {
    width: 20px;
    text-align: center;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
}

.modal {
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

.modal-header {
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #333;
}

.modal-body {
    padding: 30px;
}

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid #eee;
    text-align: right;
}

/* Enhanced Job Card Styles */
.job-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.job-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-urgent {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.badge-featured {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.badge-expired {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    opacity: 0.7;
}

.job-actions {
    display: flex;
    gap: 10px;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    border: none;
}

.btn-primary {
    background: #007bff;
    color: white;
}

.btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,123,255,0.3);
}

.btn-outline {
    background: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

.btn-outline:hover {
    background: #007bff;
    color: white;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #545b62;
}

/* Back to Top Button */
#back-to-top, #backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

#back-to-top.show, #backToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#back-to-top:hover, #backToTop:hover {
    background: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,123,255,0.4);
}

/* Breadcrumbs */
.breadcrumbs {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.divider {
    color: #6c757d;
}

.current {
    color: #6c757d;
    font-weight: 500;
}

/* Archive Page Styles */
.archive-header {
    background: linear-gradient(135deg, #007bff 0%, #28a745 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.archive-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.archive-description {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.filter-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}

.filter-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group select,
.form-group input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
}

/* Mobile Newsletter Styles */
@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
        background: transparent;
        gap: 15px;
        padding: 0;
    }
    
    .newsletter-input {
        background: white;
        border: 2px solid rgba(255,255,255,0.3);
        color: #333;
        border-radius: 25px;
    }
    
    .newsletter-input::placeholder {
        color: #666;
    }
    
    .newsletter-btn {
        width: 100%;
        padding: 15px;
        border-radius: 25px;
        font-size: 1.1rem;
    }
    
    .alert {
        right: 10px;
        left: 10px;
        min-width: auto;
    }
    
    .filter-form {
        grid-template-columns: 1fr;
    }
    
    .archive-title {
        font-size: 2rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Form Error States */
.form-group input.error,
.form-group select.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220,53,69,0.1);
}

/* Loading States */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: #666;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .quick-links h3 {
        font-size: 1.2rem;
    }
}

/* Additional Enhancements for FireUpp Style */
.site-branding {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-tagline {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
}

/* Job Card Enhancements */
.job-card:hover {
    border-left-color: #28a745;
}

.job-meta-item {
    position: relative;
}

.job-meta-item::before {
    content: "•";
    color: #007bff;
    margin-right: 8px;
    font-weight: bold;
}

.job-meta-item:first-child::before {
    content: "📅";
    margin-right: 5px;
}

/* Enhanced Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #007bff;
    color: white;
}

.btn-primary:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.btn-success {
    background: #28a745;
    color: white;
}

.btn-success:hover {
    background: #1e7e34;
    transform: translateY(-2px);
}

/* Enhanced Header */
.site-header {
    transition: all 0.3s ease;
}

.header-content {
    position: relative;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}

/* Social Links Styling */
.social-links {
    display: flex;
    gap: 10px;
    margin-top: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #007bff;
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #0056b3;
    transform: translateY(-3px);
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.3;
}

.highlight-text {
    color: #007bff;
    font-weight: 600;
}

.text-muted {
    color: #666;
}

/* Loading States */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Notification/Alert Styles */
.alert {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 1rem;
    border-left: 4px solid;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-left-color: #28a745;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border-left-color: #dc3545;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border-left-color: #17a2b8;
}

/* Enhanced Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

/* Enhanced Stats/Counter */
.stats-counter {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.stats-number {
    font-size: 3rem;
    font-weight: 700;
    color: #007bff;
    display: block;
}

.stats-label {
    font-size: 1.1rem;
    color: #666;
    margin-top: 0.5rem;
}

/* Job Badge Styles */
.job-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
}

.job-badge-government {
    background: #e8f5e8;
    color: #2e7d2e;
}

.job-badge-private {
    background: #fff3cd;
    color: #856404;
}

.job-badge-urgent {
    background: #f8d7da;
    color: #721c24;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Enhanced Card Styles */
.card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.card-header {
    padding: 1.5rem;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.card-body {
    padding: 1.5rem;
}

.card-footer {
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.align-center { align-items: center; }

/* Animation Classes */
.fadeIn {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slideUp {
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* FireUpp Specific Styles */

/* Breadcrumbs */
.breadcrumb-section {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumbs {
    font-size: 14px;
}

.breadcrumb-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumbs a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.breadcrumbs .divider {
    color: #6c757d;
    margin: 0 5px;
}

.breadcrumbs .current {
    color: #495057;
    font-weight: 500;
}

/* Alert Messages */
.alert {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: slideInRight 0.3s ease-out;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border-left: 4px solid #17a2b8;
}

.close-alert {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    margin-left: 15px;
    opacity: 0.7;
}

.close-alert:hover {
    opacity: 1;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.3s ease-in;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal {
    background: white;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease-out;
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h3 {
    margin: 0;
    color: #333;
}

.close-modal {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #6c757d;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    color: #dc3545;
}

.modal-body {
    padding: 20px;
}

.modal-footer {
    padding: 20px;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.7) translateY(-50px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* Share Menu */
.share-menu {
    position: absolute;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    padding: 10px;
    z-index: 1000;
    display: none;
}

.share-menu-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.share-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    border-radius: 5px;
    transition: background 0.2s;
    white-space: nowrap;
}

.share-option:hover {
    background: #f8f9fa;
}

.share-option i {
    width: 20px;
    text-align: center;
}

/* Form Error States */
input.error,
select.error,
textarea.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Enhanced Job Card Styles for Mobile */
@media (max-width: 768px) {
    .job-card {
        margin-bottom: 1rem;
    }
    
    .job-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .job-badges {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

/* Animation Classes */
.bounce {
    animation: bounce 0.6s ease-in-out;
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0,0,0);
    }
    40%, 43% {
        transform: translate3d(0, -10px, 0);
    }
    70% {
        transform: translate3d(0, -5px, 0);
    }
    90% {
        transform: translate3d(0, -2px, 0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Progress Bars */
.form-progress {
    margin-bottom: 20px;
}

.form-progress-bar {
    width: 0%;
    height: 4px;
    background: #007bff;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.form-progress-text {
    font-size: 12px;
    color: #6c757d;
    margin-top: 5px;
}

/* Enhanced Mobile Navigation */
@media (max-width: 768px) {
    .main-navigation.active {
        display: block;
        animation: slideDown 0.3s ease-out;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .mobile-menu-btn span {
        display: block;
        width: 25px;
        height: 3px;
        background: #333;
        margin: 3px 0;
        transition: 0.3s;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .main-footer,
    .breadcrumb-section,
    .apply-section,
    .share-btn,
    .back-to-top {
        display: none !important;
    }
    
    .job-single {
        padding: 0;
    }
    
    .job-header,
    .job-description {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* Enhanced Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Focus States */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #007bff;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 0 0 4px 4px;
}

.skip-link:focus {
    top: 0;
}

/* Top Bar */
.top-bar {
    background: #2c3e50;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left span {
    margin-right: 20px;
}

.top-bar-left i {
    margin-right: 5px;
    color: #3498db;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #3498db;
    transform: translateY(-2px);
}

/* Main Header */
.main-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

/* Logo */
.logo-section {
    flex: 1;
}

.site-logo {
    display: block;
    text-decoration: none;
}

.logo-text {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.logo-main {
    color: #2c3e50;
}

.logo-accent {
    color: #3498db;
}

.logo-tagline {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
    font-weight: 400;
}

/* Navigation */
.main-navigation {
    flex: 2;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu li {
    position: relative;
}

.nav-menu li a {
    color: #2c3e50;
    font-weight: 500;
    padding: 10px 0;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #3498db;
}

.nav-menu li a i {
    margin-left: 5px;
    font-size: 12px;
}

/* Dropdown Menu */
.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    padding: 10px 20px;
    display: block;
    color: #2c3e50;
    font-weight: 400;
}

.dropdown-menu li a:hover {
    background: #f8f9fa;
    color: #3498db;
}

/* Header Actions */
.header-actions {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.search-btn {
    background: none;
    border: none;
    color: #666;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #f8f9fa;
    color: #3498db;
}

.post-job-btn {
    background: #3498db;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-job-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 3px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: 0.3s;
}

/* Header Search */
.header-search {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    padding: 20px 0;
    display: none;
}

.header-search.active {
    display: block;
}

.search-wrapper {
    display: flex;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.search-input {
    flex: 2;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.search-select {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    background: white;
}

.search-submit {
    background: #3498db;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-submit:hover {
    background: #2980b9;
}

/* Hero Section Updates */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    animation: slideInLeft 0.8s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Hero Search Updates */
.hero-search {
    margin-bottom: 2rem;
}

.job-search-form {
    background: white;
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.search-fields {
    display: flex;
    gap: 8px;
}

.field-group {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.field-group i {
    position: absolute;
    left: 15px;
    color: #666;
    z-index: 1;
}

.search-field {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
}

.search-field:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.search-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.search-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Popular Searches */
.popular-searches {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.popular-searches .label {
    font-weight: 500;
    opacity: 0.8;
}

.tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Hero Right */
.hero-right {
    animation: slideInRight 0.8s ease-out;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.stat-item {
    background: white;
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 2rem;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Job Categories Section */
.job-categories {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.category-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.category-link {
    display: block;
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    color: inherit;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.category-icon i {
    font-size: 2rem;
    color: white;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.category-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.jobs-count {
    color: #666;
    font-size: 14px;
}

/* Job Card Updates */
.job-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #3498db;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.job-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.3;
    margin-bottom: 8px;
}

.job-title a {
    color: inherit;
    text-decoration: none;
}

.job-title a:hover {
    color: #3498db;
}

.job-organization {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.job-badge {
    background: #e8f5e8;
    color: #27ae60;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #666;
    font-size: 14px;
}

.meta-item i {
    color: #3498db;
}

.job-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-date {
    color: #999;
    font-size: 13px;
}

.apply-btn {
    background: #3498db;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    padding: 60px 0;
    color: white;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.newsletter-text h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.newsletter-form {
    flex: 1;
    max-width: 400px;
}

.subscribe-form {
    display: flex;
    background: white;
    border-radius: 8px;
    padding: 4px;
}

.email-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
}

.email-input:focus {
    outline: none;
}

.subscribe-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Footer Updates */
.main-footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3,
.footer-column h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-logo .logo-link {
    display: inline-block;
    margin-bottom: 10px;
}

.footer-logo .logo-main {
    color: white;
    font-size: 2rem;
    font-weight: 900;
}

.footer-logo .logo-accent {
    color: #3498db;
    font-size: 2rem;
    font-weight: 900;
}

.footer-tagline {
    color: #bdc3c7;
    font-size: 14px;
    margin-bottom: 20px;
}

.company-description {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 30px;
}

.social-media h4 {
    font-size: 1rem;
    margin-bottom: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-link.facebook { background: #3b5998; }
.social-link.twitter { background: #1da1f2; }
.social-link.instagram { background: #e4405f; }
.social-link.linkedin { background: #0077b5; }
.social-link.youtube { background: #ff0000; }

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-menu li a:hover {
    color: #3498db;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    color: #3498db;
    width: 20px;
    margin-top: 2px;
}

.contact-details strong {
    display: block;
    color: white;
    margin-bottom: 5px;
    font-size: 14px;
}

.contact-details span {
    color: #bdc3c7;
    font-size: 14px;
}

.app-downloads h4 {
    margin-bottom: 15px;
    font-size: 1rem;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-btn img {
    width: 130px;
    height: 40px;
}

.footer-bottom {
    background: #34495e;
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: #3498db;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    background: #2980b9;
    transform: translateY(-3px);
}

.back-to-top.show {
    display: flex;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .header-wrapper {
        padding: 10px 0;
    }
    
    .main-navigation {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .search-fields {
        flex-direction: column;
        gap: 10px;
    }
    
    .field-group {
        width: 100%;
    }
    
    .popular-searches {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        padding: 30px 15px;
    }
    
    .job-card {
        padding: 20px;
    }
    
    .subscribe-form {
        flex-direction: column;
        gap: 10px;
    }
}

/* FireUpp.com Specific Styles - Exact Match */

/* Main Content Layout */
.main-content {
    background: #f8f9fa;
    min-height: 100vh;
}

/* Search Box Section */
.search-box-section {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    padding: 60px 0;
    color: white;
}

.search-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.search-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.text-highlight {
    color: #fbbf24;
}

.search-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Main Search Form */
.main-search-form {
    background: white;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}

.search-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 120px;
    gap: 8px;
    align-items: center;
}

.search-field input,
.search-field select {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    background: #f8f9fa;
    color: #333;
}

.search-field input:focus,
.search-field select:focus {
    outline: none;
    background: #e9ecef;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.search-submit-btn {
    background: #10b981;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
}

.search-submit-btn:hover {
    background: #059669;
    transform: translateY(-2px);
}

/* Quick Links */
.quick-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.quick-label {
    font-weight: 500;
    opacity: 0.8;
}

.quick-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.quick-link {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Main Jobs Section */
.main-jobs-section {
    padding: 40px 0;
}

.jobs-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: start;
}

/* Jobs Sidebar */
.jobs-sidebar {
    background: white;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 20px;
}

.sidebar-widget {
    padding: 25px;
    border-bottom: 1px solid #e5e7eb;
}

.sidebar-widget:last-child {
    border-bottom: none;
}

.widget-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 20px;
}

.category-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.category-item {
    margin-bottom: 8px;
}

.category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: #f9fafb;
    border-radius: 6px;
    text-decoration: none;
    color: #4b5563;
    transition: all 0.2s ease;
    font-size: 14px;
}

.category-link:hover {
    background: #4f46e5;
    color: white;
}

.category-name {
    font-weight: 500;
}

.job-count {
    font-size: 12px;
    opacity: 0.8;
}

.quick-search-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quick-search-link {
    display: block;
    padding: 10px 12px;
    background: #f0f9ff;
    color: #0369a1;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.quick-search-link:hover {
    background: #0369a1;
    color: white;
}

/* Jobs Main Content */
.jobs-main-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.jobs-section-header {
    padding: 30px 30px 0 30px;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 0;
}

.jobs-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.jobs-section-subtitle {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Jobs List */
.jobs-list {
    padding: 0;
}

.job-item {
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.job-item:hover {
    background: #fafbfc;
}

.job-item:last-child {
    border-bottom: none;
}

.job-item-content {
    padding: 20px 30px;
}

.job-header {
    margin-bottom: 12px;
}

.job-title {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
}

.job-title a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.2s ease;
}

.job-title a:hover {
    color: #4f46e5;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.job-org,
.job-type,
.job-location,
.job-vacancies {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #6b7280;
}

.job-org i,
.job-type i,
.job-location i,
.job-vacancies i {
    color: #9ca3af;
    font-size: 12px;
}

.job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.job-dates {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: #9ca3af;
}

.last-date {
    color: #dc2626 !important;
    font-weight: 500;
}

.job-actions {
    display: flex;
    gap: 10px;
}

.btn-view-details {
    background: #f3f4f6;
    color: #374151;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-view-details:hover {
    background: #e5e7eb;
    color: #1f2937;
}

.btn-apply {
    background: #10b981;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-apply:hover {
    background: #059669;
    transform: translateY(-1px);
}

/* Load More Section */
.load-more-section {
    padding: 20px 30px;
    background: #f9fafb;
    text-align: center;
}

.btn-load-more {
    background: #4f46e5;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-load-more:hover {
    background: #4338ca;
    transform: translateY(-2px);
}

/* Popular Categories Section */
.popular-categories-section {
    padding: 40px 0;
    background: white;
}

.popular-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.popular-category-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.popular-category-card:hover {
    border-color: #4f46e5;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.1);
    transform: translateY(-5px);
}

.category-card-link {
    display: block;
    padding: 25px 20px;
    text-decoration: none;
    color: inherit;
    text-align: center;
}

.category-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    opacity: 0.8;
}

.category-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 5px;
}

.category-count {
    font-size: 13px;
    color: #6b7280;
}

/* No Jobs Message */
.no-jobs {
    text-align: center;
    padding: 60px 30px;
    color: #6b7280;
    font-size: 16px;
}

/* Mobile Responsive for FireUpp Layout */
@media (max-width: 1024px) {
    .jobs-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .jobs-sidebar {
        position: static;
        order: 2;
    }
    
    .jobs-main-content {
        order: 1;
    }
    
    .popular-categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    .search-box-section {
        padding: 40px 0;
    }
    
    .search-title {
        font-size: 2rem;
    }
    
    .search-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .main-search-form {
        padding: 15px;
    }
    
    .search-field input,
    .search-field select {
        padding: 12px;
    }
    
    .search-submit-btn {
        padding: 12px;
        font-size: 16px;
    }
    
    .quick-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .quick-tags {
        justify-content: center;
    }
    
    .jobs-section-header {
        padding: 20px 20px 0 20px;
    }
    
    .job-item-content {
        padding: 15px 20px;
    }
    
    .job-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .job-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .btn-view-details,
    .btn-apply {
        flex: 1;
        text-align: center;
    }
    
    .load-more-section {
        padding: 20px;
    }
    
    .popular-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .category-card-link {
        padding: 20px 15px;
    }
}

@media (max-width: 480px) {
    .search-title {
        font-size: 1.8rem;
    }
    
    .main-jobs-section {
        padding: 20px 0;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
    
    .jobs-section-title {
        font-size: 1.3rem;
    }
    
    .job-title {
        font-size: 1rem;
    }
    
    .job-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .popular-categories-grid {
        grid-template-columns: 1fr;
    }
}
