/* --- Vatar Industrial Amenities Redesign --- */

.amenities-section-industrial {
    padding: 4rem 0 !important;
    background-color: #fff !important;
    /* Reverted to white */
    overflow: hidden !important;
}

.amenities-section-industrial .section-title h2 {
    margin-top: 0 !important;
    margin-bottom: 2rem !important;
    color: #333 !important;
    /* Reverted to dark text */
}

.industrial-grid {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 40px !important;
}

.industrial-item {
    text-align: center !important;
    padding: 30px 20px !important;
    background: #fff !important;
    /* Reverted to white background */
    border: 1px solid #eee !important;
    /* Lighter border for white bg */
    border-radius: 8px !important;
    transition: all 0.4s ease !important;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUpIndustrial 0.8s forwards !important;
}

/* Staggered Animations */
.industrial-item:nth-child(1) {
    animation-delay: 0.1s !important;
}

.industrial-item:nth-child(2) {
    animation-delay: 0.2s !important;
}

.industrial-item:nth-child(3) {
    animation-delay: 0.3s !important;
}

.industrial-item:nth-child(4) {
    animation-delay: 0.4s !important;
}

.industrial-item:nth-child(5) {
    animation-delay: 0.5s !important;
}

.industrial-item:nth-child(6) {
    animation-delay: 0.6s !important;
}

.industrial-item:nth-child(7) {
    animation-delay: 0.7s !important;
}

.industrial-item:nth-child(8) {
    animation-delay: 0.8s !important;
}

.industrial-item:nth-child(9) {
    animation-delay: 0.9s !important;
}

.industrial-item:nth-child(10) {
    animation-delay: 1.0s !important;
}

.industrial-item:nth-child(n+11) {
    animation-delay: 1.1s !important;
}

.industrial-icon-wrapper {
    width: 80px !important;
    height: 80px !important;
    margin: 0 auto 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.4s ease !important;
    background: transparent !important;
}

.industrial-icon-wrapper iconify-icon,
.industrial-icon-wrapper svg {
    color: #caa45f !important;
    /* Kept Gold Icons */
    font-size: 64px !important;
    /* Kept Iconify size */
    width: 64px !important;
    height: 64px !important;
    transition: all 0.4s ease !important;
}

.industrial-item h5 {
    font-family: 'Poppins', sans-serif !important;
    font-size: 16px !important;
    color: #333 !important;
    /* Reverted to dark text */
    font-weight: 500 !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    transition: color 0.3s ease !important;
}

/* Hover State */
.industrial-item:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    /* Softer shadow for white bg */
    border-color: #caa45f !important;
    /* Gold border on hover */
}

.industrial-item:hover iconify-icon,
.industrial-item:hover svg {
    transform: scale(1.1) !important;
}

.industrial-item:hover h5 {
    color: #caa45f !important;
    /* Gold text on hover */
}

/* Keyframes */
@keyframes fadeInUpIndustrial {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Grid */
@media (max-width: 1199px) {
    .industrial-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 30px !important;
    }

    .amenities-section-industrial {
        padding: 3rem 0 !important;
    }
}

@media (max-width: 991px) {
    .industrial-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

@media (max-width: 767px) {
    .industrial-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        /* Kept 2 columns on mobile */
        gap: 15px !important;
    }

    .amenities-section-industrial {
        padding: 2rem 0 !important;
    }

    .industrial-item {
        padding: 20px 10px !important;
    }

    .industrial-icon-wrapper {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 10px !important;
    }

    .industrial-icon-wrapper iconify-icon,
    .industrial-icon-wrapper svg {
        font-size: 48px !important;
        width: 48px !important;
        height: 48px !important;
    }

    .industrial-item h5 {
        font-size: 13px !important;
    }

    .about-flora {
        background: #ffffff !important;
    }

    .about-flora .overview-logo {
        mix-blend-mode: multiply;
    }
}

/* Connectivity SVG Icon Styles */
.location .nearby-list .connectivity-icon {
    width: 32px !important;
    height: 32px !important;
    margin-right: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.location .nearby-list .connectivity-icon svg {
    width: 100% !important;
    height: 100% !important;
    fill: #7f7f7f !important;
    /* Theme grey */
    transition: all 0.3s ease !important;
}

.location .nearby-list li:hover .connectivity-icon svg {
    fill: #EFBA63 !important;
    /* Gold */
    transform: translateY(-2px) !important;
}