/* ================= BOOK SERVICE PREMIUM ================= */

.book-service-hero {
    position: relative;
    height: 70vh;
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    overflow: hidden;
}

.book-service-hero::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(58,122,254,0.3);
    filter: blur(120px);
    border-radius: 50%;
    top: -200px;
    left: -200px;
}

.book-service-content {
    position: relative;
    z-index: 5;
    max-width: 700px;
}

.book-service-content h1 {
    font-size: 54px;
    margin-bottom: 20px;
}

.book-service-content p {
    opacity: 0.85;
    font-size: 18px;
}

/* FORM SECTION */

.book-service-section {
    padding: 120px 20px;
    background: #f8fafc;
}

.book-service-card {
    max-width: 750px;
    margin: auto;
    background: #ffffff;
    padding: 60px;
    border-radius: 28px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.08);
}

.book-service-card h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
}

.service-toggle {
    display: flex;
    gap: 10px;
    margin-bottom: 35px;
}

.service-toggle button {
    flex: 1;
    padding: 14px;
    border-radius: 14px;
    border: none;
    background: #e2e8f0;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s ease;
}

.service-toggle button.active-toggle {
    background: linear-gradient(135deg,#3A7AFE,#4f46e5);
    color: white;
}

.book-service-card input,
.book-service-card select {
    width: 100%;
    padding: 16px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    margin-bottom: 20px;
    font-size: 15px;
}

.book-service-btn {
    width: 100%;
    padding: 18px;
    border-radius: 18px;
    border: none;
    background: linear-gradient(135deg,#3A7AFE,#4f46e5);
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

.book-service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
