/* ══════════════════════════════════════════
   WHAT WE DO SECTION STYLES — what-we-do.css
   ══════════════════════════════════════════ */

.what-we-do-section {
    padding: 2.5vw 0; /* 80px -> 48px approx */
    background-color: var(--theme-bg-soft);
}

.wwd-header {
    text-align: center;
    margin-bottom: 1.5vw; /* 50px -> 28px approx */
}

.wwd-label {
    display: inline-block;
    font-size: 1vw;
    letter-spacing: 0.3vw;
    text-transform: uppercase;
    color: var(--theme-primary);
    margin-bottom: 1vw;
    font-weight: 600;
}

.wwd-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5vw, 2.2vw, 2.5vw);
    color: var(--theme-accent);
    line-height: 1.2;
}

.wwd-slider-wrap {
    position: relative;
    width: 100%;
}

.wwd-slider {
    display: flex;
    gap: 1.56vw; /* 30px */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    padding-bottom: 1.04vw; /* 20px */
}

.wwd-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.wwd-card {
    flex: 0 0 calc(25% - 1.17vw); /* 22.5px */
    background: var(--theme-white);
    padding: 1.82vw 1.3vw; /* 35px 25px */
    border-radius: 0.625vw; /* 12px */
    box-shadow: 0 0.2vw 1.04vw rgba(0,0,0,0.03); /* 4px 20px */
    border: 1px solid var(--theme-border);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    scroll-snap-align: start;
}

.wwd-card:hover {
    transform: translateY(-0.41vw); /* 8px */
    box-shadow: 0 0.78vw 1.56vw rgba(51, 75, 117, 0.08); /* 15px 30px */
    border-color: rgba(216, 183, 80, 0.4);
}

.wwd-icon {
    width: 3.33vw; /* 64px */
    height: 3.33vw; /* 64px */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.04vw; /* 20px */
    transition: transform 0.3s ease;
}

.wwd-card:hover .wwd-icon {
    transform: scale(1.1);
}

.wwd-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.wwd-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.34vw; /* 45px */
    width: 2.34vw; /* 45px */
    border-radius: 0.7em;
    box-shadow: 0.1em 0.1em 0.6em 0.2em rgba(0,0,0,0.1);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--theme-primary);
}

.wwd-nav-btn:hover {
    background: var(--theme-primary);
    color: white;
}

.wwd-nav-btn svg {
    width: 1.25vw; /* 24px */
    height: 1.25vw; /* 24px */
    transition: transform 0.3s;
}

.wwd-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.wwd-prev {
    left: -1.04vw; /* -20px */
}

.wwd-next {
    right: -1.04vw; /* -20px */
}

.wwd-card-title {
    font-size: 1.1vw;
    font-weight: 600;
    color: var(--theme-text);
    margin-bottom: 0.8vw;
    text-transform: uppercase;
    letter-spacing: 0.08vw;
}

.wwd-card-text {
    font-size: 0.9vw;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 960px) {
    .what-we-do-section { padding: 8vw 0; }
    .wwd-header { margin-bottom: 6vw; }
    .wwd-label { font-size: 3.5vw; }
    .wwd-title { font-size: 8vw; }
    .wwd-slider { gap: 5.33vw; }
    .wwd-card { 
        flex: 0 0 85%; 
        scroll-snap-align: center; 
        padding: 6.67vw 5.33vw; 
        border-radius: 3vw;
    }
    .wwd-icon {
        width: 25vw;
        height: 25vw;
        margin-bottom: 5vw;
    }
    .wwd-card-title { font-size: 5.5vw; margin-bottom: 3vw; }
    .wwd-card-text { font-size: 3.8vw; }
    .wwd-nav-btn { width: 12vw; height: 12vw; }
    .wwd-nav-btn svg { width: 5.33vw; height: 5.33vw; }
    .wwd-prev { left: -4vw; }
    .wwd-next { right: -4vw; }
}
