/* =======================================================
   REFACTORED PUBLIC LAYOUT CSS - CLEAN & RESPONSIVE
   Combines: public_layout_uniform + uniform_cards + enhanced_animations
   ======================================================= */

/* === RESET & BASE === */
* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

/* === LAYOUT STRUCTURE === */
.public-layout {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--primary-bg);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow: hidden;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

/* === HERO SECTION === */
.hero-section {
    background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--accent-bg) 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    padding: clamp(0.75rem, 2vh, 1.25rem) clamp(1rem, 3vw, 2rem);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.75rem, 2vw, 1.5rem);
    height: clamp(80px, 12vh, 120px);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    margin: 0;
    flex-shrink: 0;
}

.hero-section::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: clamp(80px, 12vh, 120px);
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.03) 25%, 
        transparent 25%, 
        transparent 75%, 
        rgba(255, 255, 255, 0.03) 75%);
    background-size: 20px 20px;
    z-index: -1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.75rem, 3vw, 2rem);
    flex-wrap: wrap;
    z-index: 1;
}

.responsive-logo {
    height: clamp(40px, 7vh, 70px);
    width: auto;
    object-fit: contain;
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.2s ease;
}

.responsive-logo:hover {
    transform: scale(1.05);
}

.hero-title-section h1 {
    font-size: clamp(1rem, 3vw, 1.8rem);
    font-weight: 800;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    text-align: center;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: clamp(0.8rem, 1.5vw, 0.85rem);
    color: var(--text-secondary);
    margin: 0.25rem 0 0 0;
    font-weight: 500;
    text-align: center;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: clamp(1rem, 2vh, 1.5rem);
    padding: clamp(1rem, 2vh, 1.5rem);
    width: 100%;
    /* REMOVED: height: 100% */
    place-items: center;
    max-width: 100%;
    box-sizing: border-box;
}

/* === METRIC CARDS === */
.metric-card, .enhanced-metric-card {
    background: linear-gradient(135deg, var(--accent-bg) 0%, var(--card-bg) 100%);
    border-radius: clamp(8px, 1.5vh, 12px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: clamp(1rem, 2.5vh, 1.8rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 2;
    min-height: 160px;
}

.metric-card::before, .enhanced-metric-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.metric-card:hover, .enhanced-metric-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: var(--brand-primary);
}

.metric-card:hover::before, .enhanced-metric-card:hover::before {
    opacity: 1;
}

/* === CARD COMPONENTS === */
.card-header {
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 1vh, 0.75rem);
    padding: clamp(0.5rem, 1vh, 1rem) clamp(0.5rem, 1vh, 1rem) clamp(0.25rem, 0.5vh, 0.5rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    width: 100%;
}

.card-icon, .metric-icon {
    font-size: clamp(1.5rem, 3vh, 2rem);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(2rem, 4vh, 2.5rem);
    height: clamp(2rem, 4vh, 2.5rem);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.card-title, .metric-title {
    font-size: clamp(0.9rem, 2vh, 1.1rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    color: var(--text-primary);
    flex: 1;
    text-align: left;
}

.metric-value {
    font-size: clamp(1.3rem, 3.5vh, 1.8rem);
    font-weight: 800;
    color: var(--brand-primary);
    margin: clamp(0.2rem, 0.6vh, 0.4rem) 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.metric-unit {
    font-size: clamp(0.8rem, 1.8vh, 1rem);
    color: var(--text-secondary);
    font-weight: 600;
}

/* === ENHANCED CARD LAYOUTS === */
.metrics-container {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding: clamp(1rem, 2vh, 1.5rem);
    gap: clamp(0.5rem, 1vh, 1rem);
    flex: 1;
}

.metric-display {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* === LOCATION INFO === */
.location-info-container {
    text-align: center;
    margin: 0.5rem 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.4rem;
}

.agency-line {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-primary);
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.cluster-line {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.2;
    opacity: 0.9;
}

.site-line {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.2;
    opacity: 0.8;
}

/* === SITE PROGRESS STYLES === */
.site-progress-content {
    display: flex;
    flex-direction: column;
    padding: clamp(1rem, 2vh, 1.5rem);
    gap: clamp(0.75rem, 1.5vh, 1rem);
    flex: 1;
    overflow-y: auto;
}

.site-list {
    display: flex;
    flex-direction: column;
    gap: clamp(0.4rem, 0.8vh, 0.6rem);
    flex: 1;
}

.site-progress-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(0.4rem, 0.8vh, 0.6rem) clamp(0.6rem, 1.2vh, 0.8rem);
    background: rgba(255, 255, 255, 0.02);
    border-radius: clamp(4px, 0.8vh, 6px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
    min-height: clamp(2.5rem, 4vh, 3rem);
}

.site-progress-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(2px);
}

.site-info {
    display: flex;
    flex-direction: column;
    gap: clamp(0.1rem, 0.2vh, 0.2rem);
    flex: 1;
    min-width: 0;
    margin-right: clamp(0.5rem, 1vh, 1rem);
}

.site-name {
    font-size: clamp(0.85rem, 1.6vh, 1rem);
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-cluster {
    font-size: clamp(0.7rem, 1.3vh, 0.85rem);
    font-weight: 500;
    color: var(--text-secondary);
    opacity: 0.8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-percentage {
    font-size: clamp(1rem, 2vh, 1.2rem);
    font-weight: 800;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
    min-width: clamp(2.5rem, 5vh, 3.5rem);
    text-align: right;
}

/* === ANIMATIONS === */
@keyframes iconPulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 1; 
    }
    50% { 
        transform: scale(1.05); 
        opacity: 0.9; 
    }
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-3px) rotate(1deg); }
    66% { transform: translateY(3px) rotate(-1deg); }
}

@keyframes iconSway {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(2deg); }
    75% { transform: rotate(-2deg); }
}

@keyframes iconGlow {
    0%, 100% { 
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)); 
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 4px 12px rgba(255, 193, 7, 0.4)); 
        transform: scale(1.03);
    }
}

/* Card-specific animations */
.metric-card:nth-child(1) .metric-icon,
.metric-card:nth-child(1) .card-icon {
    animation: iconBounce 4s ease-in-out infinite;
}

.metric-card:nth-child(2) .metric-icon,
.metric-card:nth-child(2) .card-icon {
    animation: iconFloat 3.5s ease-in-out infinite;
}

.metric-card:nth-child(3) .metric-icon,
.metric-card:nth-child(3) .card-icon {
    animation: iconSway 4.5s ease-in-out infinite;
}

.metric-card:nth-child(4) .metric-icon,
.metric-card:nth-child(4) .card-icon {
    animation: iconGlow 3s ease-in-out infinite;
}

.metric-icon:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
}

/* === RESPONSIVE DESIGN === */

/* Tablet */
@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: clamp(1rem, 2vh, 1.5rem);
    }
    
    .hero-section {
        height: clamp(70px, 10vh, 100px);
        padding: clamp(0.5rem, 1.5vh, 1rem) clamp(0.75rem, 2vw, 1.5rem);
    }
    
    .agency-banner {
        padding: clamp(0.6rem, 1.2vh, 0.8rem) clamp(0.75rem, 2vw, 1.5rem);
    }
    
    .agency-container {
        padding: clamp(0.8rem, 1.6vh, 1.2rem) clamp(1.2rem, 2.4vw, 1.8rem);
        border-radius: clamp(8px, 1.2vh, 12px);
        max-width: clamp(260px, 90%, 500px);
        min-width: 220px;
        border: 3px solid rgba(255, 255, 255, 0.25);
    }
    
    .agency-title {
        font-size: clamp(1.1rem, 2.8vw, 1.5rem);
    }
    
    .agency-subtitle {
        font-size: clamp(0.8rem, 1.6vw, 0.95rem);
    }
    
/* ============================================
   AGENCY HEADER - BOXED AND CENTERED
   ============================================ */
   .agency-header {
    /* Creates the box around the element */
    border: 2px solid rgba(195, 53, 53, 0.541); 
    
    /* Rounds the corners of the box */
    border-radius: clamp(10px, 1.8vh, 14px);
    
    /* Adds space between the content and the border */
    padding: clamp(1rem, 2.5vh, 1.5rem);
    
    /* Centers the text inside the box */
    text-align: center;
    
    /* Sets a maximum width for the box */
    max-width: stretch;
    
    /* Centers the box itself horizontally within its parent */
    margin: clamp(1rem, 2vh, 1.5rem) auto;
    
    /* Adds a subtle background and shadow to lift it off the page */
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.agency-header .agency-title {
    /* Adjusts the main title font size */
    font-size: clamp(1.4rem, 3.2vw, 1.8rem);
    /* margin-bottom: 0.5rem; Adds space below the title */
}

.agency-header .agency-date {
    /* Adjusts the subtitle/date font size */
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    opacity: 0.8; /* Makes the date slightly less prominent */
}

}

/* Mobile */
@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr); /* ← CHANGE from repeat(4, auto) */
        gap: clamp(0.75rem, 1.5vh, 1rem);
        padding: clamp(0.5rem, 1vh, 1rem);
    }
    
    .header-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr); /* ← ADD this line */
        gap: clamp(0.75rem, 1.5vh, 1rem);
        padding: clamp(0.5rem, 1vh, 1rem);
    }

    
    .metric-card, .enhanced-metric-card {
        aspect-ratio: 4 / 2;
        min-height: 120px;
        padding: clamp(0.75rem, 2vh, 1.25rem);
    }
    
    .hero-content {
        flex-direction: column;
        gap: clamp(0.5rem, 1vh, 0.75rem);
    }
    
    .hero-title-section h1 {
        font-size: clamp(0.9rem, 2.5vw, 1.4rem);
    }
    
    .responsive-logo {
        height: clamp(35px, 6vh, 50px);
    }
    
    .agency-banner {
        padding: clamp(0.5rem, 1vh, 0.8rem) clamp(0.75rem, 2vw, 1.5rem);
    }
    
    .agency-container {
        padding: clamp(0.7rem, 1.4vh, 1rem) clamp(1rem, 2vw, 1.4rem);
        border-radius: clamp(8px, 1vh, 10px);
        max-width: clamp(240px, 95%, 450px);
        min-width: 200px;
        border-width: 2px;
    }
    
    .agency-title {
        font-size: clamp(1rem, 2.8vw, 1.3rem);
    }
    
    .agency-subtitle {
        font-size: clamp(0.75rem, 1.6vw, 0.85rem);
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .site-progress-item {
        flex-direction: column;
        align-items: flex-start;
        gap: clamp(0.15rem, 0.3vh, 0.25rem);
        padding: clamp(0.3rem, 0.6vh, 0.45rem) clamp(0.45rem, 0.9vh, 0.6rem);
    }
    
    .site-info {
        margin-right: 0;
        width: 100%;
    }
    
    .site-percentage {
        text-align: left;
        align-self: flex-end;
    }
    
    .agency-banner {
        padding: clamp(0.4rem, 0.8vh, 0.6rem) clamp(0.5rem, 1.5vw, 1rem);
    }
    
    .agency-container {
        padding: clamp(0.6rem, 1.2vh, 0.8rem) clamp(0.8rem, 1.6vw, 1.2rem);
        border-radius: clamp(6px, 0.8vh, 8px);
        max-width: clamp(220px, 98%, 400px);
        min-width: 180px;
        border-width: 2px;
    }
    
    .agency-title {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    }
    
    .agency-subtitle {
        font-size: clamp(0.7rem, 1.4vw, 0.8rem);
    }
}

/* Large Screens/TV */
@media (min-width: 1920px) {
    .cards-grid {
        gap: clamp(1.5rem, 2vh, 2rem);
        padding: clamp(1.5rem, 3vh, 2.5rem);
    }
    
    .metric-card, .enhanced-metric-card {
        border-radius: clamp(12px, 2vh, 16px);
        min-height: 200px;
    }
    
    .hero-section {
        height: clamp(100px, 15vh, 140px);
    }
    
    .agency-banner {
        padding: clamp(1rem, 2vh, 1.5rem) clamp(1.5rem, 4vw, 3rem);
    }
    
/* ============================================
   AGENCY HEADER - BOXED AND CENTERED (USER-PROVIDED STYLE)
   ============================================ */
   .agency-header {
    text-align: center;
    padding: 1rem 1rem;
        /* margin-bottom: 1rem; */
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(255, 255, 255, 0.02) 100%);
    border-radius: 16px;
    margin: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* For Safari browser compatibility */
}

.agency-title {
    font-size: clamp(1rem, 3vw, 2rem);
    font-weight: 800;
    margin: 0 0 0.5rem 0;
    background: linear-gradient(135deg, var(--brand-primary), var(--info));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.agency-date {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--text-secondary);
    margin: 0;
    opacity: 0.9;
    font-weight: 500;
}
    
}

/* High Contrast */
@media (prefers-contrast: high) {
    .metric-card, .enhanced-metric-card {
        border-width: 3px;
        border-color: rgba(255, 255, 255, 0.3);
    }
    
    .site-progress-item {
        border-width: 2px;
        border-color: rgba(255, 255, 255, 0.2);
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
    
    .metric-card:hover, .enhanced-metric-card:hover {
        transform: none;
    }
}

.header-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    gap: clamp(1rem, 2vh, 1.5rem);
    padding: clamp(1rem, 2vh, 1.5rem);
    width: 100%;
    place-items: center;
    max-width: 100%;
    box-sizing: border-box;
}

/* Header cards use same styling as main cards */
.header-cards-grid .enhanced-metric-card {
    background: linear-gradient(135deg, var(--accent-bg) 0%, var(--card-bg) 100%);
    border-radius: clamp(12px, 2vh, 16px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    aspect-ratio: 4 / 2;
    min-height: 200px;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.header-cards-grid .enhanced-metric-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: var(--brand-primary, rgba(255, 255, 255, 0.3));
}

/* ============================================
   BROWSER ZOOM CONSISTENCY FIXES
   ============================================ */

/* Fix for browser zoom levels 75% - 90% */
@media screen and (min-resolution: 0.75dppx) and (max-resolution: 0.9dppx) {
    .cards-grid,
    .header-cards-grid {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        grid-auto-flow: row;
        grid-auto-rows: minmax(200px, 1fr);
    }
    
    .enhanced-metric-card {
        min-height: 200px !important;
        max-height: 300px !important;
        width: 100% !important;
        flex: 1 1 auto;
        flex-shrink: 0;
    }
}

/* Ensure all cards are identical regardless of grid */
.header-cards-grid .enhanced-metric-card,
.cards-grid .enhanced-metric-card {
    min-height: 200px;
    max-height: 300px;
    aspect-ratio: 4 / 2;
    width: 100%;
    box-sizing: border-box;
    flex: 1 1 auto;
    flex-shrink: 0;
}

/* === MOBILE OPTIMIZATION === */
@media (max-width: 768px) {
    /* Main cards grid - single column */
    .cards-grid {
        grid-template-columns: 1fr !important; /* Single column */
        grid-template-rows: repeat(12, auto) !important; /* All cards in one column */
        gap: 1rem;
        padding: 1rem;
    }

    /* Header cards grid - single column */
    .header-cards-grid {
        grid-template-columns: 1fr !important; /* Single column */
        grid-template-rows: repeat(4, auto) !important; /* All header cards in one column */
        gap: 1rem;
        padding: 1rem;
    }

    /* Adjust card sizing for mobile */
    .metric-card, 
    .enhanced-metric-card,
    .header-cards-grid .enhanced-metric-card {
        aspect-ratio: unset !important;
        min-height: 120px;
        width: 100% !important;
        max-width: 100% !important;
        padding: 1rem;
    }

    /* Stack header and main cards vertically */
    .main-content {
        display: flex;
        flex-direction: column;
    }

    /* Ensure proper spacing between stacked cards */
    .header-cards-grid,
    .cards-grid {
        margin-bottom: 1rem;
    }
}

/* Small Mobile Adjustments */
@media (max-width: 480px) {
    .metric-card, 
    .enhanced-metric-card {
        min-height: 100px;
        padding: 0.75rem;
    }

    .card-header {
        padding: 0.5rem;
    }

    .metric-value {
        font-size: 1.5rem;
    }
}

/* === MOBILE HEADER OPTIMIZATION === */
@media (max-width: 768px) {
    /* Hide header images/logo in mobile view */
    .hero-section .responsive-logo {
        display: none !important;
    }
    
    /* Enhanced hero section with green background */
    .hero-section {
        height: auto !important;
        min-height: 100px; /* Increased from 80px */
        padding: 1.5rem 1rem !important; /* More vertical padding */
        flex-direction: column;
        justify-content: center;
        background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%) !important; /* Green gradient */
        border-bottom: none;
    }
    
    /* White text for better contrast */
    .hero-section,
    .hero-section h1,
    .hero-section .hero-subtitle {
        color: white !important;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    }
    
    /* Optimize text spacing */
    .hero-content {
        gap: 0.5rem !important;
        width: 100%;
    }
    
    /* Enhanced heading with subtle shadow */
    .hero-title-section h1 {
        font-size: 1.5rem !important; /* Increased from 1.3rem */
        line-height: 1.3;
        font-weight: 700;
        letter-spacing: 0.5px;
        margin-bottom: 0.25rem;
    }
    
    /* Lighter subtitle */
    .hero-subtitle {
        font-size: 0.9rem !important;
        margin-top: 0.5rem !important;
        opacity: 0.9;
        font-weight: 400;
    }
    
    /* Add breathing room between header and cards */
    .header-cards-grid {
        margin-top: 0.75rem;
    }
}

/* Extra small devices adjustment */
@media (max-width: 480px) {
    .hero-section {
        min-height: 90px; /* Slightly reduced but still prominent */
        padding: 1.25rem 0.75rem !important;
    }
    
    .hero-title-section h1 {
        font-size: 1.3rem !important; /* Still larger than original */
    }
    
    .hero-subtitle {
        font-size: 0.8rem !important;
    }
}