/* =========================================================
   AL-WAFAA FOR TRADING
   INNER PAGES STYLES
   About | Products | Services | Contact | RFQ | 404
   ========================================================= */


/* =========================================================
   1. INNER PAGE HERO
   ========================================================= */

.page-hero {

    position: relative;

    min-height: 390px;

    display: flex;

    align-items: center;

    background-image:
        url("../images/hero.jpg");

    background-position: center;

    background-size: cover;

    background-repeat: no-repeat;

}


.page-hero::before {

    position: absolute;

    content: "";

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7, 21, 37, 0.94),
            rgba(7, 21, 37, 0.72),
            rgba(7, 21, 37, 0.45)
        );

}


.page-hero-container {

    position: relative;

    z-index: 1;

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin-inline: auto;

}


.page-hero-content {

    max-width: 760px;

    padding:
        75px 0;

}


.page-hero-label {

    display: inline-block;

    margin-bottom: 15px;

    color: var(--gold-light);

    font-size: 0.75rem;

    font-weight: 700;

    letter-spacing: 2.5px;

}


.page-hero h1 {

    margin-bottom: 18px;

    color: var(--white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(
        2.4rem,
        5vw,
        4rem
    );

    font-weight: 600;

    line-height: 1.12;

}


.page-hero p {

    max-width: 650px;

    color:
        rgba(
            255,
            255,
            255,
            0.8
        );

    font-size: 1rem;

}


/* =========================================================
   2. BREADCRUMB
   ========================================================= */

.breadcrumb {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 18px;

    color:
        rgba(
            255,
            255,
            255,
            0.7
        );

    font-size: 0.78rem;

}


.breadcrumb a:hover {

    color: var(--gold-light);

}


.breadcrumb-current {

    color: var(--gold-light);

}


.breadcrumb-separator {

    color:
        rgba(
            255,
            255,
            255,
            0.4
        );

}


/* =========================================================
   3. ABOUT PAGE
   ========================================================= */

.about-section {

    padding:
        100px 0;

    background: var(--white);

}


.about-grid {

    display: grid;

    grid-template-columns:
        0.7fr 1.3fr;

    gap: 85px;

    align-items: start;

}


.about-title {

    position: sticky;

    top: 110px;

}


.about-title span {

    display: block;

    color: var(--gold-dark);

    font-size: 0.78rem;

    font-weight: 700;

    letter-spacing: 2px;

}


.about-title h2 {

    margin-top: 6px;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            2rem,
            4vw,
            3rem
        );

    font-weight: 600;

    line-height: 1.15;

}


.about-title .section-line {

    margin:
        22px 0 0;

}


.about-content p {

    margin-bottom: 20px;

    color: var(--gray);

    font-size: 1rem;

}


.about-content p:last-child {

    margin-bottom: 0;

}


/* =========================================================
   4. COMPANY HIGHLIGHTS
   ========================================================= */

.company-highlights {

    padding:
        85px 0;

    background: var(--off-white);

}


.highlight-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

}


.highlight-card {

    padding:
        30px;

    background: var(--white);

    border:
        1px solid
        var(--border);

    border-radius:
        var(--radius-medium);

}


.highlight-card strong {

    display: block;

    margin-bottom: 8px;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1.15rem;

}


.highlight-card p {

    color: var(--gray);

    font-size: 0.9rem;

}


/* =========================================================
   5. PRODUCTS PAGE
   ========================================================= */

.products-section {

    padding:
        100px 0;

    background: var(--white);

}


.products-introduction {

    max-width: 800px;

    margin:
        0 auto 55px;

    text-align: center;

}


.products-introduction p {

    color: var(--gray);

    font-size: 1rem;

}


.products-page-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

}


.product-detail-card {

    overflow: hidden;

    background: var(--white);

    border:
        1px solid
        var(--border);

    border-radius:
        var(--radius-medium);

    box-shadow:
        var(--shadow-small);

    transition: var(--transition);

}


.product-detail-card:hover {

    transform:
        translateY(-5px);

    box-shadow:
        var(--shadow-medium);

}


.product-detail-image {

    height: 240px;

    overflow: hidden;

    background: var(--light-gray);

}


.product-detail-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform 0.5s ease;

}


.product-detail-card:hover
.product-detail-image img {

    transform:
        scale(1.05);

}


.product-detail-content {

    padding:
        25px;

}


.product-detail-content h2 {

    margin-bottom: 11px;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1.3rem;

    font-weight: 600;

}


.product-detail-content p {

    margin-bottom: 18px;

    color: var(--gray);

    font-size: 0.9rem;

}


/* =========================================================
   6. PRODUCT DOCUMENT BUTTON
   ========================================================= */

.product-document {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 42px;

    padding:
        0 17px;

    border:
        1px solid
        var(--navy);

    border-radius:
        var(--radius-small);

    color: var(--navy);

    font-size: 0.78rem;

    font-weight: 700;

    text-transform: uppercase;

    transition: var(--transition);

}


.product-document:hover {

    background: var(--navy);

    color: var(--white);

}


/* =========================================================
   7. SERVICES PAGE
   ========================================================= */

.services-section {

    padding:
        100px 0;

    background: var(--white);

}


.services-introduction {

    max-width: 800px;

    margin:
        0 auto 55px;

    text-align: center;

}


.services-introduction p {

    color: var(--gray);

}


.services-page-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

}


.service-detail-card {

    padding:
        32px;

    background: var(--off-white);

    border:
        1px solid
        var(--border);

    border-radius:
        var(--radius-medium);

    transition: var(--transition);

}


.service-detail-card:hover {

    background: var(--white);

    border-color:
        rgba(
            198,
            161,
            91,
            0.65
        );

    box-shadow:
        var(--shadow-small);

    transform:
        translateY(-4px);

}


.service-detail-number {

    display: block;

    margin-bottom: 20px;

    color: var(--gold-dark);

    font-size: 0.75rem;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.service-detail-card h2 {

    margin-bottom: 12px;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1.35rem;

    font-weight: 600;

}


.service-detail-card p {

    color: var(--gray);

    font-size: 0.92rem;

}


/* =========================================================
   8. EXPORT PROCESS
   ========================================================= */

.export-process {

    padding:
        90px 0;

    background: var(--navy);

}


.process-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

}


.process-step {

    position: relative;

    padding:
        28px 22px;

    background:
        rgba(
            255,
            255,
            255,
            0.055
        );

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.12
        );

    border-radius:
        var(--radius-medium);

}


.process-step-number {

    display: block;

    margin-bottom: 17px;

    color: var(--gold-light);

    font-size: 0.75rem;

    font-weight: 800;

    letter-spacing: 1px;

}


.process-step h3 {

    margin-bottom: 10px;

    color: var(--white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1.1rem;

}


.process-step p {

    color:
        rgba(
            255,
            255,
            255,
            0.65
        );

    font-size: 0.86rem;

}


/* =========================================================
   9. CONTACT PAGE
   ========================================================= */

.contact-section {

    padding:
        95px 0;

    background: var(--white);

}


.contact-grid {

    display: grid;

    grid-template-columns:
        0.85fr 1.15fr;

    gap: 55px;

    align-items: start;

}


.contact-information h2,
.contact-form-wrapper h2 {

    margin-bottom: 15px;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            1.8rem,
            4vw,
            2.5rem
        );

    font-weight: 600;

    line-height: 1.2;

}


.contact-information > p {

    margin-bottom: 30px;

    color: var(--gray);

}


.contact-details {

    display: flex;

    flex-direction: column;

    gap: 18px;

}


.contact-detail {

    padding-bottom: 18px;

    border-bottom:
        1px solid
        var(--border);

}


.contact-detail:last-child {

    border-bottom: none;

}


.contact-detail-label {

    display: block;

    margin-bottom: 4px;

    color: var(--gold-dark);

    font-size: 0.72rem;

    font-weight: 800;

    letter-spacing: 1.3px;

    text-transform: uppercase;

}


.contact-detail a,
.contact-detail span {

    color: var(--navy);

    font-size: 0.92rem;

}


.contact-detail a:hover {

    color: var(--gold-dark);

}


/* =========================================================
   10. CONTACT FORM
   ========================================================= */

.contact-form-wrapper {

    padding:
        35px;

    background: var(--off-white);

    border:
        1px solid
        var(--border);

    border-radius:
        var(--radius-medium);

}


.contact-form-wrapper > p {

    margin-bottom: 25px;

    color: var(--gray);

    font-size: 0.9rem;

}


.form-grid {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;

}


.form-group {

    display: flex;

    flex-direction: column;

}


.form-group.full-width {

    grid-column:
        1 / -1;

}


.form-group label {

    margin-bottom: 7px;

    color: var(--navy);

    font-size: 0.78rem;

    font-weight: 700;

}


.form-group input,
.form-group textarea,
.form-group select {

    width: 100%;

    padding:
        13px 14px;

    background: var(--white);

    border:
        1px solid
        var(--border);

    border-radius:
        var(--radius-small);

    color: var(--dark-gray);

    font-size: 0.9rem;

    transition: var(--transition);

}


.form-group input {

    min-height: 48px;

}


.form-group textarea {

    min-height: 145px;

    resize: vertical;

}


.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {

    outline: none;

    border-color: var(--gold);

    box-shadow:
        0 0 0 3px
        rgba(
            198,
            161,
            91,
            0.12
        );

}


.form-submit {

    margin-top: 20px;

}


.form-submit .button {

    width: 100%;

}


/* =========================================================
   11. GOOGLE MAP
   ========================================================= */

.map-section {

    padding:
        0 0 95px;

    background: var(--white);

}


.map-header {

    margin-bottom: 25px;

}


.map-header h2 {

    margin-bottom: 8px;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1.8rem;

    font-weight: 600;

}


.map-header p {

    color: var(--gray);

    font-size: 0.9rem;

}


.map-container {

    position: relative;

    width: 100%;

    min-height: 420px;

    overflow: hidden;

    border:
        1px solid
        var(--border);

    border-radius:
        var(--radius-medium);

    box-shadow:
        var(--shadow-small);

}


.map-container iframe {

    display: block;

    width: 100%;

    height: 420px;

    border: 0;

}


/* =========================================================
   12. DIRECTIONS BUTTON
   ========================================================= */

.map-actions {

    display: flex;

    justify-content: flex-end;

    margin-top: 15px;

}


.directions-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 44px;

    padding:
        0 18px;

    background: var(--navy);

    border-radius:
        var(--radius-small);

    color: var(--white);

    font-size: 0.78rem;

    font-weight: 700;

    text-transform: uppercase;

    transition: var(--transition);

}


.directions-button:hover {

    background: var(--gold);

    color: var(--navy);

    transform:
        translateY(-2px);

}


/* =========================================================
   13. RFQ PAGE
   ========================================================= */

.rfq-section {

    padding:
        95px 0;

    background: var(--off-white);

}


.rfq-container {

    max-width: 900px;

    margin-inline: auto;

}


.rfq-introduction {

    margin-bottom: 40px;

    text-align: center;

}


.rfq-introduction h2 {

    margin-bottom: 14px;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            2rem,
            4vw,
            2.8rem
        );

    font-weight: 600;

}


.rfq-introduction p {

    max-width: 680px;

    margin-inline: auto;

    color: var(--gray);

}


.rfq-form {

    padding:
        40px;

    background: var(--white);

    border:
        1px solid
        var(--border);

    border-radius:
        var(--radius-medium);

    box-shadow:
        var(--shadow-small);

}


/* =========================================================
   14. RFQ PRODUCT / QUANTITY AREA
   ========================================================= */

.rfq-product-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 18px;

}


.rfq-section-title {

    margin:
        30px 0 18px;

    padding-bottom: 10px;

    border-bottom:
        1px solid
        var(--border);

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 1.2rem;

    font-weight: 600;

}


/* =========================================================
   15. 404 PAGE
   ========================================================= */

.error-page {

    min-height:
        calc(
            100vh - 86px
        );

    display: flex;

    align-items: center;

    justify-content: center;

    padding:
        70px 20px;

    background:
        var(--off-white);

}


.error-content {

    max-width: 700px;

    text-align: center;

}


.error-number {

    margin-bottom: 10px;

    color: var(--gold);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            6rem,
            18vw,
            11rem
        );

    font-weight: 700;

    line-height: 0.9;

}


.error-content h1 {

    margin-bottom: 15px;

    color: var(--navy);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            2rem,
            5vw,
            3rem
        );

    font-weight: 600;

}


.error-content p {

    max-width: 550px;

    margin:
        0 auto 30px;

    color: var(--gray);

}


/* =========================================================
   16. PAGE CTA
   ========================================================= */

.page-cta {

    padding:
        80px 0;

    background: var(--navy);

}


.page-cta-content {

    max-width: 760px;

    margin-inline: auto;

    text-align: center;

}


.page-cta-content h2 {

    margin-bottom: 15px;

    color: var(--white);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(
            2rem,
            4vw,
            3rem
        );

    font-weight: 600;

}


.page-cta-content p {

    margin-bottom: 25px;

    color:
        rgba(
            255,
            255,
            255,
            0.72
        );

}


.page-cta-content .button {

    margin-inline: 5px;

}


/* =========================================================
   17. TABLET
   ========================================================= */

@media (max-width: 900px) {

    .page-hero {
        min-height: 350px;
    }


    .about-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    .about-title {
        position: static;
    }


    .highlight-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .products-page-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .services-page-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .process-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }


    .contact-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

}


/* =========================================================
   18. MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .page-hero {
        min-height: 320px;
    }


    .page-hero-container {
        width:
            calc(100% - 30px);
    }


    .page-hero-content {
        padding:
            60px 0;
    }


    .page-hero-label {
        font-size: 0.66rem;
        letter-spacing: 1.8px;
    }


    .page-hero h1 {
        font-size:
            clamp(
                2.1rem,
                10vw,
                3rem
            );
    }


    .page-hero p {
        font-size: 0.9rem;
    }


    .about-section,
    .products-section,
    .services-section,
    .contact-section,
    .rfq-section {
        padding:
            75px 0;
    }


    .company-highlights {
        padding:
            65px 0;
    }


    .highlight-grid,
    .products-page-grid,
    .services-page-grid,
    .process-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }


    .highlight-card,
    .service-detail-card {
        padding: 24px;
    }


    .product-detail-image {
        height: 220px;
    }


    .contact-form-wrapper,
    .rfq-form {
        padding:
            25px 20px;
    }


    .form-grid,
    .rfq-product-grid {
        grid-template-columns: 1fr;
    }


    .form-group.full-width {
        grid-column: auto;
    }


    .map-container,
    .map-container iframe {
        min-height: 350px;
        height: 350px;
    }


    .map-actions {
        justify-content: stretch;
    }


    .directions-button {
        width: 100%;
    }


    .page-cta {
        padding:
            65px 0;
    }


    .page-cta-content .button {
        width: 100%;

        margin:
            5px 0;
    }


    .error-page {
        min-height:
            calc(
                100vh - 70px
            );

        padding:
            55px 15px;
    }

}


/* =========================================================
   19. VERY SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    .page-hero-container {
        width:
            calc(100% - 24px);
    }


    .page-hero-content {
        padding:
            50px 0;
    }


    .page-hero h1 {
        font-size:
            2rem;
    }


    .contact-form-wrapper,
    .rfq-form {
        padding:
            22px 16px;
    }


    .map-container,
    .map-container iframe {
        height: 300px;
        min-height: 300px;
    }


    .error-number {
        font-size:
            6rem;
    }

}


/* =========================================================
   20. REDUCED MOTION
   ========================================================= */

@media (
    prefers-reduced-motion: reduce
) {

    .product-detail-card,
    .product-detail-image img,
    .service-detail-card,
    .directions-button,
    .product-document {
        transition: none !important;
    }

}

/* =========================================================
   EXPORT PROCESS - READABILITY FIX
   ========================================================= */

.export-process-section {
    background: #f4f5f6;
    color: #071525;
}

.export-process-section .section-heading {
    color: #071525;
}

.export-process-section .section-heading h2 {
    color: #071525;
    opacity: 1;
}

.export-process-section .section-heading p {
    color: #4b5563;
    opacity: 1;
}

.export-process-grid {
    color: #071525;
}

.export-process-grid .process-step {
    color: #071525;
}

.export-process-grid .process-step span {
    color: #b58a3a;
}

.export-process-grid .process-step h3 {
    color: #071525;
}

.export-process-grid .process-step p {
    color: #4b5563;
}

/* =========================================================
   SERVICES PAGE
   ========================================================= */


/* ---------------------------------------------------------
   PROPOSITION
   --------------------------------------------------------- */

.services-proposition {
    padding: 100px 0;
    background: #ffffff;
}

.services-proposition-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.services-proposition-copy {
    max-width: 620px;
}

.services-proposition-copy h2 {
    margin: 18px 0 28px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.12;
    color: #071525;
}

.services-proposition-copy p {
    margin: 0 0 18px;
    color: #4b5563;
    font-size: 1.05rem;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   EXPORT FLOW
   --------------------------------------------------------- */

.export-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 42px 25px;
    background: #f5f6f7;
    border: 1px solid #e2e5e8;
    border-radius: 4px;
}

.flow-node {
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.flow-icon {
    width: 46px;
    height: 46px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #b58a3a;
    border-radius: 50%;
    color: #b58a3a;
    font-size: 0.8rem;
    font-weight: 700;
}

.flow-node strong {
    display: block;
    color: #071525;
    font-size: 0.95rem;
    line-height: 1.35;
}

.flow-node small {
    display: block;
    margin-top: 7px;
    color: #6b7280;
    font-size: 0.75rem;
}

.flow-node-main {
    padding: 20px 12px;
    background: #071525;
    border-radius: 4px;
}

.flow-node-main strong {
    color: #ffffff;
}

.flow-node-main small {
    color: #cbd2da;
}

.flow-connector {
    width: 30px;
    height: 1px;
    background: #b58a3a;
    flex-shrink: 0;
}


/* ---------------------------------------------------------
   SECTION HEADING
   --------------------------------------------------------- */

.services-section-heading {
    max-width: 760px;
    margin-bottom: 60px;
}

.services-section-heading h2 {
    margin: 16px 0 18px;
    color: #071525;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
}

.services-section-heading p {
    margin: 0;
    color: #59636e;
    font-size: 1rem;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   PROCESS
   --------------------------------------------------------- */

.services-process {
    padding: 110px 0;
    background: #f5f6f7;
}

.process-timeline {
    position: relative;
    max-width: 950px;
    margin: 0 auto;
}

.process-timeline::before {
    content: "";
    position: absolute;
    top: 35px;
    bottom: 35px;
    left: 28px;
    width: 1px;
    background: #d4d8dc;
}

.process-item {
    position: relative;
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 30px;
    padding-bottom: 42px;
}

.process-item:last-child {
    padding-bottom: 0;
}

.process-number {
    position: relative;
    z-index: 2;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #071525;
    border: 4px solid #f5f6f7;
    border-radius: 50%;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
}

.process-content {
    padding: 4px 0 0;
}

.process-content > span {
    color: #b58a3a;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.process-content h3 {
    margin: 8px 0 8px;
    color: #071525;
    font-size: 1.3rem;
}

.process-content p {
    max-width: 700px;
    margin: 0;
    color: #59636e;
    line-height: 1.7;
}


/* ---------------------------------------------------------
   CAPABILITIES
   --------------------------------------------------------- */

.services-capabilities {
    padding: 110px 0;
    background: #ffffff;
}

.capabilities-list {
    border-top: 1px solid #dfe3e7;
}

.capability-row {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid #dfe3e7;
}

.capability-title {
    display: flex;
    align-items: center;
    gap: 20px;
}

.capability-title > span {
    color: #b58a3a;
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 25px;
}

.capability-title h3 {
    margin: 0;
    color: #071525;
    font-size: 1.15rem;
}

.capability-row p {
    margin: 0;
    color: #59636e;
    line-height: 1.65;
}


/* ---------------------------------------------------------
   INTERNATIONAL TRADE SUPPORT
   --------------------------------------------------------- */

.services-support {
    padding: 90px 0;
    background: #071525;
}

.services-support-inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.services-support-inner h2 {
    margin: 18px 0 0;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
}

.services-support-inner > p {
    margin: 0;
    color: #d2d8df;
    font-size: 1.05rem;
    line-height: 1.85;
}


/* ---------------------------------------------------------
   CTA
   --------------------------------------------------------- */

.services-hero + .services-proposition {
    border-top: 1px solid rgba(255,255,255,0.05);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}


/* =========================================================
   SERVICES RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .services-proposition-grid,
    .services-support-inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .export-flow {
        gap: 8px;
    }

    .flow-node {
        min-width: 100px;
    }

    .flow-connector {
        width: 18px;
    }

    .capability-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

}


@media (max-width: 700px) {

    .services-proposition,
    .services-process,
    .services-capabilities {
        padding: 75px 0;
    }

    .services-support {
        padding: 70px 0;
    }

    .services-proposition-grid,
    .services-support-inner {
        gap: 38px;
    }

    .export-flow {
        display: flex;
        flex-direction: column;
        padding: 30px 20px;
        gap: 0;
    }

    .flow-node {
        width: 100%;
        min-width: 0;
        padding: 16px;
    }

    .flow-node-main {
        width: 100%;
    }

    .flow-connector {
        width: 1px;
        height: 25px;
    }

    .process-timeline::before {
        left: 23px;
    }

    .process-item {
        grid-template-columns: 48px 1fr;
        gap: 20px;
        padding-bottom: 35px;
    }

    .process-number {
        width: 48px;
        height: 48px;
        border-width: 3px;
    }

    .process-content h3 {
        font-size: 1.15rem;
    }

    .process-content p {
        font-size: 0.95rem;
    }

    .capability-row {
        padding: 24px 0;
    }

    .capability-title {
        gap: 14px;
    }

    .services-support-inner h2 {
        font-size: 2rem;
    }

    .services-support-inner > p {
        font-size: 0.98rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-buttons .button {
        width: 100%;
        text-align: center;
    }

}

/* =========================================================
   CONTACT PAGE
   ========================================================= */

.contact-main {
    padding: 100px 0;
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: start;
}

.contact-information h2 {
    margin: 18px 0 22px;
    color: #071525;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
}

.contact-intro {
    max-width: 520px;
    margin: 0 0 42px;
    color: #59636e;
    font-size: 1rem;
    line-height: 1.8;
}

.contact-item {
    display: flex;
    gap: 18px;
    padding: 19px 0;
    border-bottom: 1px solid #e2e5e8;
}

.contact-item-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #b58a3a;
    border-radius: 50%;
    color: #b58a3a;
    font-size: 0.75rem;
    font-weight: 700;
}

.contact-item span {
    display: block;
    margin-bottom: 5px;
    color: #7a838c;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-item a,
.contact-item p {
    margin: 0;
    color: #071525;
    font-size: 0.96rem;
    line-height: 1.65;
    text-decoration: none;
}

.contact-item a:hover {
    color: #b58a3a;
}


/* FORM */

.contact-form-wrapper {
    padding: 45px;
    background: #f5f6f7;
    border: 1px solid #e1e4e7;
}

.contact-form-header {
    margin-bottom: 30px;
}

.contact-form-header h2 {
    margin: 15px 0 10px;
    color: #071525;
    font-size: 2rem;
}

.contact-form-header p {
    margin: 0;
    color: #59636e;
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #071525;
    font-size: 0.82rem;
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 15px;
    border: 1px solid #d6dbe0;
    border-radius: 2px;
    background: #ffffff;
    color: #071525;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.form-group textarea {
    resize: vertical;
    min-height: 145px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #b58a3a;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9aa1a8;
}

.contact-submit {
    align-self: flex-start;
    margin-top: 5px;
    border: 0;
    cursor: pointer;
}


/* LOCATION */

.contact-location {
    padding: 100px 0;
    background: #f5f6f7;
}

.contact-location-heading {
    margin-bottom: 35px;
}

.contact-location-heading h2 {
    margin: 15px 0 0;
    color: #071525;
    font-size: clamp(2rem, 4vw, 3rem);
}

.map-wrapper {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dfe3e7;
}

.map-wrapper iframe {
    display: block;
}

.map-address {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 22px 0 0;
}

.map-address p {
    margin: 0;
    color: #59636e;
    line-height: 1.6;
}

.map-link {
    flex-shrink: 0;
    color: #071525;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid #b58a3a;
    padding-bottom: 3px;
}

.map-link:hover {
    color: #b58a3a;
}


/* CONTACT CTA */

.contact-main + .contact-location {
    border-top: 1px solid #e1e4e7;
}


/* =========================================================
   CONTACT RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-information {
        max-width: 700px;
    }

}


@media (max-width: 700px) {

    .contact-main,
    .contact-location {
        padding: 70px 0;
    }

    .contact-grid {
        gap: 45px;
    }

    .contact-form-wrapper {
        padding: 28px 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form-header h2 {
        font-size: 1.7rem;
    }

    .contact-item {
        gap: 14px;
    }

    .map-wrapper iframe {
        height: 330px;
    }

    .map-address {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .map-link {
        margin-top: 3px;
    }

}

/* =========================================================
   RFQ PAGE
   ========================================================= */

.rfq-introduction {
    padding: 80px 0 55px;
    background: #ffffff;
}

.rfq-introduction-inner {
    max-width: 800px;
}

.rfq-introduction-inner h2 {
    margin: 16px 0 18px;
    color: #071525;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
}

.rfq-introduction-inner p {
    max-width: 720px;
    margin: 0;
    color: #59636e;
    font-size: 1.05rem;
    line-height: 1.8;
}


/* ---------------------------------------------------------
   FORM AREA
   --------------------------------------------------------- */

.rfq-section {
    padding: 30px 0 110px;
    background: #ffffff;
}

.rfq-form {
    max-width: 1050px;
    margin: 0 auto;
    border: 1px solid #dfe3e7;
    background: #ffffff;
}

.rfq-form-section {
    padding: 48px;
    border-bottom: 1px solid #dfe3e7;
}

.rfq-form-heading {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    margin-bottom: 35px;
}

.rfq-form-heading > span {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #b58a3a;
    border-radius: 50%;
    color: #b58a3a;
    font-size: 0.78rem;
    font-weight: 700;
}

.rfq-form-heading h2 {
    margin: 0 0 7px;
    color: #071525;
    font-size: 1.45rem;
}

.rfq-form-heading p {
    margin: 0;
    color: #6b737c;
    line-height: 1.6;
    font-size: 0.92rem;
}

.rfq-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-bottom: 22px;
}

.rfq-form-grid:last-child {
    margin-bottom: 0;
}

.rfq-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rfq-form label {
    color: #071525;
    font-size: 0.82rem;
    font-weight: 700;
}

.rfq-form label strong,
.rfq-submit-area strong {
    color: #b58a3a;
}

.rfq-form input,
.rfq-form select,
.rfq-form textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 15px;
    border: 1px solid #d5dae0;
    border-radius: 2px;
    background: #ffffff;
    color: #071525;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s ease;
}

.rfq-form textarea {
    resize: vertical;
    min-height: 160px;
}

.rfq-form input:focus,
.rfq-form select:focus,
.rfq-form textarea:focus {
    border-color: #b58a3a;
}

.rfq-form input::placeholder,
.rfq-form textarea::placeholder {
    color: #9aa1a8;
}


/* ---------------------------------------------------------
   SUBMIT AREA
   --------------------------------------------------------- */

.rfq-submit-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 35px 48px;
    background: #f5f6f7;
}

.rfq-submit-area p {
    margin: 0 0 5px;
    color: #59636e;
    font-size: 0.82rem;
}

.rfq-submit-area small {
    color: #7b838c;
    font-size: 0.78rem;
}

.rfq-submit {
    flex-shrink: 0;
    border: 0;
    cursor: pointer;
}


/* ---------------------------------------------------------
   DIRECT CONTACT
   --------------------------------------------------------- */

.rfq-contact {
    padding: 75px 0;
    background: #071525;
}

.rfq-contact-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.rfq-contact-inner h2 {
    margin: 15px 0 0;
    color: #ffffff;
    font-size: 2.2rem;
}

.rfq-contact-links {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.rfq-contact-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    padding-bottom: 4px;
    border-bottom: 1px solid #b58a3a;
}

.rfq-contact-links a:hover {
    color: #b58a3a;
}


/* =========================================================
   RFQ RESPONSIVE
   ========================================================= */

@media (max-width: 800px) {

    .rfq-form-section {
        padding: 35px 28px;
    }

    .rfq-submit-area {
        padding: 30px 28px;
    }

    .rfq-contact-inner {
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 600px) {

    .rfq-introduction {
        padding: 65px 0 40px;
    }

    .rfq-section {
        padding: 20px 0 70px;
    }

    .rfq-form {
        border-left: 0;
        border-right: 0;
    }

    .rfq-form-section {
        padding: 30px 18px;
    }

    .rfq-form-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 18px;
    }

    .rfq-form-heading {
        gap: 15px;
        margin-bottom: 28px;
    }

    .rfq-form-heading > span {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .rfq-form-heading h2 {
        font-size: 1.25rem;
    }

    .rfq-submit-area {
        flex-direction: column;
        align-items: stretch;
        padding: 28px 18px;
    }

    .rfq-submit {
        width: 100%;
    }

    .rfq-contact {
        padding: 65px 0;
    }

    .rfq-contact-inner h2 {
        font-size: 1.9rem;
    }

    .rfq-contact-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

}