/* _content/MainPortal/Components/Pages/Contact.razor.rz.scp.css */
/* Contact Hero Section */
.contact-hero[b-t91kxd30z6] {
    background: linear-gradient(135deg, #62B0FF 0%, #4a9eff 100%);
    color: white;
    padding: 4rem 0 3rem 0;
    text-align: center;
}

.contact-hero-content h1[b-t91kxd30z6] {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-hero-content p[b-t91kxd30z6] {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section[b-t91kxd30z6] {
    padding: 4rem 0;
    background: #f8f9fa;
}

.contact-grid[b-t91kxd30z6] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Form */
.contact-form-container[b-t91kxd30z6] {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.contact-form-container h2[b-t91kxd30z6] {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.form-group[b-t91kxd30z6] {
    margin-bottom: 1.5rem;
}

.form-label[b-t91kxd30z6] {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    display: block;
}

.form-control[b-t91kxd30z6], .form-select[b-t91kxd30z6] {
    border: 2px solid #e9ecef;
    border-radius: 6px;
    padding: 0.75rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus[b-t91kxd30z6], .form-select:focus[b-t91kxd30z6] {
    border-color: #62B0FF;
    box-shadow: 0 0 0 0.2rem rgba(98, 176, 255, 0.25);
}

.form-control[b-t91kxd30z6]::placeholder {
    color: #6c757d;
}

textarea.form-control[b-t91kxd30z6] {
    resize: vertical;
    min-height: 120px;
}

.btn-primary[b-t91kxd30z6] {
    background-color: #62B0FF;
    border-color: #62B0FF;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-primary:hover[b-t91kxd30z6] {
    background-color: #4a9eff;
    border-color: #4a9eff;
    transform: translateY(-1px);
}

.form-note[b-t91kxd30z6] {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #e3f2fd;
    border-radius: 6px;
    border-left: 4px solid #62B0FF;
}

.form-note p[b-t91kxd30z6] {
    margin: 0;
    color: #2c3e50;
}

/* Contact Information */
.contact-info-container[b-t91kxd30z6] {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.contact-info-container h2[b-t91kxd30z6] {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.contact-info-grid[b-t91kxd30z6] {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-info-item[b-t91kxd30z6] {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #62B0FF;
}

.contact-icon[b-t91kxd30z6] {
    background: #62B0FF;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i[b-t91kxd30z6] {
    font-size: 1.1rem;
}

.contact-details h4[b-t91kxd30z6] {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

.contact-details p[b-t91kxd30z6] {
    margin: 0 0 0.25rem 0;
    color: #495057;
    font-weight: 500;
}

.contact-details small[b-t91kxd30z6] {
    color: #6c757d;
}

/* FAQ Section */
.faq-section[b-t91kxd30z6] {
    border-top: 1px solid #e9ecef;
    padding-top: 2rem;
}

.faq-section h3[b-t91kxd30z6] {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.faq-items[b-t91kxd30z6] {
    display: grid;
    gap: 1rem;
}

.faq-item[b-t91kxd30z6] {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid #62B0FF;
}

.faq-item h5[b-t91kxd30z6] {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.faq-item p[b-t91kxd30z6] {
    margin: 0;
    color: #6c757d;
    line-height: 1.5;
}

/* Contact CTA Section */
.contact-cta-section[b-t91kxd30z6] {
    background: #2c3e50;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.contact-cta-content h2[b-t91kxd30z6] {
    margin-bottom: 0.75rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.contact-cta-content p[b-t91kxd30z6] {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    font-size: 1.1rem;
}

.btn-outline-primary[b-t91kxd30z6] {
    border-color: #62B0FF;
    color: #62B0FF;
    background: transparent;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover[b-t91kxd30z6] {
    background-color: #62B0FF;
    border-color: #62B0FF;
    color: white;
    transform: translateY(-1px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-hero-content h1[b-t91kxd30z6] {
        font-size: 2rem;
    }
    
    .contact-hero-content p[b-t91kxd30z6] {
        font-size: 1rem;
    }
    
    .contact-grid[b-t91kxd30z6] {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-container[b-t91kxd30z6],
    .contact-info-container[b-t91kxd30z6] {
        padding: 1.5rem;
    }
    
    .contact-info-item[b-t91kxd30z6] {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-icon[b-t91kxd30z6] {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .contact-hero[b-t91kxd30z6] {
        padding: 2rem 0;
    }
    
    .contact-section[b-t91kxd30z6] {
        padding: 2rem 0;
    }
    
    .contact-form-container[b-t91kxd30z6],
    .contact-info-container[b-t91kxd30z6] {
        padding: 1rem;
    }
    
    .form-group[b-t91kxd30z6] {
        margin-bottom: 1rem;
    }
}
/* _content/MainPortal/Components/Pages/Projects.razor.rz.scp.css */
/* Applications Page Styles */

/* Hero Section */
.applications-hero-section[b-g52j5ursob] {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    margin-top: -76px; /* Account for fixed navbar */
    padding-top: calc(4rem + 76px);
}

.applications-hero-section .hero-content[b-g52j5ursob] {
    max-width: 800px;
    margin: 0 auto;
}

.applications-hero-section .hero-title[b-g52j5ursob] {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.applications-hero-section .hero-subtitle[b-g52j5ursob] {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.applications-hero-section .hero-description[b-g52j5ursob] {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Applications Grid Section */
.applications-grid-section[b-g52j5ursob] {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.app-grid[b-g52j5ursob] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.app-card[b-g52j5ursob] {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #62B0FF;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-card:hover[b-g52j5ursob] {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.app-header[b-g52j5ursob] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.app-header h4[b-g52j5ursob] {
    margin: 0;
    color: #2c3e50;
    font-size: 1.3rem;
    flex: 1;
}

.app-status[b-g52j5ursob] {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    margin-left: 1rem;
}

.app-status.coming-soon[b-g52j5ursob] {
    background-color: #ffeaa7;
    color: #d63031;
}

.app-status.available[b-g52j5ursob] {
    background-color: #00b894;
    color: white;
}

.app-status.beta[b-g52j5ursob] {
    background-color: #fd79a8;
    color: white;
}

.app-card > p[b-g52j5ursob] {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.app-features[b-g52j5ursob] {
    margin-bottom: 1.5rem;
}

.app-features h6[b-g52j5ursob] {
    color: #2c3e50;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.app-features ul[b-g52j5ursob] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.app-features li[b-g52j5ursob] {
    padding: 0.25rem 0;
    color: #6c757d;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.2rem;
}

.app-features li[b-g52j5ursob]:before {
    content: "✓";
    color: #62B0FF;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.app-meta[b-g52j5ursob] {
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.app-meta small[b-g52j5ursob] {
    color: #6c757d;
    font-size: 0.85rem;
}

/* Notification Section */
.notification-section[b-g52j5ursob] {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.notification-content h3[b-g52j5ursob] {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.notification-content p[b-g52j5ursob] {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .applications-hero-section[b-g52j5ursob] {
        padding: 3rem 1rem;
        margin-top: -70px;
        padding-top: calc(3rem + 70px);
    }
    
    .applications-hero-section .hero-title[b-g52j5ursob] {
        font-size: 2.2rem;
    }
    
    .applications-hero-section .hero-subtitle[b-g52j5ursob] {
        font-size: 1.1rem;
    }
    
    .applications-grid-section[b-g52j5ursob] {
        padding: 3rem 1rem;
    }
    
    .app-grid[b-g52j5ursob] {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .app-card[b-g52j5ursob] {
        padding: 1.5rem;
    }
    
    .app-header[b-g52j5ursob] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .app-header .app-status[b-g52j5ursob] {
        margin-left: 0;
        align-self: flex-end;
    }
    
    .notification-section[b-g52j5ursob] {
        padding: 3rem 1rem;
    }
    
    .notification-content h3[b-g52j5ursob] {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .applications-hero-section[b-g52j5ursob] {
        margin-top: -65px;
        padding-top: calc(2.5rem + 65px);
        padding-bottom: 2.5rem;
    }
    
    .applications-hero-section .hero-title[b-g52j5ursob] {
        font-size: 1.8rem;
    }
    
    .app-card[b-g52j5ursob] {
        padding: 1.25rem;
    }
}
