/* About Page Specific Styles */

/* Hero Section */
.about-hero {
    position: relative;
    padding-top: 200px;
    padding-bottom: 140px;
    background: linear-gradient(rgba(2, 6, 23, 0.85), rgba(2, 6, 23, 0.95)), url('about_team.png');
    background-size: cover;
    background-position: center;
    /* background-attachment: fixed; Removed for better mobile compatibility */
    text-align: center;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(2, 6, 23, 0.8) 100%);
    pointer-events: none;
}

.about-hero .hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: #fff;
    /* Fallback */
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.about-hero h1 .text-gradient-gold {
    background: linear-gradient(135deg, #D4AF37 0%, #F0D977 50%, #C9A961 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.about-hero .lead {
    font-size: 1.25rem;
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 100px;
    color: #D4AF37;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Cards & Sections */
.about-section-card {
    background: #1e293b;
    /* var(--bg-surface) */
    padding: 60px;
    border-radius: 16px;
    /* var(--radius-lg) */
    border: 1px solid rgba(148, 163, 184, 0.1);
    /* var(--border-light) */
    margin-bottom: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.2);
}

/* Grids */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.feature-card {
    background: #1e293b;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #D4AF37;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-card i {
    font-size: 3rem;
    color: #3b82f6;
    /* var(--accent-blue) */
    display: block;
    margin-bottom: 24px;
    transition: color 0.3s ease;
}

.feature-card:hover i {
    color: #D4AF37;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #f8fafc;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-item h3 {
    margin-bottom: 12px;
    color: #3b82f6;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
}

.value-item:hover h3 {
    color: #D4AF37;
}

.value-item p {
    color: #94a3b8;
}

/* Industries Grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    color: #cbd5e1;
    font-weight: 500;
}

.industry-item:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateX(5px);
    color: #fff;
}

.industry-item i {
    color: #3b82f6;
    font-size: 1.25rem;
}

.industry-item:hover i {
    color: #D4AF37;
}

/* Guarantee Box */
.guarantee-box {
    background: rgba(59, 130, 246, 0.05);
    padding: 40px;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.guarantee-box h3 {
    color: #3b82f6;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: #cbd5e1;
}

.feature-list i {
    color: #D4AF37;
    font-size: 1.25rem;
    margin-top: 2px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-hero {
        padding-top: 140px;
        padding-bottom: 80px;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-section-card {
        padding: 30px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}