/* PAGE CONFIGURATION - Booking System Plug-In Page */
    :root {
        --header-height: 80px;
        --header-height-mobile: 60px;
        --hero-padding-top: 180px;
        --hero-min-height: 55vh;
        --page-padding-top: 80px;
    }

    /* =================================================================
       BOOKING SYSTEM PAGE STYLES - Scoped to #custom-container-booking
       ================================================================= */

    #custom-container-booking {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    #custom-container-booking .cms-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
    }

    /* Hero Section */
    #custom-container-booking .service-hero {
        background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
        padding: 80px 0 80px 0;
        position: relative;
        overflow: hidden;
        margin-top: -80px;
        padding-top: 200px;
    }

    @media (max-width: 1024px) {
        #custom-container-booking .hero-bg {
            background-attachment: scroll !important;
            background-size: cover !important;
            background-position: center center !important;
        }
    }

    @media (max-width: 768px) {
        #custom-container-booking .service-hero {
            margin-top: -60px;
            padding-top: 160px;
        }
    }

    #custom-container-booking .hero-bg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0.6;
        background-image: url('https://images.unsplash.com/photo-1506784983877-45594efa4cbe?auto=format&fit=crop&w=2000');
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
    }

    @media (min-width: 1025px) {
        #custom-container-booking .hero-bg {
            background-attachment: fixed;
        }
    }

    #custom-container-booking .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(71, 94, 145, 0.5), rgba(42, 58, 90, 0.6));
    }

    #custom-container-booking .hero-content {
        position: relative;
        z-index: 1;
        text-align: center;
    }

    #custom-container-booking .service-icon-hero {
        width: 80px;
        height: 80px;
        background: var(--brand-accent);
        border-radius: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--brand-dark);
        font-size: var(--text-3xl);
        margin: 0 auto 2rem;
    }

    #custom-container-booking .hero-title {
        font-size: var(--text-5xl);
        font-weight: var(--font-weight-bold);
        color: white;
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }

    #custom-container-booking .hero-subtitle {
        font-size: var(--text-xl);
        color: rgba(255, 255, 255, 0.9);
        max-width: 700px;
        margin: 0 auto 2.5rem;
        line-height: 1.7;
    }

    #custom-container-booking .hero-cta {
        display: inline-block;
        padding: 1rem 2.5rem;
        background: var(--brand-accent);
        color: var(--brand-dark) !important;
        font-weight: var(--font-weight-semibold);
        text-decoration: none !important;
        border-radius: 0.5rem;
        transition: all 0.3s;
    }

    #custom-container-booking .hero-cta:hover,
    #custom-container-booking .hero-cta:focus,
    #custom-container-booking .hero-cta:active,
    #custom-container-booking .hero-cta:visited {
        background: var(--brand-accent);
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(255, 210, 31, 0.3);
        text-decoration: none !important;
        color: var(--brand-dark) !important;
    }

    /* Overview Section */
    #custom-container-booking .overview-section {
        padding: 5rem 0;
        background: white;
    }

    #custom-container-booking .overview-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3rem;
        align-items: center;
    }

    @media (min-width: 768px) {
        #custom-container-booking .overview-content {
            grid-template-columns: 1fr 1fr;
        }
    }

    #custom-container-booking .overview-text h2 {
        font-size: var(--text-4xl);
        font-weight: var(--font-weight-bold);
        color: var(--brand-dark);
        margin-bottom: 1.5rem;
    }

    #custom-container-booking .overview-text p {
        font-size: var(--text-lg);
        color: var(--brand-neutral);
        line-height: 1.8;
        margin-bottom: 2rem;
    }

    #custom-container-booking .overview-image {
        width: 100%;
        height: auto;
        border-radius: 1rem;
        box-shadow: 0 20px 40px rgba(44, 10, 113, 0.15);
        opacity: 1 !important;
        display: block;
    }

    #custom-container-booking .overview-callout {
        margin-top: 2rem;
        padding: 1.5rem;
        background: var(--brand-light);
        border-left: 4px solid var(--brand-accent);
        border-radius: 0.5rem;
    }

    #custom-container-booking .overview-callout p {
        margin: 0;
        font-weight: var(--font-weight-semibold);
        color: var(--brand-dark);
        font-size: var(--text-base);
        line-height: 1.6;
    }

    #custom-container-booking .overview-callout i {
        color: var(--brand-accent);
        margin-right: 0.5rem;
    }

    #custom-container-booking .overview-callout a {
        color: var(--brand-primary);
        text-decoration: none;
        font-weight: var(--font-weight-bold);
    }

    /* Features Grid */
    #custom-container-booking .features-section {
        padding: 5rem 0;
        background: var(--brand-light);
    }

    #custom-container-booking .section-header {
        text-align: center;
        margin-bottom: 4rem;
    }

    #custom-container-booking .section-title {
        font-size: var(--text-4xl);
        font-weight: var(--font-weight-bold);
        color: var(--brand-dark);
        margin-bottom: 1rem;
    }

    #custom-container-booking .section-subtitle {
        max-width: 800px;
        margin: 0 auto;
        color: var(--brand-neutral);
        font-size: var(--text-lg);
    }

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

    #custom-container-booking .feature-card {
        background: white;
        padding: 2rem;
        border-radius: 1rem;
        text-align: center;
        transition: all 0.3s;
        border: 2px solid transparent;
    }

    #custom-container-booking .feature-card:hover {
        transform: translateY(-5px);
        border-color: var(--brand-accent);
        box-shadow: 0 15px 30px rgba(44, 10, 113, 0.15);
    }

    #custom-container-booking .feature-icon {
        width: 60px;
        height: 60px;
        background: var(--brand-light);
        border: 2px solid var(--brand-primary);
        border-radius: 0.75rem;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--brand-primary);
        font-size: var(--text-2xl);
        margin: 0 auto 1.5rem;
    }

    #custom-container-booking .feature-card:hover .feature-icon {
        background: var(--brand-primary);
        color: white;
    }

    #custom-container-booking .feature-title {
        font-size: var(--text-xl);
        font-weight: var(--font-weight-semibold);
        color: var(--brand-dark);
        margin-bottom: 0.75rem;
    }

    #custom-container-booking .feature-description {
        color: var(--brand-neutral);
        line-height: 1.6;
    }

    /* Benefits Section */
    #custom-container-booking .benefits-section {
        padding: 5rem 0;
        background: white;
    }

    #custom-container-booking .benefits-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }

    #custom-container-booking .benefit-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
    }

    #custom-container-booking .benefit-icon {
        width: 40px;
        height: 40px;
        background: var(--brand-accent);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--brand-dark);
        flex-shrink: 0;
    }

    #custom-container-booking .benefit-text {
        flex: 1;
    }

    #custom-container-booking .benefit-title {
        font-size: var(--text-lg);
        font-weight: var(--font-weight-semibold);
        color: var(--brand-dark);
        margin-bottom: 0.5rem;
    }

    #custom-container-booking .benefit-desc {
        color: var(--brand-neutral);
        margin-top: 0.5rem;
    }

    /* Comparison Section */
    #custom-container-booking .comparison-section {
        padding: 5rem 0;
        background: var(--brand-light);
    }

    #custom-container-booking .comparison-table-wrapper {
        overflow-x: auto;
        margin-top: 3rem;
        border-radius: 1rem;
        box-shadow: 0 10px 30px rgba(44, 10, 113, 0.1);
    }

    #custom-container-booking .comparison-table {
        width: 100%;
        border-collapse: collapse;
        background: white;
        min-width: 700px;
    }

    #custom-container-booking .comparison-table thead th {
        background: var(--brand-primary);
        color: white;
        padding: 1.25rem 1.5rem;
        font-weight: var(--font-weight-semibold);
        font-size: var(--text-base);
        text-align: center;
        border: none;
    }

    #custom-container-booking .comparison-table thead th:first-child {
        text-align: left;
        border-radius: 0.5rem 0 0 0;
    }

    #custom-container-booking .comparison-table thead th:last-child {
        border-radius: 0 0.5rem 0 0;
    }

    #custom-container-booking .comparison-table thead th.highlight-col {
        background: var(--brand-accent);
        color: var(--brand-dark);
        font-weight: var(--font-weight-bold);
        position: relative;
    }

    #custom-container-booking .comparison-table tbody td {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid var(--brand-light);
        text-align: center;
        color: var(--brand-neutral);
        font-size: var(--text-base);
    }

    #custom-container-booking .comparison-table tbody td:first-child {
        text-align: left;
        font-weight: var(--font-weight-medium);
        color: var(--brand-dark);
    }

    #custom-container-booking .comparison-table tbody td.highlight-col {
        background: rgba(255, 210, 31, 0.08);
        font-weight: var(--font-weight-semibold);
        color: var(--brand-dark);
    }

    #custom-container-booking .comparison-table tbody tr:hover {
        background: rgba(71, 94, 145, 0.03);
    }

    #custom-container-booking .check-icon {
        color: #22c55e;
        font-size: var(--text-lg);
    }

    #custom-container-booking .cross-icon {
        color: #ef4444;
        font-size: var(--text-lg);
    }

    #custom-container-booking .partial-icon {
        color: var(--brand-accent);
        font-size: var(--text-lg);
    }

    /* CTA Section */
    #custom-container-booking .cta-section {
        padding: 5rem 0;
        background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
        text-align: center;
        color: white;
    }

    #custom-container-booking .cta-title {
        font-size: var(--text-4xl);
        font-weight: var(--font-weight-bold);
        color: white;
        margin-bottom: 1rem;
    }

    #custom-container-booking .cta-description {
        font-size: var(--text-lg);
        color: rgba(255, 255, 255, 0.9);
        max-width: 600px;
        margin: 0 auto 2rem;
    }

    #custom-container-booking .cta-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    #custom-container-booking .cta-btn {
        padding: 1rem 2rem;
        font-weight: var(--font-weight-semibold);
        text-decoration: none;
        border-radius: 0.5rem;
        transition: all 0.3s;
    }

    #custom-container-booking .cta-btn-primary {
        background: var(--brand-accent);
        color: var(--brand-dark);
    }

    #custom-container-booking .cta-btn-primary:hover {
        background: var(--brand-accent);
        transform: translateY(-3px);
    }

    #custom-container-booking .cta-btn-secondary {
        background: transparent;
        color: white;
        border: 2px solid white;
    }

    #custom-container-booking .cta-btn-secondary:hover {
        background: white;
        color: var(--brand-primary);
    }

    /* Responsive */
    @media (max-width: 768px) {
        #custom-container-booking .hero-title {
            font-size: var(--text-4xl);
        }

        #custom-container-booking .features-grid {
            grid-template-columns: 1fr;
        }

        #custom-container-booking .section-title {
            font-size: var(--text-3xl);
        }
    }
