/* ========== WHAT WE DO PAGE STYLES ========== */

/* ========== HERO ========== */
.wwd-hero {
    position: relative;
    min-height: 480px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    color: #ffffff;
}

.wwd-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(11, 46, 79, 0.60) 0%,
        rgba(11, 46, 79, 0.78) 50%,
        rgba(11, 46, 79, 0.92) 100%
    );
    z-index: 1;
}

.wwd-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
    width: 100%;
}

.wwd-hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 18px;
    max-width: 700px;
}

.wwd-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 640px;
    font-weight: 400;
}

/* ========== LABEL (reusable) ========== */
.wwd-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #0b2e4f;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.wwd-label-light {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

/* ========== MISSION INTRO ========== */
.wwd-mission-intro {
    padding: 80px 20px;
    background: #ffffff;
}

.wwd-mission-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.wwd-mission-text h2 {
    font-size: 34px;
    font-weight: 800;
    color: #0b2e4f;
    line-height: 1.25;
    margin-bottom: 20px;
}

.wwd-mission-text p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

.wwd-mission-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    border-radius: 6px;
    box-shadow: 0 8px 28px rgba(11, 46, 79, 0.15);
}

/* ========== IN-PAGE NAV ========== */
.wwd-page-nav {
    background: #0b2e4f;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 90;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.wwd-nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    justify-content: center;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.wwd-nav-links li {
    flex-shrink: 0;
}

.wwd-nav-links a {
    display: block;
    padding: 16px 24px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
}

.wwd-nav-links a:hover,
.wwd-nav-links a.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border-bottom-color: #ffffff;
}

/* ========== SERVICE SECTIONS ========== */
.wwd-service-section {
    padding: 90px 20px;
    background: #ffffff;
}

.wwd-service-alt {
    background: #f5f7fa;
}

.wwd-service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.wwd-service-row-reverse {
    direction: rtl;
}

.wwd-service-row-reverse > * {
    direction: ltr;
}

.wwd-service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 6px;
    box-shadow: 0 8px 28px rgba(11, 46, 79, 0.12);
    transition: transform 0.4s ease;
}

.wwd-service-row:hover .wwd-service-image img {
    transform: scale(1.02);
}

.wwd-service-number {
    font-size: 64px;
    font-weight: 900;
    color: rgba(11, 46, 79, 0.08);
    line-height: 1;
    margin-bottom: -10px;
}

.wwd-service-content h2 {
    font-size: 30px;
    font-weight: 800;
    color: #0b2e4f;
    line-height: 1.25;
    margin-bottom: 16px;
}

.wwd-service-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 24px;
}

.wwd-service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wwd-service-features li {
    font-size: 14px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.5;
}

.wwd-service-features li i {
    color: #0b2e4f;
    font-size: 14px;
    flex-shrink: 0;
}

/* ========== IMPACT STRIP ========== */
.wwd-impact-strip {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.wwd-impact-overlay {
    background: rgba(11, 46, 79, 0.90);
    padding: 80px 20px;
}

.wwd-impact-header {
    text-align: center;
    margin-bottom: 50px;
}

.wwd-impact-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
}

.wwd-impact-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.wwd-impact-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.wwd-impact-number {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

.wwd-impact-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* ========== VISION / GOAL / MOTTO ========== */
.wwd-vision-section {
    padding: 90px 20px;
    background: #ffffff;
}

.wwd-vision-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.wwd-vision-card {
    background: #f8f9fb;
    padding: 40px 32px;
    border-radius: 6px;
    border: 1px solid #eef1f5;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wwd-vision-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(11, 46, 79, 0.1);
}

.wwd-vision-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #0b2e4f;
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

.wwd-vision-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0b2e4f;
    margin-bottom: 14px;
}

.wwd-vision-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.75;
}

/* ========== CTA BANNER ========== */
.wwd-cta {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.wwd-cta-overlay {
    background: rgba(11, 46, 79, 0.88);
    padding: 80px 20px;
}

.wwd-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.wwd-cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
}

.wwd-cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 32px;
}

.wwd-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-wwd-primary {
    background: #ffffff;
    color: #0b2e4f;
    padding: 14px 36px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-wwd-primary:hover {
    background: #e8edf2;
    color: #0b2e4f;
    transform: translateY(-2px);
}

.btn-wwd-secondary {
    background: transparent;
    color: #ffffff;
    padding: 14px 36px;
    border: 2px solid #ffffff;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-wwd-secondary:hover {
    background: #ffffff;
    color: #0b2e4f;
    transform: translateY(-2px);
}

/* ========== GALLERY ========== */
.wwd-gallery-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.wwd-gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.wwd-gallery-header h2 {
    font-size: 42px;
    color: #0b2e4f;
    margin: 12px 0 16px;
    font-weight: 800;
}

.wwd-gallery-header p {
    font-size: 17px;
    color: #666;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}

.wwd-gallery-slider {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(11, 46, 79, 0.15);
}

.wwd-gallery-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.wwd-gallery-slide {
    min-width: 100%;
    position: relative;
    overflow: hidden;
}

.wwd-gallery-slide img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.wwd-gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #0b2e4f;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.wwd-gallery-btn:hover {
    background: #d32f2f;
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

.wwd-gallery-prev {
    left: 20px;
}

.wwd-gallery-next {
    right: 20px;
}

.wwd-gallery-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.wwd-gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.wwd-gallery-dot.active {
    background: #d32f2f;
    border-color: #ffffff;
    transform: scale(1.2);
}

.wwd-gallery-dot:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .wwd-mission-inner {
        gap: 36px;
    }

    .wwd-service-row {
        gap: 40px;
    }

    .wwd-hero-title {
        font-size: 42px;
    }

    .wwd-impact-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .wwd-vision-inner {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .wwd-hero {
        min-height: 400px;
    }

    .wwd-hero-content {
        padding: 0 20px 40px;
    }

    .wwd-hero-title {
        font-size: 32px;
    }

    .wwd-hero-subtitle {
        font-size: 15px;
    }

    .wwd-mission-intro {
        padding: 50px 15px;
    }

    .wwd-mission-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .wwd-mission-text h2 {
        font-size: 26px;
    }

    .wwd-mission-image img {
        height: 260px;
    }

    .wwd-nav-links {
        justify-content: flex-start;
    }

    .wwd-nav-links a {
        padding: 14px 18px;
        font-size: 12px;
    }

    .wwd-service-section {
        padding: 50px 15px;
    }

    .wwd-service-row,
    .wwd-service-row-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 28px;
    }

    .wwd-service-image img {
        height: 260px;
    }

    .wwd-service-number {
        font-size: 48px;
    }

    .wwd-service-content h2 {
        font-size: 24px;
    }

    .wwd-impact-overlay {
        padding: 50px 15px;
    }

    .wwd-impact-header h2 {
        font-size: 26px;
    }

    .wwd-impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .wwd-impact-number {
        font-size: 36px;
    }

    .wwd-vision-section {
        padding: 50px 15px;
    }

    .wwd-vision-inner {
        grid-template-columns: 1fr;
    }

    .wwd-cta-overlay {
        padding: 50px 15px;
    }

    .wwd-cta-content h2 {
        font-size: 26px;
    }

    .wwd-gallery-section {
        padding: 50px 15px;
    }

    .wwd-gallery-header h2 {
        font-size: 30px;
    }

    .wwd-gallery-slide img {
        height: 380px;
    }

    .wwd-gallery-btn {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .wwd-gallery-prev {
        left: 12px;
    }

    .wwd-gallery-next {
        right: 12px;
    }
}

@media (max-width: 480px) {
    .wwd-hero-title {
        font-size: 26px;
    }

    .wwd-nav-links a {
        padding: 12px 14px;
        font-size: 11px;
    }

    .wwd-gallery-header h2 {
        font-size: 24px;
    }

    .wwd-gallery-header p {
        font-size: 14px;
    }

    .wwd-gallery-slide img {
        height: 260px;
    }

    .wwd-gallery-btn {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .wwd-gallery-prev {
        left: 8px;
    }

    .wwd-gallery-next {
        right: 8px;
    }

    .wwd-gallery-dot {
        width: 10px;
        height: 10px;
    }
}
