
/* ------------------------------------------------------------- */
/* HERO SECTION */
/* ------------------------------------------------------------- */
.hero {
    width: 100%;
    height: 260px;
    background: url('assets/images/services-banner.jpg') center/cover no-repeat;
    position: relative;
    border-radius: 0 0 35px 35px;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.hero-text {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #fff;
}

.hero-text h1 {
    font-size: 34px;
    font-weight: 800;
}


/* ------------------------------------------------------------- */
/* SERVICE TILES */
/* ------------------------------------------------------------- */

.service-tile {
    height: 250px;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    background: #fff;
    transition: 0.35s ease-in-out;
    box-shadow: 0 8px 22px rgba(0,0,0,0.15);
}

.service-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.20);
}

.service-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.35s ease;
}

.service-tile:hover img {
    transform: scale(1.05);
}

.tile-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.tile-content {
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 5;
}

.tile-title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.tile-btn {
    margin-top: 8px;
    padding: 8px 16px;
    border-radius: 10px;
    border: none;
    background: #fff;
    color: #0d6efd;
    font-weight: 600;
    transition: 0.25s;
}

.tile-btn:hover {
    background: #0d6efd;
    color: #fff;
}


/* ------------------------------------------------------------- */
/* PREMIUM BOOKING MODAL */
/* ------------------------------------------------------------- */

.modal-content {
    border-radius: 28px;
    background: rgba(255,255,255,0.90);
    backdrop-filter: blur(22px) saturate(160%);
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow:
        0px 8px 25px rgba(0,0,0,0.15),
        0px 18px 45px rgba(0,0,0,0.08);
}

/* Modal entrance animation */
.modal.fade .modal-dialog {
    transform: translateY(40px);
    transition: all 0.4s ease-out;
}
.modal.show .modal-dialog {
    transform: translateY(0);
}

.booking-header {
    padding: 20px 25px;
    display: flex;
    align-items: center;
}

.booking-icon {
    width: 48px;
    height: 48px;
    background: #0d6efd;
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 22px;
    box-shadow: 0 4px 14px rgba(13,110,253,0.45);
}

.booking-title {
    font-weight: 800;
    font-size: 22px;
}

.booking-close {
    margin-left: auto;
}

.booking-section-title {
    font-weight: 700;
    margin-bottom: 6px;
    font-size: 15px;
}

.input-modern {
    position: relative;
}

.input-modern i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #0d6efd;
    font-size: 18px;
}

.modern-field {
    padding-left: 45px;
    height: 50px;
    border-radius: 14px;
    border: 1px solid #ccc;
    transition: 0.25s ease;
}

.modern-field:focus {
    border-color: #0d6efd;
    box-shadow: 0px 0px 0px 4px rgba(13,110,253,0.25);
}

.divider {
    text-align: center;
    margin: 10px 0;
    position: relative;
}

.divider span {
    padding: 0 12px;
    background: rgba(255,255,255,0.85);
}

.divider::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: #ccc;
}

.premium-btn {
    height: 48px;
    padding: 0 22px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 14px;
}

.primary-glow {
    box-shadow: 0 8px 18px rgba(13,110,253,0.45);
}

.primary-glow:hover {
    box-shadow: 0 12px 28px rgba(13,110,253,0.55);
}

/* 
=======================================
===== BOOKING MODAL – PREMIUM UI ===== 
=======================================
*/
.booking-modal .modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 25px 70px rgba(0,0,0,0.3);
    overflow: hidden;
}

/* Header */
.booking-header {
    background: linear-gradient(135deg, #0d6efd, #00c6ff);
    color: #fff;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.booking-header .icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.booking-header h4 {
    margin: 0;
    font-weight: 700;
}

/* Section titles */
.booking-section {
    margin-bottom: 18px;
}
.booking-section label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    color: #444;
}

/* Inputs */
.booking-modal .form-control,
.booking-modal .form-select {
    border-radius: 14px;
    padding: 12px 14px;
    border: 1px solid #ddd;
}

.booking-modal .form-control:focus,
.booking-modal .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13,110,253,0.15);
}

/* Footer */
.booking-footer {
    padding: 18px;
    display: flex;
    gap: 12px;
}

.booking-footer .btn {
    border-radius: 14px;
    padding: 12px;
    font-weight: 600;
}

/* Animation */
.booking-modal.fade .modal-dialog {
    transform: translateY(40px) scale(0.96);
    transition: all .35s ease;
}
.booking-modal.show .modal-dialog {
    transform: translateY(0) scale(1);
}
