/* ============================================
   Profile Page Styles
   Orange & Red Theme
   ============================================ */

/* Profile Hero */
.profile-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 10rem 0 6rem;
    overflow: hidden;
}

.profile-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.profile-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.profile-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.profile-hero-desc {
    font-size: 1.25rem;
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

/* Profile Sections */
.profile-section {
    padding: 6rem 0;
}

/* About Section */
.about-section {
    background: var(--gray-950);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-content .section-badge {
    margin-bottom: 1rem;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-text {
    color: var(--gray-400);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-text strong {
    color: white;
}

.about-image {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.about-card:hover {
    border-color: rgba(249, 115, 22, 0.3);
    background: rgba(249, 115, 22, 0.05);
}

.about-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 0.75rem;
}

.about-card p {
    color: var(--gray-400);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* Company Info Section */
.company-info-section {
    background: linear-gradient(180deg, #1a1a35 0%, #252550 100%);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.info-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(249, 115, 22, 0.3);
    background: rgba(249, 115, 22, 0.05);
}

.info-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    color: white;
}

.info-title {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-400);
    margin-bottom: 0.5rem;
}

.info-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

/* Services Detail Section */
.services-detail-section {
    background: var(--gray-950);
}

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-detail-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.service-detail-card:hover {
    border-color: rgba(249, 115, 22, 0.3);
    background: rgba(249, 115, 22, 0.05);
}

.service-detail-card.featured {
    border-color: rgba(249, 115, 22, 0.3);
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(239, 68, 68, 0.1) 100%);
}

.service-detail-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    flex-shrink: 0;
}

.service-detail-content h3 {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 0.75rem;
}

.service-detail-content p {
    color: var(--gray-400);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-features li {
    padding: 0.25rem 0.75rem;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--primary-300);
}

/* Technologies Section */
.tech-section {
    background: linear-gradient(180deg, #252550 0%, #1a1a35 100%);
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tech-category {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
}

.tech-category-title {
    font-size: 1rem;
    color: white;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    padding: 0.5rem 1rem;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--primary-300);
    transition: var(--transition);
}

.tech-tag:hover {
    background: rgba(249, 115, 22, 0.2);
    border-color: rgba(249, 115, 22, 0.4);
}

/* Why Us Section */
.why-us-section {
    background: var(--gray-950);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-us-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: var(--transition);
}

.why-us-card:hover {
    transform: translateY(-8px);
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: var(--shadow-glow);
}

.why-us-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
}

.why-us-card h3 {
    font-size: 1.125rem;
    color: white;
    margin-bottom: 0.75rem;
}

.why-us-card p {
    color: var(--gray-400);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(180deg, #1a1a35 0%, #252550 100%);
}

.contact-profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-profile-info .section-badge {
    margin-bottom: 1rem;
}

.contact-profile-info .section-title {
    text-align: left;
    margin-bottom: 1rem;
}

.contact-profile-info .section-description {
    text-align: left;
    margin-bottom: 2rem;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail-item {
    display: flex;
    gap: 1rem;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: var(--radius-lg);
    color: var(--primary-400);
    flex-shrink: 0;
}

.contact-detail-content h4 {
    font-size: 1rem;
    color: white;
    margin-bottom: 0.25rem;
}

.contact-detail-content p {
    color: var(--gray-400);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.contact-detail-content a {
    color: var(--gray-400);
    transition: var(--transition);
}

.contact-detail-content a:hover {
    color: var(--primary-400);
}

/* Map */
.contact-profile-map {
    height: 100%;
    min-height: 450px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 450px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        flex-direction: row;
    }
    
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-profile-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .profile-hero {
        padding: 8rem 0 4rem;
        min-height: auto;
    }
    
    .profile-section {
        padding: 4rem 0;
    }
    
    .about-image {
        flex-direction: column;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail-card {
        flex-direction: column;
        text-align: center;
    }
    
    .service-features {
        justify-content: center;
    }
    
    .tech-categories {
        grid-template-columns: 1fr;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-profile-map {
        min-height: 300px;
    }
    
    .map-placeholder {
        min-height: 300px;
    }
}
