
        :root {
            --primary-color: #1ea3cc;
            --primary-dark: #1a8fb3;
            --primary-light: #e6f7ff;
            --secondary-color: #f8fafc;
            --text-primary: #1e293b;
            --text-secondary: #64748b;
            --border-color: #e2e8f0;
            --success-color: #10b981;
            --warning-color: #f59e0b;
            --danger-color: #ef4444;
            --gradient-primary: linear-gradient(135deg, #1ea3cc 0%, #1c86ad96 100%);
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
            --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        .sticky-header {
            position: relative !important;
        }

        .booking-wrapper {
            /*min-height: 100vh;*/
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .booking-container {
            background: white;
            border-radius: 24px;
            box-shadow: var(--shadow-xl);
            overflow: hidden;
            max-width: 1200px;
            width: 100%;
            display: flex;
            min-height: 700px;
        }

        .sidebar {
            background: var(--gradient-primary);
            width: 300px;
            padding: 40px 30px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .sidebar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            pointer-events: none;
        }

        .sidebar-content {
            position: relative;
            z-index: 1;
        }

        .logo {
            display: flex;
            align-items: center;
            margin-bottom: 40px;
        }

        .logo i {
            font-size: 2rem;
            margin-right: 12px;
        }

        .logo h2 {
            font-weight: 700;
            font-size: 1.5rem;
            margin: 0;
        }

        .step-nav {
            list-style: none;
            padding: 0;
        }

        .step-nav-item {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .step-nav-item:not(:last-child)::after {
            content: '';
            position: absolute;
            left: 20px;
            top: 50px;
            width: 2px;
            height: 30px;
            background: rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .step-nav-item.completed::after {
            background: rgba(255, 255, 255, 0.6);
        }

        .step-number {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .step-nav-item.active .step-number {
            background: white;
            color: var(--primary-color);
            transform: scale(1.1);
        }

        .step-nav-item.completed .step-number {
            background: var(--success-color);
            color: white;
        }

        .step-info h4 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 4px;
            opacity: 0.9;
        }

        .step-info p {
            font-size: 0.875rem;
            opacity: 0.7;
            margin: 0;
        }

        .step-nav-item.active .step-info {
            opacity: 1;
        }

        .main-content {
            flex: 1;
            padding: 40px;
            display: flex;
            flex-direction: column;
        }

        .step-header {
            margin-bottom: 30px;
        }

        .step-title {
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .step-subtitle {
            color: var(--text-secondary);
            font-size: 1.1rem;
            font-weight: 400;
        }

        .step-content {
            flex: 1;
            display: none;
        }

        .step-content.active {
            display: block;
        }

        /* Consultation Type Selection */
        .consultation-type-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            margin-bottom: 30px;
        }

        .consultation-card {
            background: white;
            border: 3px solid var(--border-color);
            border-radius: 20px;
            padding: 32px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .consultation-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .consultation-card:hover {
            border-color: var(--primary-color);
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
        }

        .consultation-card.selected {
            border-color: var(--primary-color);
            background: var(--primary-light);
            box-shadow: var(--shadow-xl);
        }

        .consultation-card.selected::before {
            transform: scaleX(1);
        }

        .consultation-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            background: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--primary-color);
            font-size: 2rem;
            transition: all 0.3s ease;
        }

        .consultation-card.selected .consultation-icon {
            background: var(--primary-color);
            color: white;
            transform: scale(1.1);
        }

        .consultation-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text-primary);
        }

        .consultation-description {
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .consultation-features {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 0.875rem;
            color: var(--text-secondary);
        }

        .feature-item i {
            color: var(--success-color);
            font-size: 0.75rem;
        }

        /* Location Selection */
        .location-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 20px;
        }

        .location-card {
            background: white;
            border: 2px solid var(--border-color);
            border-radius: 16px;
            padding: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .location-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .location-card:hover {
            border-color: var(--primary-color);
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }

        .location-card.selected {
            border-color: var(--primary-color);
            background: var(--primary-light);
            box-shadow: var(--shadow-lg);
        }

        .location-card.selected::before {
            transform: scaleX(1);
        }

        .location-header {
            display: flex;
            align-items: flex-start;
            margin-bottom: 16px;
        }

        .location-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 16px;
            color: var(--primary-color);
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .location-info {
            flex: 1;
        }

        .location-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 4px;
            color: var(--text-primary);
        }

        .location-description {
            color: var(--text-secondary);
            font-size: 0.875rem;
            line-height: 1.5;
            margin-bottom: 12px;
        }

        .location-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .b-badge {
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .badge-in-person {
            background: #e0e7ff;
            color: #3730a3;
        }

        .badge-virtual {
            background: #fce7f3;
            color: #be185d;
        }

        .badge-premium {
            background: #D3EDF6;
            color: #22A3D2;
        }

        .location-features {
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid var(--border-color);
        }

        .feature-list {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        /* Service Selection */
        .service-section {
            margin-bottom: 30px;
        }

        .service-section-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 16px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--primary-color);
            display: inline-block;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 16px;
        }

        .service-card {
          background: url("https://edunest.com.au/assets/images/book_appionment_service_bg.png") no-repeat center bottom;
          background-size: contain;
          border: 1px solid var(--border-color);
          border-radius: 12px;
          padding: 16px 20px;
          cursor: pointer;
          transition: all 0.3s ease;
          width: 100%;
          height: 140px; /* more height to fit bottom meta */
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          box-sizing: border-box;
        }

        .service-card:hover {
            border-color: var(--primary-color);
            box-shadow: var(--shadow-sm);
        }

        .service-card.selected {
            border-color: var(--primary-color);
            background: var(--primary-light);
        }

        .service-card-content {
          display: flex;
          justify-content: space-between;
          align-items: flex-start;
        }
        
        .service-icon svg {
          width: 44px;
          height: 44px;
        }
        .service-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-primary);
        }

        .service-meta {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .service-price {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .badge-free {
            background: #dcfce7;
            color: #166534;
        }

        .badge-paid {
            background: #fef3c7;
            color: #92400e;
        }

        /* Agent Selection */
        .agent-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 16px;
            margin-bottom: 20px;
        }

        .agent-card {
            background: white;
            border: 2px solid var(--border-color);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .agent-card:hover {
            border-color: var(--primary-color);
            box-shadow: var(--shadow-sm);
        }

        .agent-card.selected {
            border-color: var(--primary-color);
            background: var(--primary-light);
        }

        .agent-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 12px;
            color: var(--primary-color);
            font-size: 1.5rem;
        }

        .agent-name {
            font-weight: 600;
            margin-bottom: 4px;
            color: var(--text-primary);
        }

        .agent-email {
            font-size: 0.875rem;
            color: var(--text-secondary);
            margin-bottom: 8px;
        }

        .agent-phone {
            font-size: 0.875rem;
            color: var(--text-secondary);
        }

        /* Calendar Styles */
        .calendar-container {
            background: white;
            border: 2px solid var(--border-color);
            border-radius: 16px;
            overflow: hidden;
        }

        .calendar-header {
            background: var(--secondary-color);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--border-color);
        }

        .calendar-nav {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .calendar-nav button {
            width: 40px;
            height: 40px;
            border: none;
            background: white;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--text-secondary);
        }

        .calendar-nav button:hover {
            background: var(--primary-color);
            color: white;
        }

        .calendar-month {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .calendar-grid {
            padding: 20px;
        }

        .calendar-weekdays {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 8px;
            margin-bottom: 16px;
        }

        .calendar-weekday {
            text-align: center;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--text-secondary);
            padding: 8px;
        }

        .calendar-days {
            grid-template-columns: repeat(7, 1fr);
            gap: 8px;
        }

        .calendar-day {
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            font-weight: 500;
            border: 1px solid #80808042;
        }

        .calendar-day:hover {
            background: var(--primary-light);
        }

        .calendar-day.disabled {
            color: #cbd5e1;
            cursor: not-allowed;
            border-color: #e2e8f0;
            background-color: #f8fafc;
        }

        .calendar-day.disabled:hover {
            background: #f8fafc;
            border-color: #e2e8f0;
        }

        .calendar-day.unavailable {
            color: #cbd5e1;
            cursor: not-allowed;
            border-color: #e2e8f0;
            background-color: #f8fafc;
        }

        .calendar-day.unavailable:hover {
            background: #f8fafc;
            border-color: #e2e8f0;
        }

        .calendar-day.selected {
            background: var(--primary-color);
            color: white;
        }

        .calendar-day.available::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 4px;
            background: var(--primary-color);
            border-radius: 50%;
        }

        .calendar-day.selected.available::after {
            background: white;
        }

        /* Time Selection */
        .time-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 12px;
        }

        .time-slot {
            padding: 16px;
            border: 2px solid var(--border-color);
            border-radius: 12px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
            background: white;
        }

        .time-slot:hover {
            border-color: var(--primary-color);
            background: var(--primary-light);
        }

        .time-slot.selected {
            border-color: var(--primary-color);
            background: var(--primary-color);
            color: white;
        }

        .time-slot.disabled {
            color: #cbd5e1;
            cursor: not-allowed;
            border-color: #e2e8f0;
            background-color: #f8fafc;
        }

        .time-slot.disabled:hover {
            background: #f8fafc;
            border-color: #e2e8f0;
        }

        /* Buttons */
        .btn-primary {
            background: var(--gradient-primary);
            border: none;
            border-radius: 12px;
            padding: 16px 32px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-md);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .btn-primary:disabled {
            background: var(--text-secondary);
            transform: none;
            box-shadow: var(--shadow-sm);
            cursor: not-allowed;
        }

        .btn-outline-primary {
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            border-radius: 12px;
            padding: 14px 32px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: white;
        }

        .btn-outline-primary:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }

        .step-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid var(--border-color);
        }

        /* Loading States */
        .loading-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 60px 20px;
            text-align: center;
        }

        .loading-spinner {
            width: 48px;
            height: 48px;
            border: 4px solid var(--border-color);
            border-top: 4px solid var(--primary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-bottom: 20px;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .loading-text {
            color: var(--text-secondary);
            font-size: 1.1rem;
            margin-bottom: 8px;
        }

        .loading-subtext {
            color: var(--text-secondary);
            font-size: 0.875rem;
            opacity: 0.7;
        }

        /* Back Button */
        .back-btn {
            color: var(--primary-color);
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
        }

        .back-btn:hover {
            color: var(--primary-dark);
            transform: translateX(-4px);
        }

        /* Summary Modal */
        .summary-section {
            background: var(--secondary-color);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
        }

        .summary-section:last-child {
            margin-bottom: 0;
        }

        .summary-section-title {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 16px;
        }

        .summary-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--border-color);
        }

        .summary-item:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .summary-label {
            color: var(--text-secondary);
            font-weight: 500;
        }

        .summary-value {
            color: var(--text-primary);
            font-weight: 600;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .booking-container {
                flex-direction: column;
                margin: 10px;
                border-radius: 16px;
            }

            .sidebar {
                width: 100%;
                padding: 20px;
            }

            .step-nav {
                display: flex;
                overflow-x: auto;
                gap: 20px;
                padding-bottom: 0px;
            }

            .step-nav-item {
                flex-shrink: 0;
                margin-bottom: 0;
                flex-direction: column;
                text-align: center;
            }

            .step-nav-item::after {
                display: none;
            }

            .step-number {
                margin-right: 0;
                margin-bottom: 8px;
            }

            .step-info h4 {
                font-size: 0.875rem;
            }

            .step-info p {
                display: none;
            }

            .main-content {
                padding: 20px;
            }


            .consultation-type-grid {
                grid-template-columns: 1fr;
            }

            .location-grid {
                grid-template-columns: 1fr;
            }

            .service-grid {
                grid-template-columns: 1fr;
            }

            .agent-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            }
        }
        
        
        @media only screen and (min-width:768px) and (max-width:1023px)   {
            .logo {
                margin-bottom: 20px;
            }
            .step-nav {
                padding-bottom: 0px;
                padding-top: 3px;
            }
                .step-title {
                    font-size: 25px;
                }
                .btn-outline-primary {
                    border: 1px solid var(--primary-color);
                    border-radius: 18px;
                    padding: 6px 25px;
                    font-size: 15px;
                    font-weight: 400;
                }
                .service-card {
                    margin: 10px 0;
                }
                .step-nav {
                    justify-content: space-between;
                }
        }
        @media only screen and (min-width:320px) and (max-width:766px)  {
            .booking-wrapper {
                padding: 5px;
            }
                .sidebar {
                    margin-top: 1rem;
                }
            .logo {
                margin-bottom: 20px;
            }
            .step-number {
                width: 28px;
                height: 28px;
                font-size: 15px;
            }
            .step-nav {
                margin-bottom: 2px;
                padding-top: 2px;
            }
            .logo {
                margin-bottom: 15px;
            }
            .logo h2 {
                font-size: 20px;
            }
            .logo i {
                font-size: 22px;
                margin-right: 10px;
            }
            .step-subtitle {
                font-size: 15px;
            }
            .consultation-description {
                font-size: 15px;
                margin-bottom: 5px;
                line-height: 20px;
            }
            .consultation-card {
                padding: 15px;
            }
            .consultation-icon {
                width: 53px;
                height: 49px;
                border-radius: 11px;
                font-size: 24px;
            }
            .consultation-title {
                font-size: 20px;
                margin-bottom: 10px;
            }
            .consultation-type-grid {
                margin-bottom: 8px;
            }
            .step-title {
                font-size: 18px;
            }
           
            .location-header {
                display: block;
                margin-bottom: 4px;
            }
            .location-icon {
                border-radius: 8px;
                margin-right: 0;
                margin-bottom: 15px;
            }
            .service-card {
                margin: 10px 0;
            }
            .service-card {
                border-radius: 8px;
                padding: 12px;
            }
            .service-title {
                font-size: 15px;
                margin-bottom: 2px;
            }
            .calendar-month {
                font-size: 15px;
                font-weight: 500;
            }
            .calendar-nav {
                gap: 10px;
            }
            .calendar-header {
                padding: 5px;
            }
            .calendar-nav button {
                width: 28px;
                height: 28px;
                font-size: 13px;
                border-radius: 5px;
            }
                .btn-outline-primary {
                    border-radius: 10px;
                    padding: 4px 16px;
                    font-size: 14px;
                    font-weight: 400;
                }
                .calendar-days {
                    gap: 6px;
                    font-size: 13px;
                    font-weight: 400!important;
                }
                .calendar-day.available::after {
                    bottom: 2px;
                }
                .calendar-weekdays {
                        gap: 0px;
                        margin-bottom: 5px;
                    }
                    .calendar-weekday {
                        font-size: 13px;
                        font-weight: 500;
                        padding: 9px 10px 7px 0;
                    }
                    .calendar-grid {
                        padding: 14px;
                    }
                    .step-header {
                        margin-bottom: 20px;
                    }
                    form#contact-form {
                        margin-top: 20px;
                    }
                    .service-price {
                    font-weight: 500;
                }
        }
