        /* Appointment Booking Section Styles */
        .appointment-booking {
            max-width: 1160px;
            margin: 0 auto;
            padding: 60px 20px 80px;
            font-family: 'Raleway', Arial, sans-serif;
        }

        .appointment-booking__title {
            font-size: 40px;
            font-weight: 700;
            color: #AD272B;
            margin-bottom: 40px;
        }

        .appointment-booking__container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .appointment-booking__left {
            flex: 1;
            min-width: calc(50% - 40px);
            max-width: calc(50% - 40px);
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .appointment-booking__right {
            flex: 1;
            min-width: calc(50% - 40px);
            max-width: calc(50% - 40px);
            display: flex;
            flex-direction: column;
            gap: 60px;
        }

        /* Left Column Row Wrapper with Background */
        .appointment-booking__row {
            background-color: #EFEFF5;
            border-radius: 16px;
            padding: 20px 24px;
            margin-bottom: 8px;
        }

        .appointment-booking__row:last-child {
            margin-bottom: 0;
        }

        .appointment-booking__row--address {
            padding: 0;
            background: transparent;
            border-radius: 0;
            margin-bottom: 0;
        }

        /* Address Dropdown */
        .appointment-booking__field-label {
            display: flex;
            align-items: center;
            gap: 0 20px;
            font-size: 17px;
            color: #1c2258;
            margin-bottom: 14px;
            font-weight: 500;
        }

        .appointment-booking__right .appointment-booking__field-label {
            margin-bottom: 30px;
        }

        .appointment-booking__field-label svg {
            width: 24px;
            height: 30px;
            flex-shrink: 0;
        }

        .appointment-booking__dropdown {
            position: relative;
        }

        .appointment-booking__dropdown-btn {
            width: 100%;
            padding: 30px 40px;
            font-size: 17px;
            font-family: 'Montserrat', Arial, sans-serif;
            font-weight: 500;
            color: #1c2258;
            background-color: #EFEFF5;
            border: none;
            border-radius: 15px;
            box-shadow: none;
            cursor: pointer;
            text-align: left;
            transition: all 0.3s ease;
            position: relative;
            box-sizing: border-box;
        }

        .appointment-booking__dropdown-btn:hover {
            background-color: #f0f2ff;
        }

        .appointment-booking__dropdown-btn::after {
            content: '';
            display: block;
            position: absolute;
            right: 24px;
            top: 50%;
            transform: translateY(-50%);
            width: 26px;
            height: 13px;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='13' viewBox='0 0 26 13' fill='none'%3E%3Cpath d='M13.81 12.693L25.691 1.66116C25.8894 1.47709 26 1.23254 26 0.978227C26 0.723918 25.8894 0.479368 25.691 0.295297L25.6776 0.283419C25.5814 0.193875 25.4657 0.122574 25.3374 0.0738506C25.2091 0.0251273 25.071 1.82613e-06 24.9314 1.81393e-06C24.7918 1.80172e-06 24.6536 0.0251273 24.5254 0.0738505C24.3971 0.122574 24.2813 0.193875 24.1852 0.283418L12.9978 10.6719L1.81481 0.283417C1.71866 0.193873 1.60293 0.122572 1.47464 0.0738485C1.34636 0.0251253 1.20822 -2.60018e-07 1.06861 -2.72222e-07C0.929012 -2.84427e-07 0.790866 0.0251252 0.662585 0.0738484C0.534303 0.122572 0.418565 0.193873 0.322414 0.283416L0.308988 0.295294C0.110646 0.479366 1.07321e-06 0.723916 1.05098e-06 0.978224C1.02874e-06 1.23253 0.110646 1.47709 0.308988 1.66116L12.19 12.693C12.2945 12.79 12.4202 12.8672 12.5594 12.92C12.6986 12.9728 12.8485 13 13 13C13.1515 13 13.3014 12.9728 13.4406 12.92C13.5798 12.8672 13.7055 12.79 13.81 12.693Z' fill='%231C2258'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-size: contain;
            transition: transform 0.3s ease;
        }

        .appointment-booking__dropdown.active .appointment-booking__dropdown-btn::after {
            transform: translateY(-50%) rotate(180deg);
        }

        .appointment-booking__dropdown-menu {
            position: absolute;
            top: calc(100% + 8px);
            left: 0;
            right: 0;
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(28, 34, 88, 0.15);
            padding: 12px;
            z-index: 100;
            display: none;
        }

        .appointment-booking__dropdown.active .appointment-booking__dropdown-menu {
            display: block;
        }

        .appointment-booking__dropdown-item {
            padding: 14px 16px;
            font-size: 15px;
            color: #1c2258;
            cursor: pointer;
            border-radius: 10px;
            transition: background-color 0.2s ease;
        }

        .appointment-booking__dropdown-item:hover {
            background-color: #EFEFF5;
        }

        /* Input Fields */
        .appointment-booking__row--input {
            background-color: #EFEFF5;
            border-radius: 15px;
            padding: 0 40px;
            margin-bottom: 20px;
            transition: background-color 0.2s ease;
        }

        .appointment-booking__row--address {
            margin-bottom: 20px;
        }

        .appointment-booking__row--input:focus-within {
            background-color: #f0f2ff;
        }

        .appointment-booking__input {
            width: 100%;
            padding: 28px 0;
            font-size: 17px;
            font-family: 'Montserrat', Arial, sans-serif;
            color: #1c2258;
            border: none;
            background: transparent;
            outline: none;
            height: 80px;
            font-weight: 500;
            box-sizing: border-box;
        }

        .appointment-booking__input::placeholder {
            color: #999;
        }

        .appointment-booking__input:focus {
            outline: none;
        }

        /* Date Picker */
        .appointment-booking__date-section {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .appointment-booking__month-label {
            font-size: 17px;
            font-weight: 500;
            color: #AD272B;
        }

        .appointment-booking__days {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 10px;
            margin-bottom: 30px;
        }

        .appointment-booking__day {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            height: 97px;
            border: 1px solid #C9CAD7;
            border-radius: 15px;
            cursor: pointer;
            transition: all 0.2s ease;
            background: #fff;
            padding: 12px 0;
            box-sizing: border-box;
        }

        .appointment-booking__day:hover:not(.disabled):not(.active) {
            border-color: #AD272B;
        }

        .appointment-booking__day.active {
            background: #AD272B;
            border-color: #AD272B;
        }

        .appointment-booking__day.disabled {
            cursor: not-allowed;
            opacity: .8;
        }

        .appointment-booking__day.disabled .appointment-booking__day-name {
            color: #9a9fbf;
        }

        .appointment-booking__day.disabled .appointment-booking__day-number {
            color: #9a9fbf;
        }

        .appointment-booking__day-name {
            font-size: 17px;
            font-weight: 400;
            color: #9a9fbf;
        }

        .appointment-booking__day.active .appointment-booking__day-name {
            color: rgba(255, 255, 255, 0.8);
        }

        .appointment-booking__day-number {
            font-size: 17px;
            font-weight: 400;
            color: #1c2258;
        }

        .appointment-booking__day.active .appointment-booking__day-number {
            color: #fff;
        }

        /* Available Time */
        .appointment-booking__time-section {
            display: flex;
            flex-direction: column;
        }

        .appointment-booking__time-section .appointment-booking__field-label{
            margin-bottom: 20px;
        }

        .appointment-booking__no-slots {
            padding: 20px 24px;
            background-color: #EFEFF5;
            border-radius: 12px;
            text-align: center;
            color: #9a9fbf;
            font-size: 15px;
        }

        .appointment-booking__time-slots {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .appointment-booking__time-slot {
            padding: 12px 15px;
            background: #EFEFF5;
            border: 1.5px solid #e8e8e8;
            border-radius: 8px;
            font-size: 17px;
            color: #1c2258;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .appointment-booking__time-slot:hover:not(.active) {
            border-color: #AD272B;
        }

        .appointment-booking__time-slot.active {
            background: #AD272B;
            border-color: #AD272B;
            color: #fff;
        }

        /* Submit Button */
        .appointment-booking__submit-wrapper {
            margin-top: 60px;
            display: flex;
            justify-content: center;
        }

        .doctor-agreement-block {
            margin-top: 25px !important;
            position: relative !important;
            display: flex !important;
            align-items: center !important;
            justify-content: flex-start !important;
            gap: 12px;
        }

        .doctor-agreement-checkbox-label {
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
        }

        .doctor-checkbox-custom {
            width: 18px;
            height: 18px;
            border: 2px solid #AD272B;
            border-radius: 4px;
            position: relative;
            flex-shrink: 0;
            background: #fff;
            transition: background 0.2s ease;
        }

        .doctor-agreement-checkbox-label input[type="checkbox"] {
            display: none;
        }

        .doctor-agreement-checkbox-label input[type="checkbox"]:checked + .doctor-checkbox-custom {
            background: #AD272B;
        }

        .doctor-agreement-checkbox-label input[type="checkbox"]:checked + .doctor-checkbox-custom::after {
            content: '';
            position: absolute;
            left: 4px;
            top: 1px;
            width: 5px;
            height: 9px;
            border: solid #fff;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }

        .doctor-agreement-block .agreement-text {
            font-size: 16px;
            color: #1c2258;
            line-height: 1.2;
        }

        .doctor-agreement-block .agreement-text a {
            color: #AD272B;
            text-decoration: underline !important;
        }

        .appointment-booking__submit {
            width: 100%;
            max-width: 340px;
            padding: 20px 40px;
            font-size: 18px;
            font-family: 'Raleway', Arial, sans-serif;
            font-weight: 700;
            color: #fff;
            text-transform: uppercase;
            background: linear-gradient(88deg, rgba(173, 39, 79, 1) 0%, rgba(173, 39, 41, 1) 100%);
            border: none;
            border-radius: 100px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .appointment-booking__submit:hover:not(:disabled) {
            box-shadow: 0 10px 30px rgba(173, 39, 41, 0.3);
            transform: translateY(-2px);
        }

        .appointment-booking__submit:disabled {
            background: #ccc;
            cursor: not-allowed;
            opacity: 0.7;
        }

        /* Clock Icon SVG */
        .appointment-booking__icon-clock {
            width: 30px;
            height: 30px;
            fill: none;
            stroke-width: 2;
        }

        /* Calendar Icon SVG */
        .appointment-booking__icon-calendar {
            width: 30px;
            height: 30px;
            fill: none;
            stroke-width: 2;
        }

        /* Location Icon */
        .appointment-booking__icon-location {
            width: 20px;
            height: 20px;
            fill: #AD272B;
        }

        /* Responsive Styles */
        @media screen and (max-width: 960px) {
            .appointment-booking__container {
                gap: 40px;
            }

            .appointment-booking__left {
                max-width: none;
            }
        }

        @media screen and (max-width: 768px) {
            .appointment-booking {
                padding: 40px 20px 60px;
            }

            .appointment-booking__title {
                font-size: 28px;
                margin-bottom: 30px;
            }

            .appointment-booking__container {
                flex-direction: column;
                gap: 30px;
            }

            .appointment-booking__left,
            .appointment-booking__right {
                min-width: 100%;
                max-width: none;
            }

            .appointment-booking__days {
                justify-content: center;
            }
        }

        @media screen and (max-width: 480px) {
            .appointment-booking {
                padding: 30px 15px 40px;
            }

            .appointment-booking__title {
                font-size: 22px;
                margin-bottom: 25px;
            }

            .appointment-booking__row--address,
            .appointment-booking__row--input {
                margin-bottom: 15px;
            }

            .appointment-booking__row--input {
                padding: 0 20px;
                border-radius: 12px;
            }

            .appointment-booking__input {
                padding: 12px 0;
                font-size: 16px;
                height: 60px;
            }

            .appointment-booking__dropdown-btn {
                padding: 12px 20px 12px 20px;
                font-size: 15px;
                min-height: 60px;
                border-radius: 12px;
            }

            .appointment-booking__day {
                width: 48px;
                height: 64px;
                padding: 8px 0;
                border-radius: 10px;
            }

            .appointment-booking__day-name {
                font-size: 12px;
            }

            .appointment-booking__day-number {
                font-size: 18px;
            }

            .appointment-booking__time-slot {
                padding: 10px 12px;
                font-size: 16px;
            }

            .appointment-booking__submit {
                font-size: 16px;
                padding: 16px 20px;
                max-width: none;
            }

            .appointment-booking__error-bubble {
                padding: 12px 18px;
                font-size: 13px;
                top: calc(100% - 20px);
            }
        }

        /* Error Bubble */
        .appointment-booking__row--input {
            position: relative;
            border: 1px solid transparent;
        }

        .appointment-booking__error-bubble {
            position: absolute;
            top: calc(100% - 40px);
            left: 20px;
            background: #fff;
            border-radius: 10px;
            padding: 18px 24px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            color: #AD272B;
            font-size: 15px;
            font-weight: 500;
            z-index: 10;
            margin-top: 12px;
            display: none;
            white-space: nowrap;
            border: 1px solid #eee;
        }

        .appointment-booking__error-bubble::before {
            content: '';
            position: absolute;
            top: -8px;
            left: 20px;
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-bottom: 8px solid #fff;
        }

        .appointment-booking__row--input.has-error {
            border: 1px solid #AD272B !important;
        }

        /* Success Message */
        .appointment-booking__success {
            display: none;
            text-align: center;
            padding: 80px 20px;
            background: #fff;
            border-radius: 30px;
            opacity: 0;
            transform: translateY(20px);
        }

        .appointment-booking__success.is-visible {
            display: block;
            animation: bookingFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        @keyframes bookingFadeUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .appointment-booking__success-icon {
            margin-bottom: 24px;
            display: flex;
            justify-content: center;
            animation: bookingScaleIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
        }

        @keyframes bookingScaleIn {
            from { transform: scale(0.5); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        .appointment-booking__success-title {
            color: #AD272B;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .appointment-booking__success-text {
            color: #1a1a2e;
            font-size: 18px;
            line-height: 1.5;
            max-width: 400px;
            margin: 0 auto;
        }

        @media (max-width: 768px) {
            .appointment-booking__success-title {
                font-size: 24px;
            }
            .appointment-booking__success-text {
                font-size: 16px;
            }
        }

        /* Hide scrollbar for modal */
        .manual-booking-modal::-webkit-scrollbar {
            display: none;
        }
        .manual-booking-modal {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
