/* ============================================================
   CORPORATE ORDERS PAGE — uses same tokens as home.css / customize.css
   ============================================================ */

/* ---------- hero ---------- */
.co-hero {
    background-color: #F6F3EC;
    padding: 50px 0;
    margin-bottom: 40px;
}

.co-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.co-eyebrow {
    display: inline-block;
    font-family: var(--secondary-font);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C9A15D;
    margin-bottom: 14px;
}

.co-hero-content h1 {
    font-family: 'Lora', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 18px;
}

.co-hero-content p {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    color: #6b6b6b;
    max-width: 480px;
    margin-bottom: 28px !important;
}

.co-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.co-btn-fill {
    display: inline-block;
    background-color: #334633;
    color: #fff;
    font-family: var(--primary-font);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.4px;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.25s ease;
}

.co-btn-fill:hover {
    background-color: #24321f;
    color: #fff;
    transform: translateY(-2px);
}

.co-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    border: 1.5px solid #C9A15D;
    color: var(--primary-color);
    font-family: var(--primary-font);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.4px;
    padding: 12.5px 26px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.25s ease;
}

.co-btn-outline:hover {
    background-color: #C9A15D;
    color: #fff;
    transform: translateY(-2px);
}

.co-hero-stats {
    display: flex;
    gap: 36px;
}

.co-hero-stats h4 {
    font-family: 'Lora', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.co-hero-stats p {
    font-family: var(--secondary-font);
    font-size: 12.5px;
    color: #808080;
    margin-bottom: 0 !important;
}

.co-hero-img {
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.co-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ---------- why choose us ---------- */
.co-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.co-why-card {
    background-color: #F7F3F0;
    border-radius: 14px;
    padding: 30px 26px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.co-why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(51, 70, 51, 0.08);
}

.co-why-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid rgba(51, 70, 51, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.co-why-icon i {
    font-size: 20px;
    color: #334633;
}

.co-why-card h5 {
    font-family: 'Lora', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.co-why-card p {
    font-family: var(--secondary-font);
    font-size: 13.5px;
    color: #808080;
    line-height: 1.6;
    margin-bottom: 0 !important;
}

/* ---------- popular products ---------- */
.co-product-grid {
    margin-bottom: 40px;
}

/* ---------- how it works ---------- */
.co-steps-card {
    margin-bottom: 40px;
}

.co-hw-steps {
    grid-template-columns: repeat(4, 1fr);
}

/* ---------- clients strip ---------- */
.co-clients {
    background-color: #F7F3F0;
    border-radius: 14px;
    padding: 30px;
    text-align: center;
    margin-bottom: 50px;
}

.co-clients .tb-heading {
    white-space: normal;
    margin-bottom: 20px !important;
}

.co-clients .tb-logos {
    justify-content: center;
}

/* ---------- enquiry section ---------- */
.co-enquiry-wrap {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 40px;
    background-color: #334633;
    border-radius: 16px;
    padding: 50px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.co-enquiry-wrap::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.co-enquiry-info {
    position: relative;
    z-index: 1;
    top: 27%;
}

.co-enquiry-info .co-eyebrow {
    color: #C9A15D;
}

.co-enquiry-info h2 {
    font-family: 'Lora', serif;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.co-enquiry-info p {
    font-family: var(--secondary-font);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 28px !important;
}

.co-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.co-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--secondary-font);
    font-size: 14px;
    color: #fff;
    margin-bottom: 16px;
}

.co-contact-list li:last-child {
    margin-bottom: 0;
}

.co-contact-list li i {
    color: #C9A15D;
    width: 18px;
}

.co-enquiry-form-card {
    background-color: #fff;
    border-radius: 14px;
    padding: 32px;
    position: relative;
    z-index: 1;
}

.co-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.co-field label {
    display: block;
    font-family: var(--secondary-font);
    font-size: 12.5px;
    font-weight: 600;
    color: #808080;
    margin-bottom: 8px;
}

.co-textarea {
    resize: vertical;
    min-height: 90px;
}

.co-submit-btn {
    width: 100%;
    margin-top: 8px;
    margin-bottom: 14px;
}

/* ---------- form field base styling (was missing from this file) ---------- */
.co-enquiry-form-card .cz-input,
.co-enquiry-form-card .cz-select {
    width: 100%;
    border: 1.5px solid #e4e0d6;
    border-radius: 8px;
    padding: 12px 14px;
    font-family: var(--secondary-font);
    font-size: 14px;
    color: var(--primary-color);
    outline: none;
    background-color: #fff;
    transition: border-color 0.2s ease;
}

.co-enquiry-form-card .cz-input:focus,
.co-enquiry-form-card .cz-select:focus {
    border-color: #334633;
}

.co-enquiry-form-card .cz-input::placeholder {
    color: #a8a196;
}

.co-enquiry-form-card .cz-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23334633' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.co-enquiry-form-card .co-textarea {
    resize: vertical;
    min-height: 90px;
    font-family: var(--secondary-font);
}

/* submit button — override cz-btn-fill for form context */
.co-enquiry-form-card .co-submit-btn {
    width: 100%;
    background-color: #334633;
    color: #fff;
    border: none;
    font-family: var(--primary-font);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.4px;
    padding: 15px 0;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease;
    margin-top: 8px;
    margin-bottom: 14px;
}

.co-enquiry-form-card .co-submit-btn:hover {
    background-color: #24321f;
    transform: translateY(-2px);
}

.co-enquiry-form-card .cz-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--secondary-font);
    font-size: 12px;
    color: #808080;
    margin: 0 !important;
}

.co-enquiry-form-card .cz-note i {
    color: #C9A15D;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .co-hero-grid {
        grid-template-columns: 1fr;
    }

    .co-hero-img {
        order: -1;
    }

    .co-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .co-hw-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .co-enquiry-wrap {
        grid-template-columns: 1fr;
        padding: 34px;
    }
}

@media only screen and (min-width:576px) and (max-width: 767px) {
    .co-hero {
        margin-bottom: 20px;
    }

    .co-hero-grid {
        grid-template-columns: 1fr;
        gap:20px;
    }

    .co-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        margin-bottom: 20px;
    }

    .bs-grid {
        margin-bottom: 20px;
    }

    .co-steps-card {
        margin-bottom: 20px;
    }

    .co-enquiry-wrap {
        margin-bottom: 20px;
    }

    .co-enquiry-info {
        top: 0%;
    }
}

@media (max-width: 575px) {
    .co-hero {
        padding: 20px 0;
        margin-bottom: 20px;
    }

    .co-hero-grid {
        grid-template-columns: 1fr;
        gap:20px;
    }
    .co-hero-content h1 {
        font-size: 28px;
    }

    .co-hero-content p {
        font-size: 13px;
    }

    .co-hero-btns {
        margin-bottom: 26px;
    }

    .co-btn-fill,
    .co-btn-outline {
        font-size: 13px;
        padding: 12px 20px;
    }

    .co-hero-stats {
        gap: 22px;
    }

    .co-hero-stats h4 {
        font-size: 20px;
    }

    .co-why-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 20px;
    }

    .co-product-grid {
        margin-bottom: 20px;
    }

    .co-why-card {
        padding: 22px;
    }

    .co-hw-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 10px;
    }

    .co-enquiry-info {
        top: 0%;
    }

    .co-clients {
        padding: 22px;
        margin-bottom: 20px;
    }

    .co-enquiry-wrap {
        padding: 22px;
        border-radius: 14px;
        margin-bottom: 20px;
    }

    .co-enquiry-info h2 {
        font-size: 22px;
    }

    .co-enquiry-form-card {
        padding: 20px;
    }

    .co-field-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}