/* Areas We Serve - Image Section */
.areas {
    background: #ffffff;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.areas-image-container {
    max-width: 1200px;
    margin: 40px auto 0;
    text-align: center;
    position: relative;
}

/* Areas Widget Styles */
.areas-widget {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
    background: #1a1a1a;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    max-width: 320px;
    width: 100%;
    overflow: hidden;
}

.widget-header {
    background: linear-gradient(135deg, #ff5a5f 0%, #e04a50 100%);
    padding: 20px;
    color: white;
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
}

.widget-logo {
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 2px;
    background: #f5f5f0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 0 3px rgba(255, 255, 255, 0.2);
    padding-left: 3px;
    padding-bottom: 1px;
}

.widget-logo-b {
    color: #3a3a3a;
}

.widget-logo-h {
    color: #ff6b6f;
}

.widget-header-content {
    flex: 1;
}

.widget-subtitle {
    font-size: 16px;
    opacity: 0.95;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

.widget-discovering-section {
    background: #f5f5f0;
    padding: 20px;
    color: #1a1a1a;
}

.widget-discovering-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    opacity: 0.6;
    margin-bottom: 8px;
    font-weight: 600;
    color: #1a1a1a;
}

.widget-dots {
    display: inline-block;
    width: 20px;
    text-align: left;
}

.widget-dots::after {
    content: '';
    animation: widgetDots 1.5s steps(4, end) infinite;
}

@keyframes widgetDots {
    0%, 20% { content: ''; }
    40% { content: '.'; }
    60% { content: '..'; }
    80%, 100% { content: '...'; }
}

.widget-typewriter-container {
    display: flex;
    align-items: center;
    min-height: 36px;
}

.widget-typewriter-text {
    font-size: 24px;
    font-weight: 700;
    display: inline-block;
    color: #1a1a1a;
}

.widget-cursor {
    display: inline-block;
    width: 2px;
    height: 26px;
    background-color: #1a1a1a;
    margin-left: 2px;
    animation: widgetBlink 1s infinite;
    vertical-align: middle;
}

@keyframes widgetBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.areas-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
    transition: none;
    filter: none;
    display: block;
}


/* Responsive styles for the image section */
@media (max-width: 768px) {
    .areas {
        padding: 60px 16px;
    }
    
    .areas h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .areas-image-container {
        margin: 30px auto 0;
    }
    
    .areas-image {
        border: none;
        border-radius: 0;
        box-shadow: none;
    }
    
    /* Widget responsive styles for tablet */
    .areas-widget {
        max-width: 220px;
        top: 12px;
        left: 12px;
        border-radius: 14px;
    }
    
    .widget-header {
        padding: 14px;
        gap: 10px;
    }
    
    .widget-logo {
        width: 36px;
        height: 36px;
        font-size: 22px;
        padding-left: 2px;
        padding-bottom: 1px;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12), 0 0 0 2px rgba(255, 255, 255, 0.18);
    }
    
    .widget-subtitle {
        font-size: 13px;
        line-height: 1.3;
        font-weight: 600;
    }
    
    .widget-discovering-section {
        padding: 14px;
    }
    
    .widget-discovering-label {
        font-size: 8px;
        margin-bottom: 6px;
        letter-spacing: 1px;
    }
    
    .widget-typewriter-text {
        font-size: 17px;
        font-weight: 600;
    }
    
    .widget-cursor {
        height: 19px;
        width: 2px;
    }
    
    .widget-typewriter-container {
        min-height: 32px;
    }
}

@media (max-width: 480px) {
    .areas {
        padding: 50px 12px;
    }
    
    .areas-image-container {
        margin: 20px auto 0;
    }
    
    .areas-image {
        border: none;
        border-radius: 0;
        box-shadow: none;
    }
    
    /* Widget responsive styles for mobile */
    .areas-widget {
        max-width: 115px;
        top: 3px;
        left: 3px;
        border-radius: 7px;
    }
    
    .widget-header {
        padding: 6px 8px;
        gap: 4px;
    }
    
    .widget-logo {
        width: 20px;
        height: 20px;
        font-size: 11px;
        padding-left: 1px;
        padding-bottom: 0px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.12);
        letter-spacing: 0.6px;
    }
    
    .widget-subtitle {
        font-size: 9px;
        line-height: 1.2;
        font-weight: 700;
    }
    
    .widget-discovering-section {
        padding: 6px 8px;
    }
    
    .widget-discovering-label {
        font-size: 6px;
        margin-bottom: 3px;
        letter-spacing: 0.4px;
    }
    
    .widget-typewriter-text {
        font-size: 13px;
        font-weight: 700;
    }
    
    .widget-cursor {
        height: 14px;
        width: 1px;
    }
    
    .widget-typewriter-container {
        min-height: 20px;
    }
}

/* Text color for the section */
.areas {
    color: #2d3436;
}

/* Specific elements */
.areas h2 {
    color: #2d3436 !important;
}

.areas .borough-title {
    color: #2d3436 !important;
}

.areas .borough-tag {
    color: #2d3436 !important;
    background: rgba(45, 52, 54, 0.05);
    border-color: rgba(45, 52, 54, 0.1) !important;
}

.areas .stat-value {
    color: #2d3436 !important;
}

.areas .stat-label {
    color: #2d3436 !important;
    opacity: 0.8;
}

.areas .neighborhood-pill {
    color: #2d3436 !important;
    border-color: rgba(45, 52, 54, 0.1) !important;
    background: rgba(45, 52, 54, 0.03);
}

.areas .container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.bento-container {
    background: #ffffff;
    border-radius: 32px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    border: 1px solid #eeeeee;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 250px 150px 240px;
    gap: 20px;
    position: relative;
}

.bento-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    /* Removed transition to prevent movement */
    border: 1px solid #f0f0f0;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Removed mouse-tracking gradient effect */

/* Removed hover effect */

/* Manhattan Card Styles */
.manhattan-card {
    background: #1a1a1a;
    border-radius: 24px;
    padding: 48px;
    position: relative;
    overflow: hidden;
    /* Removed transition */
    height: 100%;
    min-height: 400px;
}

/* Removed hover effect */

.manhattan-card .card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.manhattan-card .badge {
    display: inline-block;
    background: #242424;
    color: #6a6a6a;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    align-self: flex-start;
    border: 1px solid #2a2a2a;
}

.manhattan-card .borough-title {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff !important; /* Added !important to ensure it overrides other styles */
    margin: 0 0 8px 0;
    letter-spacing: -2px;
    line-height: 1.1;
}

.manhattan-card .accent-line {
    width: 40px;
    height: 3px;
    background: #3a3a3a;
    margin: 0 0 32px 0;
    /* Removed transition */
}

/* Removed hover effect */

.manhattan-card .stats {
    margin: 0 0 40px 0;
}

.manhattan-card .stat-wrapper {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 0;
}

.manhattan-card .stat-number {
    font-size: 42px;
    font-weight: 600;
    color: #e0e0e0;
    line-height: 1;
    margin: 0;
}

.manhattan-card .stat-label {
    font-size: 14px;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.manhattan-card .locations {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
}

.manhattan-card .location-tag {
    background: #242424;
    color: #ffffff !important;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    /* Removed transition */
    border: 1px solid #2a2a2a;
}

/* Removed hover effect */

.manhattan-card .bg-text {
    position: absolute;
    font-size: 180px;
    font-weight: 900;
    color: #242424;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    letter-spacing: -8px;
    z-index: 0;
    user-select: none;
    pointer-events: none;
}

.manhattan-card .pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, #fff 35px, #fff 70px);
    z-index: 1;
}

.manhattan-card .corner-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, transparent 50%, #242424 50%);
    z-index: 1;
    pointer-events: none;
}

/* Adjust the manhattan bento-item to accommodate the new card */
.bento-item.manhattan {
    grid-column: span 2;
    grid-row: span 2;
    padding: 0;
    background: transparent;
}

/* Brooklyn Card Styles */
.brooklyn-card {
    background: #1a1a1a;
    border-radius: 24px;
    padding: 48px;
    position: relative;
    overflow: hidden;
    /* Removed transition */
    height: 100%;
    min-height: 100%;
}

/* Removed hover effect */

.brooklyn-card .card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.brooklyn-card .badge {
    display: inline-block;
    background: #242424;
    color: #6a6a6a;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    align-self: flex-start;
    border: 1px solid #2a2a2a;
}

.brooklyn-card .borough-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff !important;
    margin: 0 0 8px 0;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.brooklyn-card .accent-line {
    width: 40px;
    height: 3px;
    background: #3a3a3a;
    margin: 0 0 24px 0;
    /* Removed transition */
}

/* Removed hover effect */

.brooklyn-card .stats {
    margin: 0 0 30px 0;
}

.brooklyn-card .stat-wrapper {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 0;
}

.brooklyn-card .stat-number {
    font-size: 36px;
    font-weight: 600;
    color: #e0e0e0;
    line-height: 1;
    margin: 0;
}

.brooklyn-card .stat-label {
    font-size: 14px;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.brooklyn-card .locations {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-top: -80px;
    margin-bottom: 20px;
}

.brooklyn-card .location-tag {
    background: #242424;
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    /* Removed transition */
    border: 1px solid #2a2a2a;
}

/* Removed hover effect */

.brooklyn-card .bg-text {
    position: absolute;
    font-size: 140px;
    font-weight: 900;
    color: #242424;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    letter-spacing: -8px;
    z-index: 0;
    user-select: none;
    pointer-events: none;
}

.brooklyn-card .pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, #fff 35px, #fff 70px);
    z-index: 1;
}

.brooklyn-card .corner-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, transparent 50%, #242424 50%);
    z-index: 1;
    pointer-events: none;
}

/* Adjust the brooklyn bento-item to accommodate the new card */
.bento-item.brooklyn {
    padding: 0;
    background: transparent;
}

/* Queens Card Styles */
.queens-card {
    background: #1a1a1a;
    border-radius: 24px;
    padding: 36px;
    position: relative;
    overflow: hidden;
    /* Removed transition */
    height: 100%;
    min-height: 100%;
}

/* Removed hover effect */

.queens-card .card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.queens-card .badge {
    display: inline-block;
    background: #242424;
    color: #6a6a6a;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    align-self: flex-start;
    border: 1px solid #2a2a2a;
}

.queens-card .borough-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff !important;
    margin: 0 0 8px 0;
    letter-spacing: -1px;
    line-height: 1.1;
}

.queens-card .accent-line {
    width: 40px;
    height: 2px;
    background: #3a3a3a;
    margin: 0 0 20px 0;
    /* Removed transition */
}

/* Removed hover effect */

.queens-card .stats {
    margin: 0 0 25px 0;
}

.queens-card .stat-wrapper {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 0;
}

.queens-card .stat-number {
    font-size: 32px;
    font-weight: 600;
    color: #e0e0e0;
    line-height: 1;
    margin: 0;
}

.queens-card .stat-label {
    font-size: 13px;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.queens-card .card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.queens-card .locations {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 25px 0 0 0;
    padding: 15px 0 0;
    border-top: 1px solid #2a2a2a;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.queens-card .locations::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.queens-card .locations {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.queens-card .location-tag {
    background: #2a2a2a;
    color: #e0e0e0;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #3a3a3a;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Removed hover effect */

.queens-card .bg-text {
    position: absolute;
    font-size: 120px;
    font-weight: 900;
    color: #242424;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    letter-spacing: -8px;
    z-index: 0;
    user-select: none;
    pointer-events: none;
    opacity: 0.9;
}

.queens-card .pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, #fff 35px, #fff 70px);
    z-index: 1;
}

.queens-card .corner-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, transparent 50%, #242424 50%);
    z-index: 1;
    pointer-events: none;
}

/* Adjust the queens bento-item to accommodate the new card */
.bento-item.queens {
    padding: 0;
    background: transparent;
}

/* Staten Island Card Styles */
.staten-card {
    background: #1a1a1a;
    border-radius: 24px;
    padding: 20px 36px 20px 36px;
    position: relative;
    overflow: hidden;
    /* Removed transition */
    height: 100%;
    min-height: 380px;
}

/* Removed hover effect */

.staten-card .card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.staten-card .badge {
    display: inline-block;
    background: #242424;
    color: #6a6a6a;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    align-self: flex-start;
    border: 1px solid #2a2a2a;
}

.staten-card .borough-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff !important;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.staten-card .accent-line {
    width: 40px;
    height: 2px;
    background: #3a3a3a;
    margin: 0 0 20px 0;
    /* Removed transition */
}

/* Removed hover effect */

.staten-card .stats {
    margin: -25px 0 0 0;
}

.staten-card .stat-wrapper {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 0;
}

.staten-card .stat-number {
    font-size: 28px;
    font-weight: 600;
    color: #e0e0e0;
    line-height: 1;
    margin: 0;
    position: relative;
    top: -10px;
}

.staten-card .stat-label {
    font-size: 12px;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    position: relative;
    top: -10px;
}

.staten-card .locations {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: -15px 0 0 0;
    padding-top: 10px;
    border-top: 1px solid #2a2a2a;
}

.staten-card .location-tag {
    background: #2a2a2a;
    color: #e0e0e0;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    /* Removed transition */
    border: 1px solid #3a3a3a;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Removed hover effect */

.staten-card .bg-text {
    position: absolute;
    font-size: 100px;
    font-weight: 900;
    color: #242424;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    letter-spacing: -5px;
    z-index: 0;
    user-select: none;
    pointer-events: none;
    opacity: 0.9;
}

.staten-card .pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, #fff 35px, #fff 70px);
    z-index: 1;
}

.staten-card .corner-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, transparent 50%, #242424 50%);
    z-index: 1;
    pointer-events: none;
}

/* Adjust the staten-island bento-item to accommodate the new card */
.bento-item.staten-island {
    padding: 0;
    background: transparent;
}

/* Bronx Card Styles */
.bronx-card {
    background: #1a1a1a;
    border-radius: 24px;
    padding: 36px;
    position: relative;
    overflow: hidden;
    /* Removed transition */
    height: 100%;
    min-height: 100%;
}

/* Removed hover effect */

.bronx-card .card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bronx-card .badge {
    display: inline-block;
    background: #242424;
    color: #6a6a6a;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    align-self: flex-start;
    border: 1px solid #2a2a2a;
}

.bronx-card .borough-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff !important;
    margin: 0 0 8px 0;
    letter-spacing: -1px;
    line-height: 1.1;
}

.bronx-card .accent-line {
    width: 40px;
    height: 2px;
    background: #3a3a3a;
    margin: 0 0 20px 0;
    /* Removed transition */
}

/* Removed hover effect */

.bronx-card .stats {
    margin: 0 0 25px 0;
}

.bronx-card .stat-wrapper {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 0;
}

.bronx-card .stat-number {
    font-size: 32px;
    font-weight: 600;
    color: #e0e0e0;
    line-height: 1;
    margin: 0;
}

.bronx-card .stat-label {
    font-size: 13px;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.bronx-card .locations {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
}

.bronx-card .location-tag {
    background: #2a2a2a;
    color: #e0e0e0;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #3a3a3a;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Removed hover effect */

.bronx-card .bg-text {
    position: absolute;
    font-size: 120px;
    font-weight: 900;
    color: #242424;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    letter-spacing: -8px;
    z-index: 0;
    user-select: none;
    pointer-events: none;
    opacity: 0.9;
}

.bronx-card .pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, #fff 35px, #fff 70px);
    z-index: 1;
}

.bronx-card .corner-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, transparent 50%, #242424 50%);
    z-index: 1;
    pointer-events: none;
}

/* Adjust the bronx bento-item to accommodate the new card */
.bento-item.bronx {
    padding: 0;
    background: transparent;
}

/* Tablet-specific styles for Areas We Serve */
@media (min-width: 769px) and (max-width: 1100px) {
    .bento-container {
        padding: 25px;
        border-radius: 20px;
        max-width: 900px;
        margin: 0 auto;
    }
    
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 20px;
        max-width: 100%;
    }
    
    .bento-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
        min-height: 280px;
    }
    
    .manhattan-card,
    .brooklyn-card,
    .queens-card,
    .bronx-card,
    .staten-card {
        padding: 30px 25px;
        min-height: 280px;
    }
    
    .manhattan-card .borough-title,
    .brooklyn-card .borough-title,
    .queens-card .borough-title,
    .bronx-card .borough-title,
    .staten-card .borough-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .badge {
        font-size: 11px;
        padding: 6px 12px;
        margin-bottom: 12px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .location-tag {
        font-size: 11px;
        padding: 4px 10px;
        margin: 3px;
    }
    
    .locations {
        gap: 8px;
        margin-top: 15px;
    }
    
    /* Move Brooklyn locations to bottom of card */
    .brooklyn-card .card-content {
        justify-content: space-between;
    }
    
    .brooklyn-card .locations {
        margin-top: auto;
        margin-bottom: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .manhattan-card {
        padding: 32px;
    }
    
    .manhattan-card .borough-title {
        font-size: 42px;
    }
    
    .manhattan-card .stat-number {
        font-size: 36px;
    }

    .manhattan-card .bg-text {
        font-size: 120px;
    }
}

/* Borough Specific Styles */
.manhattan, .brooklyn, .queens, .bronx, .staten-island {
    /* Removed transition */
    border-radius: 16px;
    overflow: hidden;
}

.manhattan {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    background: linear-gradient(135deg, #4a90e2 0%, #1e3c72 100%);
    color: white;
    padding: 30px;
}

.manhattan .bento-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Background Elements */
.bg-text {
    position: absolute;
    font-size: 180px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.04);
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    z-index: 0;
    font-family: 'Montserrat', sans-serif;
    pointer-events: none;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, 
            transparent 48%, 
            rgba(255, 255, 255, 0.02) 49%, 
            rgba(255, 255, 255, 0.02) 51%, 
            transparent 52%
        ),
        linear-gradient(-45deg, 
            transparent 48%, 
            rgba(255, 255, 255, 0.02) 49%, 
            rgba(255, 255, 255, 0.02) 51%, 
            transparent 52%
        );
    background-size: 20px 20px;
    z-index: 1;
    pointer-events: none;
}

.corner-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, transparent 50%, #242424 50%);
    z-index: 1;
    pointer-events: none;
}

/* Content Styling */
.badge {
    display: inline-block;
    background: #242424;
    color: #6a6a6a;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    border: 1px solid #2a2a2a;
}

.manhattan .borough-title {
    font-size: 2.5rem;
    margin: 10px 0 5px;
    color: white;
}

.accent-line {
    width: 40px;
    height: 2px;
    background: #3a3a3a;
    margin: 20px 0;
    /* Removed transition */
}

.borough-stats {
    margin: 30px 0;
}

.stat {
    margin-bottom: 15px;
}

.stat-value {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 12px;
    color: #6a6a6a;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.neighborhoods {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.neighborhood-pill {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Removed transition */
}

/* Removed hover effect */

/* Responsive Adjustments */
@media (max-width: 992px) {
    .manhattan .borough-title {
        font-size: 36px;
    }
    
    .stat-value {
        font-size: 30px;
    }
    
    .bg-text {
        font-size: 150px;
    }
}

@media (max-width: 768px) {
    .manhattan {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 400px;
    }
    
    .manhattan .borough-title {
        font-size: 32px;
    }
    
    .bg-text {
        font-size: 120px;
    }
}

.brooklyn {
    grid-column: 3 / 5;
    grid-row: 1 / 2;
}

.queens {
    grid-column: 3 / 4;
    grid-row: 2 / 4;
}

.bronx {
    grid-column: 4 / 5;
    grid-row: 2 / 4;
}

.staten-island {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
}

.bento-content {
    position: absolute;
    inset: 0;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #000000 !important;
    background: #ffffff;
}

.borough-header {
    position: relative;
}

.borough-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff !important;
    padding: 6px 16px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.borough-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    font-family: 'Montserrat', sans-serif;
}

.manhattan .borough-title {
    font-size: 2.5rem;
}

.borough-stats {
    display: flex;
    gap: 24px;
    margin-top: 24px;
}

.stat {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000000 !important;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000000 !important;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-top: 4px;
    font-weight: 500;
}

.neighborhoods {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.neighborhood-pill {
    background: rgba(255, 255, 255, 0.1);
    color: #000000 !important;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 0.2);
    /* Removed transition */
}

/* Removed hover effect */

/* Removed floating badges as per request */

/* Glow effect */
/* Removed unused ::after pseudo-element */

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bento-item {
    animation: slideUp 0.8s cubic-bezier(0.23, 1, 0.320, 1) forwards;
    opacity: 0;
}

.manhattan { animation-delay: 0.1s; }
.brooklyn { animation-delay: 0.2s; }
.queens { animation-delay: 0.3s; }
.bronx { animation-delay: 0.4s; }
.staten-island { animation-delay: 0.5s; }

/* Tablet-specific styles for Areas We Serve */
@media (min-width: 769px) and (max-width: 1100px) {
    .manhattan {
        grid-column: 1 / 3;
        grid-row: 1;
    }

    .brooklyn {
        grid-column: 1;
        grid-row: 2;
    }

    .queens {
        grid-column: 2;
        grid-row: 2;
    }

    .bronx {
        grid-column: 1;
        grid-row: 3;
    }

    .staten-island {
        grid-column: 2;
        grid-row: 3;
    }

    .floating-badge {
        display: none;
    }
}

/* Mobile-First Redesign - Clean and Simple */
@media (max-width: 640px) {
    .areas {
        padding: 60px 16px;
    }
    
    .areas h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .bento-container {
        background: transparent;
        border-radius: 0;
        padding: 0;
        box-shadow: none;
        border: none;
    }
    
    .bento-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        grid-template-columns: none;
        grid-template-rows: none;
    }

    .bento-item {
        grid-column: unset;
        grid-row: unset;
        border-radius: 16px;
        background: #ffffff;
        border: 1px solid #e5e7eb;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        min-height: auto;
    }
    
    /* Original dark theme for all borough cards */
    .manhattan-card,
    .brooklyn-card,
    .queens-card,
    .bronx-card,
    .staten-card {
        background: #1a1a1a !important;
        border: 1px solid #2a2a2a !important;
        padding: 24px !important;
        border-radius: 16px;
        min-height: auto !important;
        height: auto !important;
    }
    
    /* Show simplified background letters on mobile with colors */
    .pattern,
    .corner-accent {
        display: none !important;
    }
    
    .bg-text {
        display: block !important;
        position: absolute;
        font-size: 80px !important;
        font-weight: 900;
        right: 16px !important;
        top: 50% !important;
        transform: translateY(-50%);
        z-index: 0;
        user-select: none;
        pointer-events: none;
        opacity: 0.25 !important;
        letter-spacing: -2px !important;
    }
    
    /* More visible background letters with better contrast */
    .manhattan-card .bg-text,
    .brooklyn-card .bg-text,
    .queens-card .bg-text,
    .bronx-card .bg-text,
    .staten-card .bg-text {
        color: #404040 !important;
    }
    
    /* Original dark theme badge styling */
    .manhattan-card .badge,
    .brooklyn-card .badge,
    .queens-card .badge,
    .bronx-card .badge,
    .staten-card .badge {
        background: #242424 !important;
        color: #6a6a6a !important;
        border: 1px solid #2a2a2a !important;
        font-size: 12px;
        padding: 6px 12px;
        margin-bottom: 16px;
    }
    
    /* Original white title styling */
    .manhattan-card .borough-title,
    .brooklyn-card .borough-title,
    .queens-card .borough-title,
    .bronx-card .borough-title,
    .staten-card .borough-title {
        color: #ffffff !important;
        font-size: 1.875rem !important;
        font-weight: 700;
        margin: 0 0 12px 0 !important;
        letter-spacing: -0.025em;
    }
    
    /* Original accent line styling */
    .manhattan-card .accent-line,
    .brooklyn-card .accent-line,
    .queens-card .accent-line,
    .bronx-card .accent-line,
    .staten-card .accent-line {
        background: #3a3a3a !important;
        width: 60px;
        height: 3px;
        margin: 0 0 20px 0 !important;
    }
    
    /* Original stats styling */
    .manhattan-card .stat-number,
    .brooklyn-card .stat-number,
    .queens-card .stat-number,
    .bronx-card .stat-number,
    .staten-card .stat-number {
        color: #e0e0e0 !important;
        font-size: 2rem !important;
        font-weight: 600;
    }
    
    .manhattan-card .stat-label,
    .brooklyn-card .stat-label,
    .queens-card .stat-label,
    .bronx-card .stat-label,
    .staten-card .stat-label {
        color: #ffffff !important;
        font-size: 14px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }
    
    /* Original location tags styling */
    .manhattan-card .location-tag,
    .brooklyn-card .location-tag,
    .queens-card .location-tag,
    .bronx-card .location-tag,
    .staten-card .location-tag {
        background: #242424 !important;
        color: #ffffff !important;
        border: 1px solid #2a2a2a !important;
        padding: 8px 16px;
        border-radius: 8px;
        font-size: 14px;
        font-weight: 500;
        box-shadow: none !important;
    }
    
    /* Adjust locations container */
    .manhattan-card .locations,
    .brooklyn-card .locations,
    .queens-card .locations,
    .bronx-card .locations,
    .staten-card .locations {
        margin: 20px 0 0 0 !important;
        padding: 0 !important;
        border: none !important;
        gap: 8px;
        justify-content: flex-start !important;
    }
    
    /* Fix stats positioning */
    .manhattan-card .stats,
    .brooklyn-card .stats,
    .queens-card .stats,
    .bronx-card .stats,
    .staten-card .stats {
        margin: 0 0 20px 0 !important;
    }
    
    .staten-card .stat-number,
    .staten-card .stat-label {
        position: static !important;
        top: auto !important;
    }
    
    /* Ensure proper card content layout */
    .manhattan-card .card-content,
    .brooklyn-card .card-content,
    .queens-card .card-content,
    .bronx-card .card-content,
    .staten-card .card-content {
        height: auto !important;
        display: block !important;
    }
}
