  :root {
            --rotary-blue: #17458f;
            --rotary-gold: #f7a81b;
            --light-gray: #f4f4f4;
            /* FullCalendar Specific Variables */
            --fc-button-bg-color: #17458f;
            --fc-button-border-color: #17458f;
            --fc-button-hover-bg-color: #f7a81b;
            --fc-button-hover-border-color: #f7a81b;
            --fc-event-bg-color: #17458f;
            --fc-border-color: #e0e0e0;
        }

        body {
            background-color: #ffffff;
            font-family: 'Open Sans', Arial, sans-serif;
            color: #333;
            line-height: 1.6;
        }

        /* Calendar Event Colors */
        .status-booked {
            background-color: #ff4d4d !important;
            opacity: 0.9;
            cursor: not-allowed;
        }

        .status-pending {
            background-color: #3385ff !important;
            opacity: 0.9;
        }

        .status-vacation {
            background-color: #ff9933 !important;
            opacity: 0.9;
        }

        /* Styling the text inside the date cell */
        .fc-event-title {
            font-weight: 700 !important;
            font-size: 0.75rem !important;
            text-transform: uppercase;
            color: #ffffff !important;
            /* White text for contrast */
            padding: 2px 4px;
            display: block;
            text-align: center;
            white-space: normal !important;
        }

        /* Ensure the background covers the whole cell nicely */
        .fc-daygrid-bg-event {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Pending Count Badge */
        .pending-badge {
            background: #fff;
            color: #3385ff;
            border-radius: 50%;
            padding: 2px 6px;
            font-size: 0.7rem;
            margin-left: 5px;
            font-weight: 800;
        }

        /* Tooltip/Price styling inside the calendar cell */
        .price-tag {
            font-size: 0.7rem;
            color: var(--rotary-blue);
            font-weight: bold;
            display: block;
            text-align: center;
        }

        /* --- HEADER & NAVIGATION --- */
        .navbar {
            border-bottom: 4px solid var(--rotary-gold);
            padding: 0.8rem 0;
            background-color: #fff;
        }

        .navbar-brand img {
            height: 55px;
            width: auto;
        }

        .company-title {
            color: var(--rotary-blue);
            /* Professional Blue */
            font-weight: 700;
            font-size: 1.3rem;
            letter-spacing: -0.5px;
            border-left: 2px solid var(--rotary-gold);
            padding-left: 15px;
            line-height: 1.2;
            margin-left: 5px;
        }

        .nav-contact-link {
            color: var(--rotary-blue) !important;
            transition: 0.2s ease;
            text-decoration: none;
        }

        .nav-contact-link:hover {
            color: var(--rotary-gold) !important;
        }

        .nav-contact-link i {
            font-size: 1.2rem;
            color: var(--rotary-gold);
        }

        .nav-contact-link span {
            font-size: 0.95rem;
        }

        /* --- LAYOUT & CARDS --- */
        .sticky-sidebar {
            position: sticky;
            top: 20px;
        }

        .card-booking {
            border: 1px solid #ddd;
            border-top: 5px solid var(--rotary-blue);
            border-radius: 0;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
        }

        .section-title {
            color: var(--rotary-blue);
            border-left: 5px solid var(--rotary-gold);
            padding-left: 15px;
            margin-bottom: 25px;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 1.25rem;
        }

        /* --- FORMS --- */
        .form-label {
            color: var(--rotary-blue);
            font-weight: 600;
            font-size: 0.85rem;
            margin-bottom: 5px;
            letter-spacing: 0.3px;
        }

        .form-control {
            border-radius: 0;
            border: 1px solid #ccc;
            padding: 12px;
            font-size: 0.95rem;
        }

        .form-control:focus {
            border-color: var(--rotary-gold);
            box-shadow: none;
        }

        .booking-summary-preview {
            background-color: #f9f9f9;
            border-left: 3px solid var(--rotary-gold);
            /* Subtle gold accent */
            border-radius: 4px;
        }

        .booking-summary-preview span {
            font-size: 0.85rem;
            /* Small but readable */
        }

        #summary-date,
        #summary-name,
        #summary-email {
            text-align: right;
            max-width: 60%;
            word-break: break-all;
        }

        .btn-booking {
            background-color: var(--rotary-blue);
            color: white;
            border-radius: 0;
            padding: 16px;
            font-weight: bold;
            text-transform: uppercase;
            width: 100%;
            border: none;
            transition: 0.3s;
            letter-spacing: 1px;
        }

        .btn-booking:hover {
            background-color: var(--rotary-gold);
            color: #fff;
        }

        /* --- CALENDAR CUSTOMIZATION --- */
        #calendar {
            background: #fff;
            padding: 15px;
            border: 1px solid #eee;
        }

        .fc .fc-toolbar-title {
            font-size: 1.1rem;
            font-weight: bold;
            color: var(--rotary-blue);
            text-transform: uppercase;
        }

        .fc .fc-daygrid-day.fc-day-today {
            background-color: rgba(247, 168, 27, 0.1) !important;
        }

        /* --- FOOTER --- */
        footer {
            background: var(--rotary-blue);
            color: white;
            padding: 30px 0;
            margin-top: 60px;
        }

        footer a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            margin: 0 10px;
            font-size: 0.85rem;
            transition: 0.2s;
        }

        footer a:hover {
            color: var(--rotary-gold);
        }

        /* --- RESPONSIVE ADJUSTMENTS --- */
        @media (max-width: 991px) {
            .company-title {
                font-size: 1.1rem;
            }
        }

        @media (max-width: 768px) {
            .company-title {
                display: none;
            }

            /* Hide title on mobile to save space */
            .navbar-brand img {
                height: 45px;
            }

            .nav-contact-link span {
                font-size: 0.8rem;
            }
        }