/* =============================================
   SCHEDULE HERO - Enhanced Design (Same as Solutions)
   ============================================= */
.schedule-hero-enhanced {
    padding: 120px 0 60px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0f172a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}


/* Background Effects */
.hero-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.hero-glow-1 {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(99, 102, 241, 0.2) 0%, transparent 60%);
    animation: pulseGlow 4s ease-in-out infinite;
}

.hero-glow-2 {
    position: absolute;
    bottom: 0;
    right: -200px;
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(168, 85, 247, 0.15) 0%, transparent 60%);
    animation: pulseGlow 5s ease-in-out infinite;
    animation-delay: -2s;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1.05);
    }
}

/* Floating Particles */
.hero-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(99, 102, 241, 0.4);
    border-radius: 50%;
    animation: floatParticle 15s infinite;
}

.hero-particles span:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.hero-particles span:nth-child(2) {
    left: 20%;
    top: 60%;
    animation-delay: -3s;
}

.hero-particles span:nth-child(3) {
    left: 70%;
    top: 30%;
    animation-delay: -5s;
}

.hero-particles span:nth-child(4) {
    left: 80%;
    top: 70%;
    animation-delay: -8s;
}

.hero-particles span:nth-child(5) {
    left: 50%;
    top: 80%;
    animation-delay: -12s;
}

@keyframes floatParticle {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }

    25% {
        transform: translateY(-30px) rotate(90deg);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-15px) rotate(180deg);
        opacity: 0.4;
    }

    75% {
        transform: translateY(-40px) rotate(270deg);
        opacity: 0.5;
    }
}

/* Hero Content */
.schedule-hero-enhanced .hero-content-center {
    max-width: 700px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 2;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(168, 85, 247, 0.2));
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #a5b4fc;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: badgePulse 3s ease-in-out infinite;
}

.hero-badge svg {
    stroke: #a5b4fc;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.3);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(99, 102, 241, 0);
    }
}

/* Hero Title */
.schedule-hero-enhanced h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #f8fafc;
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.text-gradient-animated {
        background: linear-gradient(135deg, #22d3ee 0%, #a855f7 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Hero Subtitle */
.hero-subtitle-dark {
    font-size: 1.15rem;
    color: #94a3b8;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Trust Indicators */
.hero-trust-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #94a3b8;
}

.trust-item svg {
    stroke: #22d3ee;
}

/* Benefits Grid Enhanced */
.benefits-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 102, 241, 0.4);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    flex-shrink: 0;
}

.benefit-icon-cyan {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(6, 182, 212, 0.1));
}

.benefit-icon-cyan svg {
    stroke: #22d3ee;
}

.benefit-icon-purple {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(168, 85, 247, 0.1));
}

.benefit-icon-purple svg {
    stroke: #a855f7;
}

.benefit-icon-green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
}

.benefit-icon-green svg {
    stroke: #10b981;
}

.benefit-icon-rose {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.2), rgba(244, 63, 94, 0.1));
}

.benefit-icon-rose svg {
    stroke: #f43f5e;
}

.benefit-content {
    text-align: left;
}

.benefit-content strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 0.15rem;
}

.benefit-content span {
    font-size: 0.85rem;
    color: #94a3b8;
}

/* =============================================
   SCHEDULER SECTION - Enhanced Design
   ============================================= */
.scheduler-section-enhanced {
    padding: 5rem 0 6rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #eef2ff 100%);
    position: relative;
}

.scheduler-section-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 200px;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Section Badge */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
    border: 1px solid #c7d2fe;
    color: #6366f1;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-badge svg {
    stroke: #6366f1;
}

/* Scheduler Header */
.scheduler-section-enhanced .scheduler-header-center {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.scheduler-section-enhanced .scheduler-header-center h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.text-gradient-light {
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #a855f7);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease infinite;
}

.scheduler-section-enhanced .scheduler-header-center p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Scheduler Container */
.scheduler-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Help Box */
.scheduler-help-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 600px;
    margin: 3rem auto 0;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #f0fdff 0%, #f5f3ff 100%);
    border: 1px solid #e0e7ff;
    border-radius: 16px;
}

.help-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 12px;
    flex-shrink: 0;
}

.help-icon svg {
    stroke: #ffffff;
}

.help-content {
    text-align: left;
}

.help-content strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.help-content p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

.help-content a {
    color: #6366f1;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.help-content a:hover {
    color: #4f46e5;
    text-decoration: underline;
}

/* =============================================
   MEETING SCHEDULER COMPONENT STYLES
   ============================================= */

/* Main Wrapper */
.scheduler-wrapper {
    background: #ffffff !important;
    border-radius: 24px !important;
    box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.02) !important;
    border: 1px solid #cbd5e1;
    /*border: 1px solid rgba(255, 255, 255, 0.8) !important;*/
    padding: 2.5rem !important;
    backdrop-filter: none !important;
    max-width: 100% !important;
}

/* Progress Steps */
.scheduler-progress {
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 2rem;
    margin-bottom: 2.5rem;
}

.progress-step .step-number {
    background: #f1f5f9;
    border: 2px solid #e2e8f0;
    color: #94a3b8;
    font-weight: 600;
    width: 36px;
    height: 36px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.progress-step.completed .step-number {
    background: linear-gradient(135deg, #10b981, #059669);
    border-color: transparent;
    color: #ffffff;
}

.progress-line {
    background: #e2e8f0;
    height: 3px;
    border-radius: 10px;
}

.step-title {
    color: #0f172a;
    font-weight: 700;
    font-size: 1.5rem;
    text-align: left;
    margin-bottom: 1.5rem;
}

.step-label {
    color: #64748b;
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.progress-step.active .step-label {
    color: #6366f1;
    font-weight: 600;
}

/* Meeting Type Cards */
.meeting-type-card {
    background: #ffffff !important;
    border: 2px solid #f1f5f9 !important;
    border-radius: 16px !important;
    padding: 1.5rem !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.meeting-type-card:hover {
    border-color: #818cf8 !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 24px rgba(99, 102, 241, 0.1) !important;
}

.meeting-type-card.selected {
    border-color: #6366f1 !important;
    background: linear-gradient(135deg, #eef2ff 0%, #f5f3ff 100%) !important;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15) !important;
}

.meeting-type-icon {
    background: linear-gradient(135deg, #f0f9ff, #f5f3ff);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.meeting-type-card:hover .meeting-type-icon,
.meeting-type-card.selected .meeting-type-icon {
    background: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.meeting-type-info h4 {
    color: #1e293b !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
}

.meeting-type-info p {
    color: #64748b !important;
}

/* Calendar & Time Sections */
.datetime-picker {
    gap: 2rem !important;
}

.calendar-section,
.time-section {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 20px !important;
    padding: 1.5rem !important;
}

/* Calendar Styling */
.calendar-header h4 {
    color: #1e293b !important;
    font-weight: 700 !important;
}

.calendar-nav {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    color: #64748b !important;
    border-radius: 10px !important;
    transition: all 0.2s ease !important;
}

.calendar-nav:hover {
    border-color: #6366f1 !important;
    color: #6366f1 !important;
    background: #eef2ff !important;
}

.calendar-weekdays span {
    color: #94a3b8 !important;
    font-size: 0.85rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.day {
    color: #334155 !important;
    font-weight: 500 !important;
    border-radius: 10px !important;
    transition: all 0.2s ease !important;
}

.day:hover:not(.disabled):not(.empty) {
    background: #eef2ff !important;
    color: #6366f1 !important;
}

.day.selected {
    background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3) !important;
}

.day.today::after {
    background: #6366f1 !important;
}

/* Time Slots */
.time-section h4 {
    color: #1e293b !important;
    font-weight: 700 !important;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 1rem !important;
}

.time-slot {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    color: #334155 !important;
    font-weight: 600 !important;
    border-radius: 10px !important;
    padding: 0.8rem !important;
    transition: all 0.2s ease !important;
}

.time-slot:hover:not(.booked) {
    border-color: #6366f1 !important;
    color: #6366f1 !important;
    background: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.1) !important;
}

.time-slot.selected {
    background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3) !important;
}

/* Form Styling */
.contact-form {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.form-group label {
    color: #475569 !important;
    font-weight: 600 !important;
    margin-bottom: 0.5rem !important;
}

.form-group input,
.form-group textarea {
    background: #ffffff !important;
    border: 2px solid #e2e8f0 !important;
    color: #1e293b !important;
    border-radius: 10px !important;
    padding: 0.85rem 1rem !important;
    transition: all 0.2s ease !important;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #6366f1 !important;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1) !important;
    outline: none !important;
}

/* Buttons */
.step-actions {
    margin-top: 2.5rem !important;
    border-top: 1px solid #f1f5f9 !important;
    padding-top: 2rem !important;
}

.btn-back {
    background: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    color: #64748b !important;
    font-weight: 600 !important;
    padding: 0.85rem 1.5rem !important;
    border-radius: 12px !important;
    transition: all 0.2s ease !important;
}

.btn-back:hover {
    border-color: #94a3b8 !important;
    color: #334155 !important;
    background: #f8fafc !important;
}

.btn-next {
    background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    padding: 0.85rem 2rem !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25) !important;
    border: none !important;
    transition: all 0.2s ease !important;
}

.btn-next:hover:not(:disabled) {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.35) !important;
}

/* Confirmation View */
.summary-card {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
}

.summary-info strong {
    color: #1e293b !important;
}

.confirmation-icon {
    background: linear-gradient(135deg, #eef2ff, #f5f3ff) !important;
    border: none !important;
    width: 100px !important;
    height: 100px !important;
}

.confirmation-icon svg {
    stroke: #6366f1 !important;
    stroke-width: 1.5 !important;
    width: 50px !important;
    height: 50px !important;
}

.btn-confirm {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3) !important;
    font-size: 1.1rem !important;
    padding: 1rem 3rem !important;
}

.btn-confirm:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4) !important;
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */
@media (max-width: 1024px) {
    .benefits-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .schedule-hero-enhanced {
        padding: 100px 0 50px;
    }

    .schedule-hero-enhanced h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle-dark {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .hero-trust-row {
        gap: 1rem;
    }

    .trust-item {
        font-size: 0.8rem;
    }

    .benefits-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .benefit-card {
        padding: 1rem;
    }

    .scheduler-section-enhanced {
        padding: 3rem 0 4rem;
    }

    .scheduler-section-enhanced .scheduler-header-center h2 {
        font-size: 1.8rem;
    }

    .scheduler-wrapper {
        padding: 1.5rem !important;
        border-radius: 20px !important;
    }

    .step-title {
        font-size: 1.25rem;
    }

    .calendar-section,
    .time-section {
        padding: 1rem !important;
    }

    .scheduler-help-box {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .help-content {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .schedule-hero-enhanced h1 {
        font-size: 1.8rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .hero-trust-row {
        flex-direction: column;
        gap: 0.75rem;
    }

    .benefit-icon {
        width: 48px;
        height: 48px;
    }

    .benefit-icon svg {
        width: 24px;
        height: 24px;
    }

    .section-badge {
        font-size: 0.8rem;
    }

    .scheduler-section-enhanced .scheduler-header-center h2 {
        font-size: 1.5rem;
    }
}

/* =============================================
   BENEFITS HIGHLIGHT SECTION (Moved from Hero)
   ============================================= */
.benefits-highlight-section {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    padding: 5rem 0;
}

.benefits-highlight-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-highlight-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f8fafc;
}

.benefits-highlight-section .section-title .highlight {
    background: linear-gradient(135deg, #22d3ee, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.benefits-highlight-section .benefits-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.benefits-highlight-section .benefit-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.benefits-highlight-section .benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.benefits-highlight-section .benefit-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    flex-shrink: 0;
}

.benefits-highlight-section .benefit-icon-cyan {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(6, 182, 212, 0.1));
}

.benefits-highlight-section .benefit-icon-cyan svg {
    stroke: #22d3ee;
}

.benefits-highlight-section .benefit-icon-purple {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(168, 85, 247, 0.1));
}

.benefits-highlight-section .benefit-icon-purple svg {
    stroke: #a855f7;
}

.benefits-highlight-section .benefit-icon-green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
}

.benefits-highlight-section .benefit-icon-green svg {
    stroke: #10b981;
}

.benefits-highlight-section .benefit-icon-rose {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.2), rgba(244, 63, 94, 0.1));
}

.benefits-highlight-section .benefit-icon-rose svg {
    stroke: #f43f5e;
}

.benefits-highlight-section .benefit-content {
    text-align: left;
}

.benefits-highlight-section .benefit-content strong {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 0.2rem;
}

.benefits-highlight-section .benefit-content span {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Responsive Benefits Section */
@media (max-width: 1024px) {
    .benefits-highlight-section .benefits-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-highlight-section {
        padding: 3rem 0;
    }

    .benefits-highlight-section .section-title {
        font-size: 2rem;
    }

    .benefits-highlight-section .benefits-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .benefits-highlight-section .benefit-card {
        padding: 1.25rem;
    }

    .benefits-highlight-section .benefit-icon {
        width: 48px;
        height: 48px;
    }

    .benefits-highlight-section .benefit-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* Hero Description */
.schedule-hero-enhanced .hero-description {
    max-width: 700px;
    margin: 0 auto;
}

.schedule-hero-enhanced .hero-description p {
    font-size: 1.15rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.schedule-hero-enhanced .hero-description p:last-child {
    margin-bottom: 0;
}
