/* Custom Styles for Easy Retire Asia */

/* Destinations Section */
.destinations {
    background: #f8f9fa;
}

.destination-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.destination-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.destination-img {
    position: relative;
    overflow: hidden;
}

.destination-img img {
    transition: all 0.5s ease;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.destination-item:hover .destination-img img {
    transform: scale(1.05);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 110, 253, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.destination-item:hover .destination-overlay {
    opacity: 1;
}

.destination-content {
    padding: 20px;
}

.destination-content h4 {
    color: #0d6efd;
    margin-bottom: 10px;
}

.destination-meta {
    display: flex;
    flex-wrap: wrap;
    margin-top: 15px;
}

.destination-meta span {
    background: #f8f9fa;
    padding: 5px 10px;
    border-radius: 5px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: #6c757d;
}

/* Packages Section */
.packages {
    background: #fff;
}

.package-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.package-card.featured {
    transform: scale(1.05);
    z-index: 1;
    border: 2px solid #0d6efd;
}

.package-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #0d6efd;
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.package-header {
    background: #0d6efd;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.package-header h4 {
    margin-bottom: 5px;
    font-weight: 700;
}

.price {
    font-size: 1.2rem;
    font-weight: 600;
}

.package-body {
    padding: 20px;
}

.package-desc {
    color: #6c757d;
    margin-bottom: 20px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f1f1f1;
    color: #495057;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: #0d6efd;
}

.package-footer {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    background: #f8f9fa;
}

/* Services Section */
.services {
    background: #f8f9fa;
}

.service-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: #0d6efd;
}

.service-icon i {
    font-size: 30px;
    color: #0d6efd;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
    color: #fff;
}

.service-card h4 {
    margin-bottom: 15px;
    color: #212529;
}

.service-card p {
    color: #6c757d;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .package-card.featured {
        transform: scale(1);
        margin: 30px 0;
    }

    .package-footer {
        flex-direction: column;
        gap: 10px;
    }

    .package-footer .btn {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .destination-meta {
        flex-direction: column;
    }

    .destination-meta span {
        margin-right: 0;
    }
}


.footer-contact p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    line-height: 1.4;
}

.footer-contact i {
    flex-shrink: 0;
    font-size: 1rem;
    color: #0d6efd;
}