/* What We Do Page Styles */

/* What We Do Hero Section */
.wwd-hero {
    width: 100%;
    margin-top: var(--header-height);
    overflow: hidden;
}

.wwd-hero-image {
    width: 100%;
    height: auto;
}

.wwd-hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* What We Do Content Section */
.wwd-content-section {
    width: 100%;
    background-color: #FFFFFF;
    padding: 100px 0;
}

.wwd-content-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 165px;
}

.wwd-content-text {
    max-width: 900px;
}

.wwd-content-text p {
    font-size: 17px;
    font-weight: 400;
    color: #666;
    line-height: 1.8;
    margin: 0 0 25px 0;
}

.wwd-content-text p:last-child {
    margin-bottom: 0;
}

/* Services Section */
.services-section {
    width: 100%;
    background-color: #F8F8F8;
    padding: 100px 0;
}

.services-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 165px;
}

.services-title {
    font-size: 42px;
    font-weight: 300;
    color: var(--primary-color);
    text-align: center;
    margin: 0 0 60px 0;
    letter-spacing: -0.5px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    transition: background 0.3s ease;
}

.service-card:hover .service-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.service-title {
    font-size: 28px;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.service-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    background-color: transparent;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-link {
    background-color: #FFFFFF;
    color: var(--primary-color);
}

.service-card:hover .service-link i {
    transform: translateX(3px);
}

/* Stats Section */
.wwd-stats-section {
    width: 100%;
    background-color: #FFFFFF;
    padding: 100px 0;
}

.wwd-stats-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 165px;
}

.wwd-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.wwd-stat-item {
    text-align: center;
}

.wwd-stat-number {
    font-size: 56px;
    font-weight: 300;
    color: #8BA888;
    margin-bottom: 15px;
    letter-spacing: -1px;
    line-height: 1;
}

.wwd-stat-label {
    font-size: 16px;
    font-weight: 400;
    color: #666;
    margin-bottom: 8px;
    line-height: 1.4;
}

.wwd-stat-description {
    font-size: 14px;
    font-weight: 400;
    color: #999;
    line-height: 1.4;
}

/* Global Reach Section */
.global-reach-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.global-reach-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #F5F5F5;
}

.global-reach-map {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    opacity: 0.9;
}

.global-reach-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 165px;
}

.global-reach-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.global-reach-title {
    font-size: 42px;
    font-weight: 300;
    color: var(--primary-color);
    margin: 0 0 30px 0;
    letter-spacing: -0.5px;
}

.global-reach-text {
    font-size: 18px;
    font-weight: 400;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Responsive Design for What We Do Page */
@media (max-width: 1200px) {
    .wwd-content-container {
        padding: 0 80px;
    }
    
    .wwd-content-text p {
        font-size: 16px;
    }
    
    .services-container {
        padding: 0 80px;
    }
    
    .services-title {
        font-size: 36px;
        margin-bottom: 50px;
    }
    
    .services-grid {
        gap: 25px;
    }
    
    .service-title {
        font-size: 24px;
    }
    
    .service-overlay {
        padding: 35px;
    }
    
    .wwd-stats-section {
        padding: 70px 0;
    }
    
    .wwd-stats-container {
        padding: 0 80px;
    }
    
    .wwd-stats-grid {
        gap: 50px;
    }
    
    .wwd-stat-number {
        font-size: 48px;
    }
    
    .wwd-stat-label {
        font-size: 15px;
    }
    
    .global-reach-section {
        min-height: 450px;
    }
    
    .global-reach-overlay {
        padding: 60px 80px;
    }
    
    .global-reach-title {
        font-size: 36px;
        margin-bottom: 25px;
    }
    
    .global-reach-text {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .wwd-content-section {
        padding: 60px 0;
    }
    
    .wwd-content-container {
        padding: 0 40px;
    }
    
    .wwd-content-text p {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .services-section {
        padding: 60px 0;
    }
    
    .services-container {
        padding: 0 40px;
    }
    
    .services-title {
        font-size: 30px;
        margin-bottom: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-title {
        font-size: 22px;
    }
    
    .service-overlay {
        padding: 30px;
    }
    
    .wwd-stats-section {
        padding: 50px 0;
    }
    
    .wwd-stats-container {
        padding: 0 40px;
    }
    
    .wwd-stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .wwd-stat-number {
        font-size: 44px;
    }
    
    .wwd-stat-label {
        font-size: 15px;
    }
    
    .global-reach-section {
        min-height: 400px;
    }
    
    .global-reach-overlay {
        padding: 50px 40px;
    }
    
    .global-reach-title {
        font-size: 30px;
        margin-bottom: 20px;
    }
    
    .global-reach-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .wwd-content-section {
        padding: 40px 0;
    }
    
    .wwd-content-container {
        padding: 0 20px;
    }
    
    .wwd-content-text p {
        font-size: 14px;
        margin-bottom: 18px;
    }
    
    .services-section {
        padding: 40px 0;
    }
    
    .services-container {
        padding: 0 20px;
    }
    
    .services-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .service-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .service-overlay {
        padding: 25px;
    }
    
    .service-link {
        width: 45px;
        height: 45px;
    }
    
    .service-link i {
        font-size: 16px;
    }
    
    .wwd-stats-section {
        padding: 40px 0;
    }
    
    .wwd-stats-container {
        padding: 0 20px;
    }
    
    .wwd-stats-grid {
        gap: 35px;
    }
    
    .wwd-stat-number {
        font-size: 40px;
        margin-bottom: 12px;
    }
    
    .wwd-stat-label {
        font-size: 14px;
    }
    
    .wwd-stat-description {
        font-size: 13px;
    }
    
    .global-reach-section {
        min-height: 350px;
    }
    
    .global-reach-overlay {
        padding: 40px 20px;
    }
    
    .global-reach-title {
        font-size: 24px;
        margin-bottom: 18px;
    }
    
    .global-reach-text {
        font-size: 15px;
    }
}

