/* What We Do Page Styles */
.what-we-do-hero-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

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

.what-we-do-hero__image {
    width: 100%;
    height: 100%;
    filter: brightness(0.9)
}

.what-we-do-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.what-we-do-title-section {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40vh;
    background: var(--color-background);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.what-we-do-title {
    font-size: 7rem;
    font-weight: 900;
    text-align: center;
    background: url('/assets/images/hero/what-we-do.jpg') center/cover;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0 0 var(--spacing-lg) 0;
    line-height: 1.1;
    position: relative;
    background-attachment: fixed;
    filter: brightness(0.9)
}

.what-we-do-description {
    font-size: 1.5rem;
    text-align: center;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Company Overview Section */
.company-overview {
    padding: 8rem 0;
    background: var(--color-secondary);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.overview-text h2 {
    font-size: 5rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
    font-weight: 800;
}

.overview-text p {
    font-size: 1.3rem;
    line-height: 2;
    color: var(--color-text);
}

.overview-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Core Focus Areas */
.core-focus {
    padding: var(--spacing-2xl) 0;
    background: var(--color-background);
}

.focus-title {
    font-size: 5rem;
    text-align: center;
    color: var(--color-primary);
    margin-bottom: var(--spacing-2xl);
    font-weight: 800;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-xl);
}

.focus-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.focus-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.focus-card__image {
    height: 350px;
    overflow: hidden;
}

.focus-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.focus-card:hover .focus-card__image img {
    transform: scale(1.1);
}

.focus-card__content {
    padding: var(--spacing-lg);
}

.focus-card__content h3 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.focus-card__content p {
    color: var(--color-text-light);
    line-height: 1.6;
    font-size: 1.2rem;
}

/* Philosophy Section */
.philosophy-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-text-light) 100%);
    color: var(--color-text-inverse);
}

.philosophy-content h2 {
    font-size: 5rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--color-text-inverse);
    font-weight: 800;
}

.philosophy-statement {
    font-size: var(--font-size-xl);
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-2xl);
    line-height: 1.7;
    color: var(--color-light);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-lg);
}

.philosophy-item {
    text-align: center;
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.philosophy-item h4 {
    font-size: 2rem;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
}

.philosophy-item p {
    color: var(--color-light);
    line-height: 1.6;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .what-we-do-title {
        font-size: clamp(3rem, 8vw, 6rem);
    }
    
    .overview-content {
        gap: var(--spacing-xl);
    }
    
    .focus-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .what-we-do-hero-container {
        height: 100vh;
    }
    
    .what-we-do-title {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
    
    .what-we-do-description {
        font-size: var(--font-size-lg);
        padding: 0 var(--spacing-md);
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .overview-text h2, .focus-title, .philosophy-content h2 {
        font-size: 3rem
    }
    
    .overview-image img {
        height: 300px;
    }
    
    .focus-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .what-we-do-hero-container {
        height: 100vh;
    }
    
    .what-we-do-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .overview-text h2, .focus-title, .philosophy-content h2 {
        font-size: 3rem
    }
    
    .focus-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-item {
        padding: var(--spacing-md);
    }
}
