/* Official Movement Improvement Brand Colors */
:root {
    --brand-navy: #004B74;
    --brand-blue: #0780C1;
    --brand-light-blue: #59B2E2;
    --brand-lightest: #A4D8F5;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --background-light: #f8fbff;
    --white: #ffffff;
    --success-green: #28a745;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section */
.booking-header {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-light-blue) 100%);
    color: var(--white);
    padding: 60px 0 40px;
    text-align: center;
}

.booking-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.booking-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Booking Options Section */
.booking-options {
    padding: 60px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-navy);
    margin-bottom: 3rem;
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Featured Service Cards */
.featured-card {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-light-blue) 100%);
    color: var(--white);
    border: 2px solid var(--brand-blue);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(0, 75, 116, 0.2);
    position: relative;
    overflow: hidden;
}

.featured-card::before {
    content: "POPULAR";
    position: absolute;
    top: 15px;
    right: -25px;
    background: var(--brand-navy);
    color: white;
    padding: 5px 30px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 75, 116, 0.3);
}

.booking-card {
    background: var(--white);
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.booking-card:hover {
    border-color: var(--brand-blue);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 75, 116, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.featured-card .service-icon {
    color: var(--white);
}

.booking-card .service-icon {
    color: var(--brand-blue);
}

.booking-card h3,
.featured-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.featured-card h3 {
    color: var(--white);
}

.booking-card h3 {
    color: var(--brand-navy);
}

.booking-card p,
.featured-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.featured-card p {
    color: rgba(255, 255, 255, 0.9);
}

.booking-card p {
    color: var(--text-light);
}

.duration {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.featured-card .duration {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.booking-card .duration {
    background: var(--brand-lightest);
    color: var(--brand-navy);
}

.book-button {
    background: var(--brand-blue);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
}

.book-button:hover {
    background: var(--brand-navy);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 75, 116, 0.3);
}

.featured-card .book-button {
    background: var(--white);
    color: var(--brand-blue);
}

.featured-card .book-button:hover {
    background: var(--brand-lightest);
    color: var(--brand-navy);
}

/* Insurance Section */
.insurance-section {
    background: var(--background-light);
    padding: 40px 0;
    text-align: center;
}

.insurance-badge {
    background: var(--success-green);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.insurance-text {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Contact Section */
.contact-section {
    background: var(--brand-navy);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.contact-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-section p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.booking-page .contact-section .phone-link {
    background: var(--white) !important;
    color: var(--brand-navy) !important;
    padding: 1rem 2rem !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    transition: all 0.3s ease !important;
}

.booking-page .contact-section .phone-link:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3) !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .booking-header h1 {
        font-size: 2rem;
    }
    
    .booking-header p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .booking-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .booking-card,
    .featured-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .book-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .booking-header {
        padding: 40px 0 30px;
    }
    
    .booking-options {
        padding: 40px 0;
    }
}