/* ==========================================================================
   PREMIUM HOME REDESIGN (Connectgoo v4)
   ========================================================================== */

/* ====== GLOBAL PREMIUM ====== */
body.bg-premium {
    background-color: #f8fafc; /* Gris extra claro, muy limpio */
    color: #0f172a;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.main-content-premium {
    padding-top: 80px; /* Espacio para el navbar fijo */
}

/* ====== HERO SECTION ====== */
.premium-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    min-height: calc(100vh - 80px);
}

.premium-hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ecfdf5;
    color: #059669;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    width: fit-content;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #0f172a;
    margin: 0;
}

.hero-title .text-gradient {
    background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #64748b;
    max-width: 90%;
    margin: 0;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.btn-hero-primary {
    background: #10b981;
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.4);
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(16, 185, 129, 0.5);
    background: #059669;
}

.btn-hero-secondary {
    background: white;
    color: #1e293b;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    border-color: #10b981;
    color: #10b981;
    background: #f8fafc;
}

.hero-trust-indicators {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
}

.trust-item i {
    width: 16px;
    height: 16px;
    color: #10b981;
}

/* ====== BENTO DESKTOP VISUAL ====== */
.bento-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bento-image-card {
    position: relative;
    width: 100%;
    max-width: 450px;
    /* overflow: hidden; REMOVIDO para que las tarjetas flotantes puedan sobresalir */
}

.bento-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.glass-floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

.top-card {
    top: 40px;
    left: -40px;
    animation-delay: 0s;
}

.bottom-card {
    bottom: 40px;
    right: -40px;
    animation-delay: 3s;
}

.glass-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-emerald-light { background: #d1fae5; }
.bg-blue-light { background: #dbeafe; }

.glass-text {
    display: flex;
    flex-direction: column;
}

.glass-text strong {
    font-size: 14px;
    color: #1e293b;
    font-weight: 700;
}

.glass-text span {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* ====== MOBILE QUICK CATEGORIES (Instagram Style Stories) ====== */
.mobile-quick-categories {
    display: none;
    padding: 16px 20px;
    gap: 16px;
    overflow-x: auto;
    scrollbar-width: none;
    margin-top: 10px;
    margin-bottom: 25px;
    background: #f8fafc;
}

.mobile-quick-categories::-webkit-scrollbar {
    display: none;
}

.quick-cat, .quick-cat-all {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    min-width: 75px;
    font-size: 12px;
    font-weight: 600;
    color: #475569;
    transition: transform 0.2s ease;
}

.quick-cat:active, .quick-cat-all:active {
    transform: scale(0.92);
}

.quick-cat i, .quick-cat-all i {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 3px;
    color: #10b981;
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), linear-gradient(135deg, #10b981 0%, #3b82f6 50%, #8b5cf6 100%);
    background-origin: border-box;
    background-clip: content-box, border-box;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.quick-cat-all i {
    background-image: linear-gradient(white, white), linear-gradient(135deg, #64748b 0%, #94a3b8 100%);
    color: #64748b;
}

.quick-cat i svg, .quick-cat-all i svg {
    width: 22px;
    height: 22px;
}

@keyframes ringPulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.quick-cat i {
    animation: ringPulse 2.5s infinite ease-in-out;
}

/* ====== SECTION COMMON ====== */
.premium-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 60px 20px;
}

.rounded-section {
    border-radius: 32px;
}

.section-heading {
    margin-bottom: 40px;
    text-align: center;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.text-center .section-title {
    justify-content: center;
}

.section-desc {
    font-size: 16px;
    color: #64748b;
    margin: 0;
}

/* ====== SERVICIOS DESTACADOS (CLEAN LIST/SCROLL) ====== */
.premium-horizontal-scroll {
    /* Usamos Flexbox para centrar perfectamente sin importar la cantidad de elementos */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    padding-bottom: 20px;
}

@media(max-width: 768px) {
    .premium-horizontal-scroll {
        /* En móvil forzamos nowrap para habilitar el scroll horizontal tipo app */
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0 10px 20px 10px;
        scroll-snap-type: x mandatory;
    }
}

.premium-horizontal-scroll::-webkit-scrollbar {
    height: 6px;
}

.premium-horizontal-scroll::-webkit-scrollbar-thumb {
    background-color: #cbd5e1;
    border-radius: 10px;
}

.premium-worker-card {
    /* En desktop mantiene su ancho fijo (280px), en móvil respeta el min-width */
    width: 280px;
    max-width: 100%;
    min-width: 260px;
    flex-shrink: 0;
    background: white;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
}

.premium-worker-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #e2e8f0;
}

.worker-card-header {
    height: 80px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 20px 20px 0 0;
    position: relative;
}

.worker-avatar {
    position: absolute;
    bottom: -24px;
    left: 20px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 4px solid white;
    background: white;
}

.worker-avatar img, .avatar-initial {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-initial {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 700;
}

.verified-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verified-badge i {
    width: 20px;
    height: 20px;
    color: #10b981;
}

.worker-card-body {
    padding: 36px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.worker-service {
    font-size: 12px;
    font-weight: 700;
    color: #10b981;
    background: #ecfdf5;
    padding: 4px 10px;
    border-radius: 12px;
    width: fit-content;
}

.worker-name {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

.worker-location {
    font-size: 13px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 4px;
}

.worker-location i {
    width: 14px;
    height: 14px;
}

/* ====== CTA PREMIUM ====== */
.premium-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 32px;
    padding: 60px;
    max-width: 1200px;
    margin: 40px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255,255,255,0.1);
}
.premium-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(16, 185, 129, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    max-width: 500px;
    z-index: 2;
}

.cta-badge {
    background: rgba(255,255,255,0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: inline-block;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 16px 0;
}

.cta-content p {
    font-size: 16px;
    color: #94a3b8;
    margin: 0 0 32px 0;
    line-height: 1.6;
}

.btn-cta-primary {
    background: #10b981;
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s;
}

.btn-cta-primary:hover {
    background: #059669;
    transform: translateY(-2px);
}

.cta-visual {
    position: absolute;
    right: -20px;
    bottom: -20px;
    opacity: 0.5;
}

/* ====== SPACER FOR MOBILE NAV ====== */
.mobile-nav-spacer {
    height: 0;
}

/* ====== CITIES SECTION ====== */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.city-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
}

.city-card.active:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px -5px rgba(16, 185, 129, 0.15);
    border-color: #10b981;
}

.city-card.inactive {
    opacity: 0.7;
    cursor: not-allowed;
    background: #f8fafc;
}

.city-icon {
    width: 48px;
    height: 48px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #475569;
    transition: all 0.3s;
}

.city-card.active:hover .city-icon {
    background: #ecfdf5;
    color: #10b981;
}

.city-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 4px 0;
}

.city-info span {
    font-size: 14px;
    color: #64748b;
    display: block;
    margin-bottom: 16px;
}

.city-status {
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

.city-status.success {
    background: #ecfdf5;
    color: #10b981;
}

.city-status.warning {
    background: #fffbeb;
    color: #f59e0b;
}

.btn-location {
    background: white;
    border: 2px solid #e2e8f0;
    color: #1e293b;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 24px;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
    font-family: inherit;
}

.btn-location:hover {
    border-color: #2563eb;
    color: #2563eb;
    background: #eff6ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

/* ====== MEDIA QUERIES (MOBILE FIXES) ====== */
@media (min-width: 769px) {
    .mobile-only { display: none !important; }
}

@media (max-width: 768px) {
    .desktop-only { display: none !important; }
    
    .mobile-nav-spacer {
        height: 80px; /* Evita que la barra inferior tape el contenido */
    }
    
    .premium-hero {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        min-height: auto;
        text-align: center;
    }
    
    .hero-badge {
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 38px;
        letter-spacing: -0.03em;
    }
    
    .hero-subtitle {
        font-size: 16px;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-actions {
        justify-content: center;
        flex-direction: column;
    }
    
    .hero-trust-indicators {
        justify-content: center;
    }
    
    .mobile-quick-categories {
        display: flex !important;
    }
    
    .rounded-section {
        margin: 0;
        border-radius: 0;
        padding: 40px 20px;
    }
    
    .section-title {
        font-size: 24px;
        justify-content: center;
    }
    
    .premium-cta {
        padding: 40px 20px;
        border-radius: 0;
        text-align: center;
    }
    
    .cta-content {
        margin: 0 auto;
    }
}

/* ====== PREMIUM FOOTER ====== */
.premium-footer { background: #0f172a; padding: 60px 20px 20px; border-top: 1px solid #1e293b; color: #94a3b8; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand-col .footer-logo { font-size: 24px; font-weight: 800; color: #10b981; display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.footer-brand-col p { color: #94a3b8; font-size: 15px; margin-bottom: 20px; max-width: 300px; }
.social-links { display: flex; gap: 12px; }
.social-links a { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: #1e293b; color: #94a3b8; transition: all 0.3s; }
.social-links a:hover { background: #10b981; color: white; transform: translateY(-3px); }
.footer-links-col h4 { font-size: 16px; font-weight: 700; color: white; margin-bottom: 20px; }
.footer-links-col a { display: block; color: #cbd5e1; text-decoration: none; font-size: 15px; margin-bottom: 12px; transition: color 0.2s; }
.footer-links-col a:hover { color: #10b981; }
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid #1e293b; color: #64748b; font-size: 14px; }
@media(max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; } .footer-brand-col p { margin: 0 auto 20px; } .footer-brand-col .footer-logo { justify-content: center; } .social-links { justify-content: center; } }

/* ====== NAVBAR BACKGROUND OVERRIDE ====== */
.cg-navbar { position: fixed !important; top: 0 !important; left: 50% !important; transform: translateX(-50%) !important; z-index: 1000 !important; }
.cg-navbar::before { content: ''; position: absolute; top: 0; left: -50vw; width: 200vw; height: 100%; background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); z-index: -1; border-bottom: 1px solid rgba(0,0,0,0.05); box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02); }

/* ====== TEXT GRADIENT ====== */
.text-gradient {
    background: linear-gradient(90deg, #10b981 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cursor-blink {
    font-weight: 300;
    color: #10b981;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ====== ULTRA PREMIUM BACKGROUND ====== */
body.bg-premium {
    background-color: #fdfdfd;
    background-image: 
        radial-gradient(at 0% 0%, rgba(16, 185, 129, 0.12) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(59, 130, 246, 0.1) 0px, transparent 50%),
        radial-gradient(at 50% 100%, rgba(16, 185, 129, 0.05) 0px, transparent 60%);
    background-attachment: fixed;
}

/* ====== SCROLL REVEAL ANIMATIONS ====== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ====== ABOUT US ====== */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.about-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}
.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.05);
}
.about-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.about-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 16px 0;
}
.about-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 16px;
    margin: 0;
}

/* ====== CONTACT FORM ====== */
.contact-card {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}
.premium-form .form-group {
    margin-bottom: 24px;
}
.premium-form label {
    display: block;
    font-weight: 600;
    color: #475569;
    margin-bottom: 8px;
    font-size: 14px;
}
.form-input {
    width: 100%;
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s;
    background: #f8fafc;
    box-sizing: border-box;
}
.form-input:focus {
    outline: none;
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.nav-contact-icon:hover {
    background: #d1fae5 !important;
    transform: scale(1.05);
}

/* ====== DIRECTORIO AGRO VS URBANO ====== */
.directorio-container { max-width: 1100px; margin: 0 auto; padding: 120px 20px 40px; }
.btn-back-circle { display: inline-flex; width: 44px; height: 44px; background: white; border: 1px solid #e2e8f0; border-radius: 50%; align-items: center; justify-content: center; color: #475569; transition: all 0.3s; margin-bottom: 24px; text-decoration: none; }
.btn-back-circle:hover { background: #f8fafc; transform: translateX(-5px); color: #0f172a; }
.directorio-header { text-align: center; margin-bottom: 40px; }
.directorio-header h1 { font-size: 32px; font-weight: 800; color: #1e293b; margin-bottom: 8px; }
.directorio-header p { color: #64748b; font-size: 16px; margin: 0; }
.search-card { background: white; border-radius: 24px; padding: 24px; box-shadow: 0 4px 20px -5px rgba(0,0,0,0.05); margin-bottom: 40px; max-width: 700px; margin-left: auto; margin-right: auto; }
.search-form { display: flex; flex-direction: column; gap: 12px; }
.search-form label { font-weight: 700; color: #1e293b; }
.search-input-group { display: flex; gap: 10px; }
.search-input { flex: 1; padding: 14px 16px; border-radius: 12px; border: 1px solid #e2e8f0; font-size: 16px; outline: none; transition: border-color 0.3s; box-sizing: border-box; }
.search-input:focus { border-color: #10b981; }
.btn-search { padding: 14px 28px; border-radius: 12px; background: #10b981; color: white; border: none; font-weight: 700; cursor: pointer; transition: all 0.3s; }
.btn-search:hover { background: #059669; }

/* Tabs Selector */
.tabs-container { max-width: 400px; margin: 0 auto 40px; display: flex; padding: 6px; background: #e2e8f0; border-radius: 16px; }
.tab-btn { flex: 1; padding: 14px 16px; border-radius: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 8px; border: none; cursor: pointer; transition: all 0.3s; font-size: 15px; }
.tab-active { background-color: #10b981; color: white; box-shadow: 0 4px 6px -1px rgba(16, 185, 129, 0.2); }
.tab-inactive { background-color: transparent; color: #64748b; }
.tab-inactive:hover { background-color: rgba(255,255,255,0.5); color: #334155; }

/* Category Grid */
.category-section-title { display: flex; align-items: center; gap: 16px; background: #f8fafc; padding: 20px 24px; border-radius: 20px; border: 1px solid #e2e8f0; margin-bottom: 24px; }
.category-section-title.agro-title { background: #ecfdf5; border-color: #d1fae5; }
.category-section-title h2 { font-size: 20px; font-weight: 800; color: #1e293b; margin: 0 0 4px 0; }
.category-section-title.agro-title h2 { color: #064e3b; }
.category-section-title p { color: #64748b; font-size: 14px; margin: 0; }
.category-section-title.agro-title p { color: #047857; }
.category-icon-large { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; color: white; }
.bg-dark { background: #1e293b; }
.bg-emerald { background: #10b981; }

.categories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 20px; margin-bottom: 60px; }

/* Urban Cards */
.urban-card { background: white; border-radius: 20px; padding: 24px 16px; text-align: center; border: 1px solid #e2e8f0; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02); text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: 12px; transition: all 0.3s; }
.urban-card:hover { transform: translateY(-5px); box-shadow: 0 12px 24px -8px rgba(15, 23, 42, 0.08); border-color: #94a3b8; }
.urban-icon-bg { width: 54px; height: 54px; background: #ecfdf5; color: #10b981; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 4px; }
.urban-card h3 { color: #1e293b; font-size: 14px; font-weight: 700; margin: 0; }

/* Agro Cards */
.agro-card { background: white; border-radius: 20px; padding: 24px 16px; text-align: center; border: 1px solid #d1fae5; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02); text-decoration: none; display: flex; flex-direction: column; align-items: center; gap: 12px; transition: all 0.3s; }
.agro-card:hover { transform: translateY(-5px); box-shadow: 0 12px 24px -8px rgba(16, 185, 129, 0.2); border-color: #34d399; }
.agro-card:hover .agro-icon-bg { background: #10b981; color: white; }
.agro-icon-bg { width: 54px; height: 54px; background: #ecfdf5; color: #059669; border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 4px; transition: all 0.3s; }
.agro-card h3 { color: #1e293b; font-size: 14px; font-weight: 700; margin: 0; }

/* Hidden utility */
.hidden { display: none !important; }
