.airdav-services-grid {
    display: grid;
    gap: 30px;
    width: 100%;
}

.airdav-service-card {
    position: relative;
    height: 500px; /* Default height */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.3s ease;
}

.airdav-service-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
    z-index: 1;
}

.airdav-service-card:hover .airdav-service-image {
    transform: scale(1.1);
}

.airdav-service-info {
    position: relative;
    background: #fff;
    width: 85%;
    margin: 0 auto 30px;
    padding: 30px 25px;
    z-index: 2;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08), 0 0 1px rgba(0,0,0,0.1);
    border-radius: 2px;
}

.airdav-service-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-top: 25px solid #0099bc;
    border-left: 25px solid transparent;
}

.airdav-service-title {
    margin: 0 0 15px;
    font-size: 18px;
    font-weight: 600;
}

.airdav-service-divider {
    width: 100%;
    height: 1px;
    background: #eee;
    margin-bottom: 15px;
}

.airdav-service-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.airdav-service-button {
    display: inline-block;
    padding: 10px 25px;
    background: #0099bc;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    transition: filter 0.3s ease;
}

.airdav-service-button:hover {
    filter: brightness(1.1);
}
