.consultation-hero {
            background: linear-gradient(135deg, #EFF6FF, #DBEAFE);
            padding: 120px 0 80px;
            text-align: center;
        }
        
        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #111827;
        }
        
        .hero-content p {
            font-size: 1.25rem;
            color: #6B7280;
            max-width: 600px;
            margin: 0 auto 2rem;
        }
        
        .consultant-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }
        
        .consultant-card {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            border: 1px solid #E5E7EB;
        }
        
        .consultant-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }
        
        .consultant-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .consultant-avatar {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #2563EB, #10B981);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            font-weight: 600;
        }
        
        .consultant-info h3 {
            margin-bottom: 0.5rem;
            color: #111827;
        }
        
        .consultant-title {
            color: #2563EB;
            font-weight: 500;
            margin-bottom: 0.5rem;
        }
        
        .consultant-rating {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .stars {
            color: #F59E0B;
        }
        
        .rating-text {
            color: #6B7280;
            font-size: 0.9rem;
        }
        
        .consultant-specialties {
            margin-bottom: 1.5rem;
        }
        
        .specialty-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-top: 0.5rem;
        }
        
        .specialty-tag {
            background: #EFF6FF;
            color: #2563EB;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        .consultant-experience {
            color: #6B7280;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }
        
        .consultant-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            padding: 1rem;
            background: #F9FAFB;
            border-radius: 8px;
        }
        
        .price-info {
            display: flex;
            flex-direction: column;
        }
        
        .price-amount {
            font-size: 1.5rem;
            font-weight: 700;
            color: #111827;
        }
        
        .price-duration {
            color: #6B7280;
            font-size: 0.9rem;
        }
        
        .availability {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #10B981;
            font-size: 0.9rem;
        }
        
        .availability.busy {
            color: #EF4444;
        }
        
        .book-btn {
            width: 100%;
            padding: 0.75rem 1.5rem;
            background: linear-gradient(135deg, #2563EB, #1D4ED8);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .book-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
        }
        
        .book-btn:disabled {
            background: #9CA3AF;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
        
        .pricing-section {
            background: white;
            padding: 80px 0;
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .pricing-card {
            background: white;
            border: 2px solid #E5E7EB;
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .pricing-card.featured {
            border-color: #2563EB;
            transform: scale(1.05);
        }
        
        .pricing-card.featured::before {
            content: 'Paling Populer';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: #2563EB;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        .pricing-card:hover {
            border-color: #2563EB;
            box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
        }
        
        .pricing-header h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
            color: #111827;
        }
        
        .pricing-price {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2563EB;
            margin-bottom: 0.5rem;
        }
        
        .pricing-duration {
            color: #6B7280;
            margin-bottom: 2rem;
        }
        
        .pricing-features {
            list-style: none;
            margin-bottom: 2rem;
            text-align: left;
        }
        
        .pricing-features li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.75rem;
            color: #374151;
        }
        
        .pricing-features i {
            color: #10B981;
            font-size: 0.9rem;
        }
        
        .booking-modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
        }
        
        .booking-content {
            background-color: white;
            margin: 5% auto;
            padding: 2rem;
            border-radius: 16px;
            width: 90%;
            max-width: 600px;
            position: relative;
            animation: modalSlideIn 0.3s ease-out;
        }
        
        .booking-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #E5E7EB;
        }
        
        .booking-close {
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #6B7280;
        }
        
        .booking-form {
            display: grid;
            gap: 1.5rem;
        }
        
        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }
        
        .calendar-container {
            border: 1px solid #E5E7EB;
            border-radius: 8px;
            padding: 1rem;
            margin-bottom: 1rem;
        }
        
        .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .calendar-nav {
            background: none;
            border: none;
            font-size: 1.2rem;
            cursor: pointer;
            color: #2563EB;
            padding: 0.5rem;
            border-radius: 4px;
            transition: background-color 0.3s ease;
        }
        
        .calendar-nav:hover {
            background: #F3F4F6;
        }
        
        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 0.5rem;
        }
        
        .calendar-day {
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #E5E7EB;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }
        
        .calendar-day:hover {
            background: #F0F9FF;
            border-color: #2563EB;
        }
        
        .calendar-day.selected {
            background: #2563EB;
            color: white;
            border-color: #2563EB;
        }
        
        .calendar-day.disabled {
            color: #D1D5DB;
            cursor: not-allowed;
        }
        
        .time-slots {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            gap: 0.5rem;
            margin-top: 1rem;
        }
        
        .time-slot {
            padding: 0.5rem;
            border: 1px solid #E5E7EB;
            border-radius: 4px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }
        
        .time-slot:hover {
            background: #F0F9FF;
            border-color: #2563EB;
        }
        
        .time-slot.selected {
            background: #2563EB;
            color: white;
            border-color: #2563EB;
        }
        
        .time-slot.unavailable {
            background: #F3F4F6;
            color: #9CA3AF;
            cursor: not-allowed;
        }
        
        @media (max-width: 768px) {
            .consultation-hero {
                padding: 100px 0 60px;
            }
            
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .consultant-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .consultant-card {
                padding: 1.5rem;
            }
            
            .consultant-header {
                flex-direction: column;
                text-align: center;
            }
            
            .pricing-grid {
                grid-template-columns: 1fr;
            }
            
            .pricing-card.featured {
                transform: none;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .booking-content {
                margin: 10% auto;
                width: 95%;
                padding: 1.5rem;
            }
        }