/* Consultation Page Specific Styles */

.consultation-page {
    background: #020202;
    color: #e5e7eb;
    min-height: 100vh;
}

/* Instant Booking Section */
.meeting-booking-section {
    padding: 4.5rem 0 3.5rem;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.meeting-booking-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.meeting-booking-header {
    text-align: center;
    margin-bottom: 1.8rem;
}

.meeting-booking-header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.6rem;
}

.meeting-booking-header p {
    color: #334155;
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.6;
}

.meeting-booking-card {
    background: #f8fafc;
    border: 1px solid #dbeafe;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.meeting-booking-highlights {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin: 0.8rem 0 1.4rem;
}

.meeting-booking-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.9rem;
    color: #1e293b;
}

.meeting-booking-highlights i {
    color: #22c55e;
}

.meeting-scheduler-grid {
    display: grid;
    grid-template-columns: 1fr 1.7fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.scheduler-panel {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 1rem;
}

.scheduler-panel label,
.scheduler-panel h3 {
    display: block;
    margin-bottom: 0.65rem;
    color: #0f172a;
    font-weight: 600;
}

.meeting-input {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #0f172a;
    padding: 0.8rem 0.9rem;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.2;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.meeting-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
}

#meetingDate {
    appearance: none;
    -webkit-appearance: none;
    min-height: 44px;
    padding-right: 2.5rem;
    background-image: linear-gradient(to right, transparent, transparent);
}

#meetingDate::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.75;
    padding: 0.2rem;
    border-radius: 6px;
}

#meetingDate::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
    background: rgba(59, 130, 246, 0.12);
}

/* Flatpickr: critical layout when theme CSS is blocked or late-loaded (CSP must allow cdn.jsdelivr.net for styles).
   Without base Flatpickr styles, the calendar DOM flows at end of body as a huge block below the footer. */
.flatpickr-calendar {
    position: absolute !important;
    box-sizing: border-box;
    z-index: 100002;
    border: 1px solid #dbeafe;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.18);
    border-radius: 14px;
}
.flatpickr-calendar:not(.open) {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
}
.flatpickr-calendar.open {
    display: block !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.flatpickr-months .flatpickr-month,
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
    color: #0f172a;
    font-weight: 600;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: #2563eb;
    border-color: #2563eb;
}

.flatpickr-day:hover {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.meeting-timezone,
.meeting-helper-text {
    color: #64748b;
    margin-top: 0.65rem;
    font-size: 0.88rem;
}

.meeting-slots {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(105px, 1fr));
    gap: 0.6rem;
    min-height: 46px;
}

.meeting-slot-button {
    border: 1px solid #bfdbfe;
    background: #eff6ff;
    color: #1e3a8a;
    border-radius: 10px;
    padding: 0.55rem 0.45rem;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.meeting-slot-button:hover {
    background: #dbeafe;
}

.meeting-slot-button:disabled,
.meeting-slot-button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f1f5f9;
    color: #94a3b8;
    border-color: #e2e8f0;
}

.meeting-slot-button.active {
    border-color: #16a34a;
    background: #dcfce7;
    color: #166534;
}

.meeting-booking-form {
    margin-top: 1rem;
    border-top: 1px solid #e2e8f0;
    padding-top: 1rem;
}

.meeting-booking-form h3 {
    margin-bottom: 0.7rem;
    color: #0f172a;
}

.meeting-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.meeting-form-group {
    margin-bottom: 0.8rem;
}

.meeting-form-group label {
    display: block;
    margin-bottom: 0.35rem;
    color: #334155;
    font-size: 0.88rem;
}

.meeting-form-group input,
.meeting-form-group textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #0f172a;
    padding: 0.75rem 0.9rem;
}

.meeting-booking-submit {
    width: 100%;
    border: none;
    border-radius: 11px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #ffffff;
    padding: 0.9rem 1rem;
    font-weight: 600;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.meeting-booking-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.35);
}

.meeting-booking-message {
    margin-top: 0.7rem;
    min-height: 1.2rem;
    font-size: 0.9rem;
    color: #475569;
}

.meeting-booking-reassurance {
    margin-top: 0.65rem;
    margin-bottom: 0.1rem;
    color: #64748b;
    font-size: 0.84rem;
    text-align: center;
}

.meeting-booking-message.success {
    color: #86efac;
}

.meeting-booking-message.error {
    color: #fca5a5;
}

/* Consultation Hero Section */
.consultation-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    padding-top: 65px;
    padding-bottom: 6rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(2, 2, 2, 0.4) 0%, rgba(2, 2, 2, 0.2) 50%, rgba(2, 2, 2, 0.4) 100%);
    z-index: 2;
}

.consultation-hero-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.consultation-hero-title {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.12;
    color: #ffffff;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    letter-spacing: 0.01em;
}

.title-line {
    display: block;
    margin-bottom: 0.5rem;
}

.consultation-hero-title .highlight {
    background: linear-gradient(135deg, #3b82f6, #60a5fa, #1d4ed8, #3b82f6);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    position: relative;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.consultation-hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa, #1d4ed8);
    border-radius: 2px;
    animation: line-expand 2s ease 1.2s forwards;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
}

@keyframes line-expand {
    to { width: 120px; }
}

.consultation-hero-subtitle {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    color: #d1d5db;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    height: 48px; /* Fixed height to prevent changes */
    box-sizing: border-box;
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.badge-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

/* Consultation Benefits Section */
.consultation-benefits {
    padding: 6rem 0;
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.header-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    margin: 0 auto 1.5rem;
}

.consultation-benefits .header-line {
    background: linear-gradient(90deg, transparent, #1e293b, transparent);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.consultation-benefits .section-title {
    color: #0f172a;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    justify-items: stretch;
}

.benefit-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 350px;
    box-sizing: border-box;
}

.benefit-card:hover {
    background: #ffffff;
    border-color: #bfdbfe;
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}

.benefit-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #0f172a;
}

.benefit-card p {
    color: #475569;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Center the 4th card (second row) */
.benefit-card:nth-child(4) {
    grid-column: 2;
    justify-self: stretch;
}

/* Consultation Process Section */
.consultation-process {
    padding: 6rem 0;
    background: #020202;
}

.get-started-ready-cta {
    padding: 4.5rem 0;
    background: #020202;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.get-started-ready-cta .products-container {
    max-width: 1100px;
}

.get-started-ready-cta .products-cta {
    margin: 0;
}

.get-started-ready-cta .cta-pillar-strip {
    margin-bottom: 0;
}

.process-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #9ca3af;
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffffff, #e5e7eb);
    color: #020202;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.step-content p {
    color: #d1d5db;
    line-height: 1.6;
}

/* Consultation Form Section */
.consultation-form-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #020202 100%);
}

.consultation-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
}

.form-header p {
    color: #9ca3af;
    font-size: 1.1rem;
    line-height: 1.6;
}

.consultation-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(20px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #ffffff;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.file-upload-container {
    position: relative;
}

.file-input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-upload-area {
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload-area:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.file-upload-area i {
    font-size: 2rem;
    color: #9ca3af;
    margin-bottom: 1rem;
}

.file-upload-area p {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.file-types,
.max-size {
    display: block;
    font-size: 0.8rem;
    color: #9ca3af;
    margin-bottom: 0.25rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    color: #d1d5db;
    line-height: 1.5;
}

/* Premium Select Dropdown - Matching Contact Page Style */
.premium-select-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

.premium-select {
    width: 100%;
    padding: 1.3rem 1.8rem;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #1e293b;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 18px;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 6px 12px -1px rgba(0, 0, 0, 0.1),
        0 3px 6px -1px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
}

.premium-select:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 
        0 0 0 3px rgba(59, 130, 246, 0.15),
        0 12px 30px rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
}

.premium-select:hover {
    border-color: rgba(59, 130, 246, 0.35);
    box-shadow: 
        0 10px 25px rgba(59, 130, 246, 0.15),
        0 6px 12px -1px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.premium-select option {
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    background: #ffffff;
    color: #1e293b;
    border: none;
}

.select-arrow {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    transition: all 0.3s ease;
}

.select-arrow i {
    color: #3b82f6;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.premium-select:focus + .select-arrow i {
    transform: rotate(180deg);
    color: #1d4ed8;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #ffffff, #e5e7eb);
    color: #020202;
    border: none;
    border-radius: 10px;
    padding: 1.25rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}





/* Responsive Design */
@media (max-width: 1024px) {
    .meeting-booking-section {
        padding: 3.5rem 0 2.75rem;
    }

    .meeting-booking-header h2 {
        font-size: 1.7rem;
    }

    .meeting-scheduler-grid {
        grid-template-columns: 1fr;
    }

    .consultation-hero {
        height: auto;
        padding: 8rem 0 4rem;
        padding-top: 100px;
    }
    
    .consultation-hero-title {
        font-size: 2.5rem;
    }
    
    .consultation-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        flex-wrap: wrap;
        align-items: center;
        gap: 1.5rem;
        justify-content: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .consultation-form {
        padding: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    /* Benefits grid responsive adjustments */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .benefit-card {
        max-width: 400px;
        width: 100%;
    }
    
    /* Center the 3rd and 4th cards on tablet */
    .benefit-card:nth-child(3),
    .benefit-card:nth-child(4) {
        grid-column: auto;
        justify-self: stretch;
    }
}

@media (max-width: 480px) {
    .meeting-booking-container {
        padding: 0 1rem;
    }

    .meeting-booking-card {
        padding: 0.75rem;
    }

    .meeting-form-row {
        grid-template-columns: 1fr;
    }

    .meeting-booking-header h2 {
        font-size: 1.45rem;
    }

    .meeting-booking-header p {
        font-size: 0.93rem;
    }

    .meeting-booking-highlights {
        gap: 0.65rem;
        justify-content: flex-start;
    }

    .meeting-booking-highlights span {
        width: 100%;
    }

    .consultation-hero {
        padding: 6rem 0 3rem;
        padding-top: 80px;
    }
    
    .consultation-hero-title {
        font-size: 2rem;
    }
    
    .consultation-hero-subtitle {
        font-size: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        justify-items: stretch;
    }
    
    .benefit-card {
        max-width: 100%;
        padding: 1.25rem;
        width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Reset grid positioning on mobile */
    .benefit-card:nth-child(3),
    .benefit-card:nth-child(4) {
        grid-column: auto;
        justify-self: stretch;
    }
}

/* Consultation Options Section */
.consultation-options-section {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    padding: 5rem 0;
    position: relative;
}

.consultation-options-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(59, 130, 246, 0.03) 50%, transparent 70%);
    pointer-events: none;
}

.consultation-options-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.consultation-options-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.consultation-options-section .section-header h2 {
    font-size: 2.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    letter-spacing: 0.02em;
}

.consultation-options-section .section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: 'Montserrat', 'Inter', sans-serif;
}

.consultation-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.consultation-option-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.consultation-option-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.consultation-option-card.featured {
    border-color: rgba(59, 130, 246, 0.5);
    background: rgba(59, 130, 246, 0.05);
}

.consultation-option-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    border-radius: 20px 20px 0 0;
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
}

.option-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.consultation-option-card:hover .option-icon {
    transform: scale(1.1);
}

.consultation-option-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    letter-spacing: 0.02em;
}

.consultation-option-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-family: 'Montserrat', 'Inter', sans-serif;
}

.option-features {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-family: 'Montserrat', 'Inter', sans-serif;
}

.feature-item i {
    color: #3b82f6;
    font-size: 0.9rem;
    min-width: 16px;
}

.option-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Montserrat', 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.option-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.option-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.option-cta:hover::before {
    left: 100%;
}

/* Responsive Design for Consultation Options */
@media (max-width: 768px) {
    .consultation-options-section {
        padding: 3rem 0;
    }
    
    .consultation-options-section .section-header h2 {
        font-size: 2.2rem;
    }
    
    .consultation-options-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .consultation-option-card {
        padding: 2rem 1.5rem;
    }
    
    .option-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .consultation-option-card h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .consultation-options-section .section-header h2 {
        font-size: 1.8rem;
    }
    
    .consultation-options-section .section-header p {
        font-size: 1rem;
    }
    
    .consultation-option-card {
        padding: 1.5rem 1rem;
    }
}

/* Responsive adjustments for hero features - matching contact page */
@media (max-width: 1200px) {
    .hero-features {
        gap: 2rem;
    }
    
    .feature-badge {
        min-width: 160px;
        height: 48px !important; /* Fixed height */
        padding: 0.75rem 1.5rem !important; /* Fixed padding */
    }
}

@media (max-width: 768px) {
    .hero-features {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .feature-badge {
        min-width: 140px;
        height: 48px !important; /* Fixed height */
        padding: 0.75rem 1.5rem !important; /* Fixed padding */
    }
}

@media (max-width: 480px) {
    .feature-badge {
        height: 48px !important; /* Fixed height */
        padding: 0.75rem 1.5rem !important; /* Fixed padding */
        min-width: 120px;
    }
}
