/* ==========================================
   LANCASHIRE BOILER DIRECTORY - MAIN STYLES
   ========================================== */

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

:root {
    --primary-blue: #1e5f8c;
    --secondary-blue: #2980b9;
    --light-blue: #3498db;
    --dark-blue: #154360;
    --accent-blue: #5dade2;
    --urgent-red: #e74c3c;
    --urgent-red-dark: #c0392b;
    --success-green: #27ae60;
    --warning-orange: #f39c12;
    --text-dark: #2c3e50;
    --text-medium: #34495e;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    line-height: 1.6;
    min-height: 100vh;
}

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

/* ==========================================
   NAVIGATION BAR
   ========================================== */

.navbar {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    padding: 15px 0;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-brand i {
    color: var(--warning-orange);
    font-size: 1.8rem;
}

.nav-brand strong {
    font-weight: 800;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px 10px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 5px;
    align-items: center;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links li a:hover,
.nav-links li a.active {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.nav-links li a i {
    font-size: 1rem;
}

/* ==========================================
   URGENT BANNER
   ========================================== */

.urgent-banner {
    background: linear-gradient(135deg, var(--urgent-red) 0%, var(--urgent-red-dark) 100%);
    color: white;
    padding: 40px 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    margin-bottom: 30px;
}

.urgent-content {
    max-width: 600px;
    margin: 0 auto;
}

.urgent-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

.urgent-banner h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.urgent-subtitle {
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 500;
}

.urgent-cta {
    display: inline-block;
    background: white;
    color: var(--urgent-red);
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.urgent-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.urgent-cta i {
    margin-right: 10px;
    animation: ring 1.5s infinite;
}

.urgent-note {
    font-size: 0.9rem;
    opacity: 0.95;
    margin-top: 10px;
}

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

@keyframes ring {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
}

/* ==========================================
   MAIN CONTENT
   ========================================== */

.main-content {
    padding: 30px 0 50px;
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-header h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-weight: 700;
}

.page-header p {
    color: var(--text-medium);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* ==========================================
   SEARCH SECTION
   ========================================== */

.search-section {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
}

.search-container {
    max-width: 700px;
    margin: 0 auto 30px;
}

.search-box {
    display: flex;
    align-items: center;
    background: var(--bg-light);
    border-radius: 50px;
    padding: 5px 25px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.search-box:focus-within {
    border-color: var(--light-blue);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.search-box i {
    color: var(--light-blue);
    font-size: 1.2rem;
    margin-right: 12px;
}

.search-box input {
    flex: 1;
    border: none;
    background: none;
    padding: 15px 10px;
    font-size: 1rem;
    outline: none;
    font-family: inherit;
}

.clear-btn {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 5px 10px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.clear-btn:hover {
    color: var(--urgent-red);
}

/* ==========================================
   FILTER SECTION
   ========================================== */

.filter-section {
    margin-top: 25px;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.filter-group label i {
    color: var(--light-blue);
    margin-right: 6px;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.filter-btn:hover {
    background: var(--accent-blue);
    color: white;
    border-color: var(--accent-blue);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--light-blue);
    color: white;
    border-color: var(--light-blue);
}

.filter-stats {
    margin-top: 20px;
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-medium);
    font-weight: 600;
}

.filter-stats span {
    color: var(--light-blue);
    font-size: 1.5rem;
    font-weight: 700;
}

/* ==========================================
   CITY DIRECTORY CARDS (HOMEPAGE)
   ========================================== */

.city-directory {
    margin: 50px 0;
}

.section-title {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

.section-title i {
    color: var(--light-blue);
    margin-right: 12px;
}

/* Home Search Bar */
.home-search {
    max-width: 700px;
    margin: 0 auto 40px;
}

.search-box-home {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    padding: 8px 30px;
    border: 3px solid var(--light-blue);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
}

.search-box-home:focus-within {
    border-color: var(--secondary-blue);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
    transform: translateY(-2px);
}

.search-box-home i {
    color: var(--light-blue);
    font-size: 1.4rem;
    margin-right: 15px;
}

.search-box-home input {
    flex: 1;
    border: none;
    background: none;
    padding: 15px 10px;
    font-size: 1.1rem;
    outline: none;
    font-family: inherit;
    font-weight: 500;
}

.search-hint {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 12px;
}

.search-hint i {
    color: var(--light-blue);
    margin-right: 6px;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.city-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 35px 30px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    min-height: 200px;
    overflow: hidden;
}

.city-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--light-blue) 0%, var(--secondary-blue) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.city-card:hover::before {
    transform: scaleX(1);
}

.city-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 28px rgba(52, 152, 219, 0.25);
    border-color: var(--light-blue);
    background: white;
}

.city-card-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--secondary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 18px;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
}

.city-card:hover .city-card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 16px rgba(52, 152, 219, 0.4);
}

.city-card h4 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.city-card:hover h4 {
    color: var(--secondary-blue);
}

.city-count {
    background: var(--bg-light);
    color: var(--text-dark);
    font-size: 0.95rem;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.city-card:hover .city-count {
    background: var(--light-blue);
    color: white;
}

.city-arrow {
    color: var(--light-blue);
    font-size: 1.3rem;
    margin-top: auto;
    transition: all 0.3s ease;
}

.city-card:hover .city-arrow {
    transform: translateX(5px);
    color: var(--secondary-blue);
}

/* Calculator Inline Positioning */
.home-calculator-inline {
    grid-column: 1 / -1;
    margin: 40px 0;
}

.home-calculator-inline .tool-card {
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(243, 156, 18, 0.15);
}

/* Home Calculator Section */
.home-calculator {
    margin: 60px 0;
}

.home-calculator .tool-card {
    max-width: 800px;
    margin: 0 auto;
}

/* Quick Links Section */
.quick-links {
    margin: 50px 0;
}

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

.quick-link-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border-top: 4px solid var(--light-blue);
}

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

.quick-link-card i {
    font-size: 2.5rem;
    color: var(--light-blue);
    margin-bottom: 15px;
    display: block;
}

.quick-link-card h4 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-weight: 700;
}

.quick-link-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* ==========================================
   DIRECTORY PAGE
   ========================================== */

.directory-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    padding: 50px 20px 35px;
    text-align: center;
    margin-bottom: 40px;
}

.directory-hero h1 {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.directory-hero h1 i {
    color: var(--warning-orange);
    margin-right: 15px;
}

.directory-hero p {
    font-size: 1.15rem;
    opacity: 0.95;
}

.directory-search {
    max-width: 700px;
    margin: 0 auto 30px;
}

.directory-search .search-box {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    padding: 5px 25px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.directory-search .search-box:focus-within {
    border-color: var(--light-blue);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.directory-filters {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.directory-filters .filter-group {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.directory-filters .filter-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.directory-filters .filter-group label i {
    color: var(--light-blue);
    margin-right: 6px;
}

.directory-filters select {
    padding: 10px 20px;
    border: 2px solid var(--border-color);
    border-radius: 25px;
    font-size: 0.95rem;
    font-family: inherit;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.directory-filters select:focus {
    outline: none;
    border-color: var(--light-blue);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

@media (max-width: 768px) {
    .directory-hero h1 {
        font-size: 1.8rem;
    }

    .directory-hero p {
        font-size: 1rem;
    }

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

    .directory-filters .filter-group {
        flex-direction: column;
        align-items: stretch;
    }

    .directory-filters select {
        width: 100%;
    }

    .filter-stats {
        text-align: center;
    }
}

/* ==========================================
   BREADCRUMB & CITY CTA
   ========================================== */

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 0;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--light-blue);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb i {
    color: var(--text-light);
    font-size: 0.8rem;
}

.breadcrumb span {
    color: var(--text-dark);
    font-weight: 600;
}

.city-bottom-cta {
    margin-top: 50px;
}

.cta-box {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--secondary-blue) 100%);
    color: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.cta-box i {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.btn-cta {
    display: inline-block;
    background: white;
    color: var(--primary-blue);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .cta-box {
        padding: 30px 20px;
    }

    .cta-box h3 {
        font-size: 1.4rem;
    }

    .cta-box p {
        font-size: 1rem;
    }
}

/* ==========================================
   DIRECTORY CARDS (Equal Height)
   ========================================== */

.directory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 30px;
    align-items: stretch;
}

.company-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--light-blue);
}

.card-header {
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.company-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
    line-height: 1.3;
}

.company-city {
    display: inline-block;
    background: var(--bg-light);
    color: var(--text-medium);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.company-city i {
    margin-right: 5px;
    color: var(--light-blue);
}

.card-body {
    margin-bottom: 15px;
    flex-grow: 1;
}

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

.info-item i {
    color: var(--light-blue);
    margin-top: 3px;
    font-size: 1rem;
    min-width: 20px;
}

.info-item strong {
    color: var(--text-dark);
    min-width: 100px;
    font-weight: 600;
}

.info-item span {
    color: var(--text-medium);
    flex: 1;
}

.services-list {
    font-size: 0.9rem;
    line-height: 1.6;
}

.emergency-badge {
    display: inline-block;
    background: var(--urgent-red);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 5px;
}

.emergency-badge i {
    margin-right: 5px;
}

.emergency-badge.available {
    background: var(--success-green);
}

.certification-badge {
    display: inline-block;
    background: var(--success-green);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 5px 5px 0 0;
}

.card-footer {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid var(--bg-light);
}

.btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-call {
    background: var(--success-green);
    color: white;
}

.btn-call:hover {
    background: #229954;
    transform: scale(1.03);
}

.btn-website {
    background: var(--light-blue);
    color: white;
}

.btn-website:hover {
    background: var(--secondary-blue);
    transform: scale(1.03);
}

.btn:disabled {
    background: var(--border-color);
    cursor: not-allowed;
    opacity: 0.6;
}

/* ==========================================
   NO RESULTS
   ========================================== */

.no-results {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    margin-top: 30px;
}

.no-results i {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.no-results p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ==========================================
   BOTTOM SECTION
   ========================================== */

.bottom-section {
    background: white;
    padding: 30px 0;
    margin-top: 50px;
    border-top: 3px solid var(--light-blue);
}

.affiliate-disclaimer {
    text-align: center;
    margin-bottom: 20px;
    padding: 15px;
    background: #fff3cd;
    border-radius: 8px;
    border: 1px solid #ffc107;
}

.affiliate-disclaimer p {
    color: var(--text-medium);
    margin: 0;
}

.bottom-links {
    text-align: center;
    padding: 15px 0;
}

.bottom-links a {
    color: var(--light-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    padding: 5px 10px;
}

.bottom-links a:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

.separator {
    color: var(--border-color);
    margin: 0 10px;
}

/* ==========================================
   RESPONSIVE DESIGN - MOBILE OPTIMIZED
   ========================================== */

@media (max-width: 768px) {
    .navbar .container {
        position: relative;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--primary-blue);
        padding: 20px;
        gap: 10px;
        box-shadow: var(--shadow-lg);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        width: 100%;
        justify-content: center;
        padding: 15px;
    }

    .urgent-banner h1 {
        font-size: 1.8rem;
    }

    .urgent-subtitle {
        font-size: 1rem;
    }

    .urgent-cta {
        font-size: 1.1rem;
        padding: 15px 35px;
    }

    .page-header h2 {
        font-size: 1.5rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .home-search {
        margin-bottom: 30px;
    }

    .search-box-home {
        padding: 6px 20px;
    }

    .search-box-home input {
        font-size: 1rem;
        padding: 12px 8px;
    }

    .city-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 18px;
    }

    .city-card {
        padding: 25px 20px;
        min-height: 180px;
    }

    .city-card-icon {
        width: 65px;
        height: 65px;
        font-size: 1.7rem;
    }

    .city-card h4 {
        font-size: 1.2rem;
    }

    .home-calculator-inline {
        margin: 30px 0;
    }

    .search-section {
        padding: 20px 15px;
    }

    .search-box {
        padding: 5px 15px;
    }

    .filter-buttons {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

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

    .company-card {
        padding: 20px;
    }

    .card-footer {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .bottom-links {
        font-size: 0.9rem;
    }

    .separator {
        display: block;
        margin: 5px 0;
        opacity: 0;
    }
}

@media (max-width: 480px) {
    .nav-brand {
        font-size: 1.2rem;
    }

    .urgent-banner {
        padding: 30px 15px;
    }

    .urgent-banner h1 {
        font-size: 1.5rem;
    }

    .urgent-icon {
        font-size: 2.5rem;
    }

    .company-name {
        font-size: 1.1rem;
    }

    .info-item {
        flex-direction: column;
        gap: 5px;
    }

    .info-item strong {
        min-width: auto;
    }
}

/* ==========================================
   PRINT STYLES
   ========================================== */

@media print {
    .navbar,
    .urgent-banner,
    .search-section,
    .bottom-section {
        display: none;
    }

    .company-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid var(--border-color);
    }
}