/* Service Grid Styles */
.ab-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 40px auto;
}

.ab-service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 160, 23, 0.1);
    position: relative;
}

.ab-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d4a017, #c59c12);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.ab-service-card:hover::before {
    transform: scaleX(1);
}

.ab-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(212, 160, 23, 0.2);
}

.ab-service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ab-service-card:hover img {
    transform: scale(1.05);
}

.ab-service-card-content {
    padding: 25px;
    text-align: center;
}

.ab-service-card h3 {
    margin: 0 0 12px 0;
    font-size: 22px;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.ab-service-card p {
    color: #555;
    font-size: 14px;
    margin-bottom: 18px;
    min-height: 42px;
    line-height: 1.6;
}

.ab-service-price {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #d4a017, #c59c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 18px;
    display: block;
}

.ab-service-duration {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.ab-proceed-btn {
    background: linear-gradient(135deg, #d4a017, #c59c12);
    color: #000;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(212, 160, 23, 0.3);
}

.ab-proceed-btn:hover {
    background: linear-gradient(135deg, #000, #222);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Booking Form Styles */
.ab-booking-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 50px auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    padding: 40px;
}

@media (min-width: 992px) {
    .ab-booking-wrapper {
        width: 85%;
    }
    .ab-form-flex {
        display: flex;
        gap: 30px;
    }
    .ab-form-section {
        flex: 1;
    }
}

.ab-booking-form h3 {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #000;
}

.ab-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #d4a017;
}

.ab-booking-form label {
    display: block;
    margin: 10px 0 5px;
    font-weight: 500;
}

.ab-booking-form input, 
.ab-booking-form select {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
    font-size: 14px;
}

.ab-book-btn {
    width: 100%;
    background: linear-gradient(135deg, #d4a017, #c59c12);
    color: #000;
    font-weight: 600;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ab-book-btn:hover {
    background: linear-gradient(135deg, #000, #222);
    color: #fff;
}

.ab-success {
    text-align: center;
    color: green;
    margin-top: 20px;
    font-weight: 600;
}

/* Success Page Styles */
.ab-success-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
    padding: 40px 20px;
}

.ab-success-icon {
    font-size: 80px;
    color: #2ecc71;
    margin-bottom: 20px;
}

.ab-success-page h1 {
    font-size: 32px;
    color: #000;
    margin-bottom: 15px;
    font-weight: 700;
}

.ab-success-page p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.ab-home-btn {
    background: linear-gradient(135deg, #d4a017, #c59c12);
    color: #000;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.ab-home-btn:hover {
    background: linear-gradient(135deg, #000, #222);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
