/* Hero Section & Service Grid Update */
.hero-section {
    padding: 3rem 0;
    min-height: 85vh;
    /* Ensure full screen feel */
    background: #FFFFFF;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-dark);
    line-height: 1.2;
    text-align: left;
}

.hero-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    position: relative;
    /* justify-content: space-between; */
}

/* Left Side: Service Selection Card */
.service-selection-card {
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #E5E7EB;
    padding: 2.5rem;
    width: 450px;
    min-width: 450px;
}

.service-selection-card .card-header h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    font-weight: 700;
}

.service-grid-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 1.5rem;
    text-align: center;
}

.service-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    color: #4B5563;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.service-icon-item:hover {
    transform: translateY(-4px);
    filter: brightness(1.05);
}

.icon-box {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

/* Custom colors for each icon box */
.item-cleaning .icon-box {
    background: #E8F5E9;
    color: #2E7D32;
}

.item-women .icon-box {
    background: #FCE4EC;
    color: #C2185B;
}

.item-men .icon-box {
    background: #E3F2FD;
    color: #1565C0;
}

.item-pest .icon-box {
    background: #F3E5F5;
    color: #6A1B9A;
}

.item-electric .icon-box {
    background: #FFF8E1;
    color: #F57F17;
}

.item-water .icon-box {
    background: #E1F5FE;
    color: #0277BD;
}

.item-paint .icon-box {
    background: #E0F2F1;
    color: #00695C;
}

.item-ac .icon-box {
    background: #FFEBEE;
    color: #C62828;
}

.item-wall .icon-box {
    background: #EDE7F6;
    color: #4527A0;
}

.icon-box .material-icons {
    font-size: 32px;
    color: inherit;
}

.service-icon-item span {
    font-size: 0.85rem;
    line-height: 1.2;
    color: #1F2937;
    font-weight: 500;
    max-width: 90px;
}

/* Right Side: Collage (Simulated with grid) */
/* Right Side: Collage */
.hero-collage {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
    gap: 1rem;
    height: auto;
}

.collage-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.collage-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collage-item:hover img {
    transform: scale(1.05);
}

/* Specific Sizes */
.collage-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

/* Image Overlay text */
.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.collage-item:hover .image-overlay {
    opacity: 1;
    transform: translateY(0);
}


/* Responsive Adjustments */
@media (max-width: 1024px) {
    .hero-layout {
        flex-direction: column;
        align-items: center;
    }

    .hero-collage {
        width: 100%;
        max-width: 600px;
    }

    .service-selection-card {
        width: 100%;
        max-width: 500px;
        min-width: auto;
    }
}

/* Urban Company Header Style */
.uc-header {
    background: #FFFFFF;
    height: 72px;
    border-bottom: 1px solid #E5E7EB;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
}

.uc-header .header-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.uc-header .header-left {
    display: flex;
    align-items: center;
    gap: 3rem;
    /* Spacing between logo and nav */
}

.uc-header .logo {
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
    text-decoration: none;
}

.uc-header .nav-links {
    display: flex;
    gap: 2rem;
}

.uc-header .nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.uc-header .nav-links a:hover {
    color: var(--primary-dark);
}

.uc-header .header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Location Box */
.location-box {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.location-box:hover {
    background-color: #F3F4F6;
}

.location-box .location-icon {
    font-size: 20px;
    color: var(--text-color);
}

.location-box .arrow-icon {
    font-size: 20px;
    color: var(--text-light);
}

/* Search Box */
.header-right .search-box {
    position: relative;
    width: 300px;
}

.header-right .search-box input {
    width: 100%;
    padding: 0.6rem 1rem 0.6rem 2.8rem;
    /* Space for icon */
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-color);
    outline: none;
    background-color: #FFFFFF;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.header-right .search-box input:focus {
    border-color: var(--text-color);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}

.header-right .search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--text-light);
}

/* Header Actions (Cart, User) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--text-color);
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.icon-btn:hover {
    background-color: #F3F4F6;
}

.icon-btn .material-icons {
    font-size: 24px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .uc-header .nav-links {
        display: none;
        /* Hide nav links on smaller screens */
    }

    .header-right .search-box {
        width: 200px;
    }

    .location-box .location-text {
        display: none;
        /* Hide location text, keep icon */
    }
}

@media (max-width: 768px) {
    .header-right .search-box {
        display: none;
        /* Hide search entirely on mobile header */
    }

    .header-right {
        gap: 0.5rem;
    }
}

/* Location Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 400px;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-header h3 {
    font-size: 1.1rem;
    color: var(--text-color);
}

.close-modal {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.location-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.location-option:hover {
    border-color: var(--primary-color);
    background: #F9FAFB;
}

.location-option.current {
    color: var(--primary-color);
    font-weight: 500;
}

.manual-location {
    margin-top: 1rem;
}

.manual-location input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.manual-location button {
    width: 100%;
    padding: 0.8rem;
    background: var(--primary-dark);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

/* Suggestions Dropdown */
.manual-location {
    position: relative;
    /* Ensure relative positioning for suggestions */
}

.suggestions-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #E5E7EB;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 10;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    /* Initially hidden */
}

.suggestion-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-color);
    border-bottom: 1px solid #F3F4F6;
    transition: background-color 0.2s;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background-color: #F9FAFB;
    color: var(--primary-color);
}

/* Recent Locations */
.recent-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.recent-item {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.4rem 0.8rem;
    background: #F3F4F6;
    border-radius: 9999px;
    /* Pill shape */
    font-size: 0.8rem;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.recent-item:hover {
    background: #E5E7EB;
    border-color: #D1D5DB;
}

/* Enhanced Location Modal Styles */
.location-modal-content {
    max-width: 450px;
    padding: 0;
    overflow: hidden;
    border-radius: 12px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #F3F4F6;
    background: white;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.location-body {
    padding: 1.5rem;
}

/* Detect Location Button */
.detect-location-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
}

.detect-location-btn:hover {
    border-color: var(--primary-color);
    background: #F9FAFB;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #EFF6FF;
    /* Light blue bg */
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle .material-icons {
    color: var(--primary-color);
    font-size: 20px;
}

.text-content {
    display: flex;
    flex-direction: column;
}

.text-content strong {
    font-size: 1rem;
    color: var(--primary-dark);
}

.text-content p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
}

/* Divider */
.divider-text {
    text-align: center;
    margin: 1.5rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.divider-text::before,
.divider-text::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #E5E7EB;
}

.divider-text::before {
    margin-right: 1rem;
}

.divider-text::after {
    margin-left: 1rem;
}

/* Input Wrapper */
.manual-location-container {
    position: relative;
    margin-bottom: 1rem;
}

.input-wrapper {
    position: relative;
}

.input-wrapper input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    /* Space for icon */
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

.input-wrapper input:focus {
    border-color: var(--primary-color);
}

.search-icon-input {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 22px;
}

/* Update Button */
.update-location-btn {
    width: 100%;
    padding: 1rem;
    background: #111827;
    /* Dark black/blue */
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: opacity 0.2s;
}

.update-location-btn:hover {
    opacity: 0.9;
}

/* Recent Locations Section */
.recent-locations-section {
    margin-top: 1.5rem;
}

.recent-locations-section h4 {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

/* Redefine recent-list and recent-item correctly outside */
.recent-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.recent-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #F3F4F6;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-color);
    cursor: pointer;
    border: 1px solid transparent;
}

.recent-item:hover {
    background: #E5E7EB;
    border-color: #D1D5DB;
}

.recent-item .material-icons {
    font-size: 18px;
    color: var(--text-light);
}

/* Map specific styling */
#mapContainer {
    z-index: 1;
}

/* Search Dropdown Styles */
.search-box {
    position: relative;
    /* Ensure dropdown is relative to search box */
}

.search-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    padding: 0.5rem 0;
}

.search-group-title {
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    /* Gray text */
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.search-result-item {
    display: flex;
    /* Flex layout */
    align-items: center;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--text-color);
    transition: background-color 0.2s;
    border-bottom: 1px solid #F3F4F6;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background-color: #F9FAFB;
}

.result-icon {
    width: 36px;
    height: 36px;
    background: #F3F4F6;
    /* Gray bg */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.result-icon .material-icons {
    color: var(--text-color);
    font-size: 20px;
}

.result-info {
    display: flex;
    flex-direction: column;
}

.service-name {
    font-weight: 500;
    font-size: 0.95rem;
}


/* Service Icon Theming */
.service-icon-item .icon-box {
    background: #F3F4F6;
    transition: all 0.3s ease;
}

.service-icon-item:hover .icon-box {
    transform: scale(1.05);
}

/* InstaHelp / Cleaning: Blue/Cyan */
.item-cleaning .icon-box {
    background: #ECFEFF;
}

.item-cleaning .icon-box .material-icons {
    color: #0891B2;
}

/* Women's Salon: Pink */
.item-women .icon-box {
    background: #FDF2F8;
}

.item-women .icon-box .material-icons {
    color: #DB2777;
}

/* Men's Salon: Slate/Blue */
.item-men .icon-box {
    background: #F1F5F9;
}

.item-men .icon-box .material-icons {
    color: #475569;
}

/* Pest Control: Purple */
.item-pest .icon-box {
    background: #F5F3FF;
}

.item-pest .icon-box .material-icons {
    color: #7C3AED;
}

/* Electrician: Amber/Orange */
.item-electric .icon-box {
    background: #FFFBEB;
}

.item-electric .icon-box .material-icons {
    color: #D97706;
}

/* Water Purifier: Light Blue */
.item-water .icon-box {
    background: #EFF6FF;
}

.item-water .icon-box .material-icons {
    color: #2563EB;
}

/* Painting: Green/Teal */
.item-paint .icon-box {
    background: #ECFDF5;
}

.item-paint .icon-box .material-icons {
    color: #059669;
}

/* AC Repair: Red/Orange */
.item-ac .icon-box {
    background: #FEF2F2;
}

.item-ac .icon-box .material-icons {
    color: #DC2626;
}

/* Wall Makeover: Indigo */
.item-wall .icon-box {
    background: #EEF2FF;
}

.item-wall .icon-box .material-icons {
    color: #4F46E5;
}

/* --- NEW SECTIONS STYLING --- */

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: #FFFFFF;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 4rem;
    color: #111827;
    letter-spacing: -1px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.benefit-card {
    background: #F9FAFB;
    padding: 3rem 2rem;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #F3F4F6;
}

.benefit-card:hover {
    background: #FFFFFF;
    border-color: #E5E7EB;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.05);
    transform: translateY(-12px);
}

.benefit-icon-wrapper {
    width: 64px;
    height: 64px;
    background: #111827;
    color: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.2);
}

.benefit-icon-wrapper .material-icons {
    font-size: 32px;
}

.benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #111827;
}

.benefit-card p {
    color: #6B7280;
    font-size: 1rem;
    line-height: 1.6;
}

/* Referral Banner */
.referral-banner-section {
    padding: 2rem 0 6rem 0;
}

.referral-banner {
    background: linear-gradient(135deg, #111827 0%, #1F2937 100%);
    border-radius: 40px;
    padding: 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25);
}

.referral-banner::after {
    content: "";
    position: absolute;
    top: -20%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.banner-content {
    max-width: 550px;
    z-index: 2;
    position: relative;
}

.banner-tag {
    background: #374151;
    color: #9CA3AF;
    padding: 0.5rem 1.2rem;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    display: inline-block;
    border: 1px solid #4B5563;
}

.banner-content h2 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -2px;
}

.banner-content p {
    font-size: 1.25rem;
    color: #9CA3AF;
    margin-bottom: 3rem;
    line-height: 1.5;
}

.btn-refer {
    background: #FFFFFF;
    color: #111827 !important;
    padding: 1.2rem 3rem;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 800;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 10px 20px -5px rgba(255, 255, 255, 0.2);
}

.btn-refer:hover {
    background: #F3F4F6;
    transform: scale(1.05);
    box-shadow: 0 15px 30px -5px rgba(255, 255, 255, 0.3);
}

.banner-visual {
    z-index: 1;
    position: absolute;
    right: 5%;
}

.banner-visual .material-icons {
    font-size: 240px;
    color: rgba(255, 255, 255, 0.03);
    transform: rotate(-10deg);
}

/* Testimonials */
.testimonials-section {
    padding: 4rem 0 8rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    padding: 3rem;
    background: #FFFFFF;
    border: 1px solid #F3F4F6;
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-item .material-icons {
    font-size: 32px;
}

.service-icon-item span {
    font-size: 0.85rem;
    font-weight: 500;
    color: #4B5563;
}

/* Specific icon colors if needed */
.item-cleaning .material-icons {
    color: #8B5CF6;
}

.item-women .material-icons {
    color: #EC4899;
}

.item-men .material-icons {
    color: #3B82F6;
}

.item-pest .material-icons {
    color: #10B981;
}

.item-electric .material-icons {
    color: #F59E0B;
}

.item-paint .material-icons {
    color: #F43F5E;
}

/* Image Collage */
.hero-collage {
    flex: 1.2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.collage-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* --- PROFESSIONAL STATS BAR --- */
.stats-bar-section {
    background: #FFFFFF;
    padding: 2rem 0;
    border-top: 1px solid #E5E7EB;
    width: 100%;
}

.footer-stats-bar {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 6rem;
    width: 100%;
}

.stat-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.stat-item .material-icons {
    font-size: 28px;
    color: #111827;
    margin-top: 0;
}

.stat-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-value {
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    color: #111827 !important;
    line-height: 1 !important;
    letter-spacing: -0.5px !important;
    margin: 0 !important;
}

.stat-label {
    font-size: 0.95rem;
    color: #6B7280;
    font-weight: 500;
    margin-top: 4px;
}

/* --- PROFESSIONAL DARK FOOTER --- */
.main-footer {
    background: #0F172A;
    color: #FFFFFF;
    padding: 4rem 0;
    text-align: center;
    width: 100%;
}

.footer-minimal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-tagline {
    color: #94A3B8;
    font-size: 1.15rem;
    font-weight: 500;
    margin: 0;
}

.footer-copyright {
    color: #475569;
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 1024px) {
    .back-btn {
        display: inline-block !important;
    }

    .footer-stats-bar {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .stats-bar-section {
        padding: 2rem 0;
    }

    .footer-stats-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .stat-item {
        text-align: left;
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }
}