/* Icon Circle Placeholders for Destinations and Experiences */

.icon-circle-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #63AB45 0%, #4a8f34 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(99, 171, 69, 0.3);
    transition: all 0.3s ease;
}

.icon-circle-placeholder:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(99, 171, 69, 0.4);
}

.icon-circle-placeholder i {
    font-size: 28px;
    color: #ffffff;
}

/* Small icon circles for meta info */
.icon-circle-small {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(99, 171, 69, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.icon-circle-small i {
    font-size: 14px;
    color: #63AB45;
}

/* Destination/Experience card icons */
.single-place-item .icon-wrapper,
.single-service-item .icon-wrapper {
    text-align: center;
    margin-bottom: 15px;
}

/* Quick info icons with circles */
.quick-info-bar .info-item i {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #63AB45 0%, #4a8f34 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    margin-right: 12px;
}

/* About page icon circles */
.about-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #63AB45 0%, #4a8f34 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 20px rgba(99, 171, 69, 0.3);
    position: relative;
    overflow: hidden;
}

.about-icon-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.about-icon-circle i {
    font-size: 35px;
    color: #ffffff;
}

/* Feature icons with circles */
.single-features-item .icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #63AB45 0%, #4a8f34 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 18px rgba(99, 171, 69, 0.25);
}

.single-features-item .icon-circle i {
    font-size: 30px;
    color: #ffffff;
}

/* Service icons with circles */
.single-service-item-three .icon-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, #63AB45 0%, #4a8f34 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 4px 15px rgba(99, 171, 69, 0.3);
}

.single-service-item-three .icon-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .icon-circle-placeholder {
        width: 50px;
        height: 50px;
    }
    
    .icon-circle-placeholder i {
        font-size: 24px;
    }
    
    .about-icon-circle {
        width: 65px;
        height: 65px;
    }
    
    .about-icon-circle i {
        font-size: 28px;
    }
    
    .quick-info-bar .info-item i {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}
