/* Service Premium CSS */

:root {
    --primary-color: #0066CC;
    --primary-dark: #004d99;
    --primary-gradient: linear-gradient(135deg, #0066CC 0%, #004d99 100%);
    --accent-gradient: linear-gradient(135deg, #00d2d3 0%, #00a8a9 100%);
    --surface-color: #ffffff;
    --bg-color: #f0f4f8;
    --text-primary: #0b1c33;
    --text-secondary: #64748b;
    --success-color: #10b981;
}

body {
    background-color: var(--bg-color);
}

/* Hero Section */
.service-hero {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.9) 0%, rgba(11, 28, 51, 0.95) 100%), url('https://images.unsplash.com/photo-1581092160562-40aa08e78837?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0 140px;
    position: relative;
    margin-bottom: -80px;
    border-radius: 0 0 60px 0;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.service-hero h1 {
    font-weight: 800;
    font-size: 3rem;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.service-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 600px;
    line-height: 1.6;
}

/* Booking Card */
.booking-card {
    background: var(--surface-color);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    overflow: hidden;
    margin-bottom: 2rem;
    position: relative;
}

.booking-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--primary-gradient);
}

.booking-header {
    background: #fff;
    padding: 30px 30px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.booking-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.5px;
}

.form-control,
.form-select {
    border-radius: 12px;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    background-color: #f8fafc;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
    background-color: #fff;
}

.form-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Feature List (Why Choose Us) - Enhanced */
.feature-list {
    padding-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    margin-right: 18px;
    flex-shrink: 0;
    box-shadow: 0 8px 16px rgba(0, 102, 204, 0.2);
}

.feature-icon i {
    color: #ffffff !important;
}

.feature-text h5 {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.feature-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Contact Card - Enhanced */
.contact-card-premium {
    background: linear-gradient(135deg, #2c3e50 0%, #000000 100%);
    color: white;
    border-radius: 20px;
    padding: 30px;
    margin-top: 30px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.contact-card-premium h5 {
    color: white;
    font-weight: 700;
}

.contact-card-premium .text-secondary {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Submit Button - Enhanced */
.btn-book {
    background: var(--primary-gradient);
    border: none;
    border-radius: 14px;
    padding: 18px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.25);
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-book:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 35px rgba(0, 102, 204, 0.35);
    filter: brightness(1.05);
}

/* Responsive */
@media (max-width: 991px) {
    .service-hero {
        text-align: center;
        padding: 80px 0 100px;
        clip-path: none;
        border-radius: 0 0 30px 30px;
    }

    .feature-list {
        margin-top: 40px;
    }

    .booking-card {
        margin-top: -60px;
    }
}