/* Consultation Page Specific Styles */

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

/* Ensure mobile menu works on consultation page */
.consultation-page .nav-menu {
    display: flex;
}

@media (max-width: 768px) {
    .consultation-page .nav-menu {
        position: fixed;
        left: 0;
        top: 65px;
        flex-direction: column;
        background-color: rgba(15, 15, 15, 0.95);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: all 0.3s ease;
        backdrop-filter: blur(20px);
        padding: 2rem 0;
        gap: 2rem;
        transform: translateX(-100%);
        z-index: 9998;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .consultation-page .nav-menu.active {
        transform: translateX(0) !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
    
    .consultation-page .nav-menu:not(.active) {
        visibility: hidden;
        pointer-events: none;
    }
    
    .consultation-page .hamburger {
        display: flex !important;
        padding: 0.5rem;
        z-index: 10000;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
}

/* 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: 4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

.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%; }
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -12px;
    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: linear-gradient(180deg, #020202 0%, #0a0a0a 100%);
}

.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;
}

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

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

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    width: 100%;
    max-width: 350px;
    box-sizing: border-box;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

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

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

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

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

.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) {
    .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: center;
    }
}

@media (max-width: 480px) {
    .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;
    }
    
    .benefit-card {
        max-width: 100%;
        padding: 1.25rem;
    }
    
    .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: center;
    }
}

/* 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;
    }
}
