/* Warehouse Solution Listing Page */
:root {
    --wh-navy: #0f1f3d;
    --wh-navy-soft: #1a2f55;
    --wh-green: #00c896;
    --wh-green-dark: #00a67d;
    --wh-text: #334155;
    --wh-muted: #64748b;
    --wh-bg: #ffffff;
    --wh-surface: #f3f5f8;
    --wh-border: #e2e8f0;
    --wh-shadow: 0 12px 40px rgba(15, 31, 61, 0.08);
}

.warehouse-body {
    color: var(--wh-text);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Page header */
.warehouse-page-header {
    padding: 32px 0 16px;
}

.warehouse-page-header__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.warehouse-page-header__copy {
    max-width: 640px;
}

.warehouse-page-header__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(0, 200, 150, 0.08);
    border: 1px solid rgba(0, 200, 150, 0.2);
    color: var(--wh-green-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.warehouse-page-header__title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--wh-navy);
    margin: 0 0 12px;
    letter-spacing: -0.5px;
}

.warehouse-page-header__desc {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--wh-muted);
}

.warehouse-tagline {
    text-align: right;
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 800;
    letter-spacing: 0.5px;
    line-height: 1.2;
    white-space: nowrap;
}

.warehouse-tagline__primary {
    color: var(--wh-navy);
}

.warehouse-tagline__accent {
    color: var(--wh-green);
}

/* Sections */
.warehouse-sections {
    padding: 24px 0 80px;
}

.warehouse-section {
    padding: 48px 0;
    border-bottom: 1px solid var(--wh-border);
}

.warehouse-section:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.warehouse-section__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 48px;
    align-items: center;
}

.warehouse-section__visual {
    position: relative;
}

/* Hero layout (section 1) */
.warehouse-hero-frame {
    position: relative;
    background: var(--wh-surface);
    border-radius: 0 0 28px 0;
    overflow: hidden;
    box-shadow: var(--wh-shadow);
}

.warehouse-hero-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--wh-green) 0%, var(--wh-green-dark) 100%);
    clip-path: polygon(0 0, 100% 0, 0 100%);
    z-index: 2;
}

.warehouse-hero-frame img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 240px;
    max-height: 420px;
    object-position: center;
}

/* Content column */
.warehouse-section__content {
    padding-left: 8px;
}

.warehouse-section__heading {
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 800;
    color: var(--wh-navy);
    letter-spacing: 0.3px;
    line-height: 1.3;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.warehouse-section__heading-accent {
    display: block;
    width: 72px;
    height: 3px;
    background: linear-gradient(90deg, var(--wh-green), var(--wh-green-dark));
    border-radius: 2px;
    margin-bottom: 18px;
}

.warehouse-section__description {
    font-size: 14px;
    line-height: 1.7;
    color: var(--wh-muted);
    margin: 0 0 28px;
    max-width: 520px;
}

.warehouse-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.warehouse-feature {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.warehouse-feature__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid var(--wh-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--wh-green);
    font-size: 20px;
    flex-shrink: 0;
}

.warehouse-feature__title {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: var(--wh-navy);
    letter-spacing: 0.4px;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.warehouse-feature__text {
    display: block;
    font-size: 13px;
    line-height: 1.6;
    color: var(--wh-muted);
}

/* CTA band */
.warehouse-cta {
    margin-top: 64px;
    padding: 40px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--wh-navy) 0%, var(--wh-navy-soft) 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.warehouse-cta__copy h2 {
    margin: 0 0 8px;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
}

.warehouse-cta__copy p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 480px;
    line-height: 1.6;
}

.warehouse-cta__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.warehouse-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.warehouse-cta__btn--primary {
    background: var(--wh-green);
    color: #fff;
}

.warehouse-cta__btn--primary:hover {
    background: var(--wh-green-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 200, 150, 0.3);
}

.warehouse-cta__btn--outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.warehouse-cta__btn--outline:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991.98px) {
    .warehouse-page-header__inner {
        flex-direction: column;
    }

    .warehouse-tagline {
        text-align: left;
        white-space: normal;
    }

    .warehouse-section__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .warehouse-section__content {
        padding-left: 0;
    }
}

@media (max-width: 575.98px) {
    .warehouse-section {
        padding: 32px 0;
    }

    .warehouse-feature {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 12px;
    }

    .warehouse-feature__icon {
        width: 44px;
        height: 44px;
        font-size: 17px;
    }

    .warehouse-cta {
        padding: 28px 24px;
    }
}
