/* =====================================================
   COST WEBSITE
   MAIN STYLESHEET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #061c41;
    background: #ffffff;
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1240px, calc(100% - 80px));
    margin: 0 auto;
}


/* =====================================================
   HEADER
===================================================== */

.header {
    height: 86px;
    background: #ffffff;
    border-bottom: 1px solid #e1e7ee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .logo {
    width: 285px;
    height: 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
    flex-shrink: 0;
}

.header .logo img {
    width: 330px;
    height: 85px;
    object-fit: contain;
    object-position: left center;
    transform: scale(1.28);
    transform-origin: left center;
}

.nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav > a {
    padding: 9px 13px;
    font-size: 14px;
    font-weight: 500;
    color: #172943;
    border-radius: 7px;
    text-decoration: none;
    transition: 0.2s ease;
    white-space: nowrap;
}

.nav > a:hover {
    background: #f1f5f9;
}

.nav > a.active {
    background: #edf2f7;
}

.nav .contact-btn {
    margin-left: 10px;
    padding: 12px 20px;
    background: #071d3f;
    color: #ffffff;
    font-weight: 700;
    border-radius: 7px;
}

.nav .contact-btn:hover {
    background: #0d2b57;
}

/* =====================================================
   GENERAL
===================================================== */

.eyebrow {
    display: block;
    margin-bottom: 12px;
    color: #17498a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
}

.light-eyebrow {
    color: #a8c6ee;
}

.btn {
    min-height: 50px;
    padding: 0 24px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.2s ease;
}

.btn-dark {
    background: #071d3f;
    color: #ffffff;
}

.btn-dark:hover {
    background: #10315f;
}

.text-link {
    color: #164989;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}


/* =====================================================
   HERO
===================================================== */

.hero {
    min-height: 515px;

    background:
        linear-gradient(
            90deg,
            rgba(6, 29, 64, 0.97) 0%,
            rgba(8, 34, 73, 0.93) 48%,
            rgba(8, 34, 73, 0.76) 100%
        ),
        url("assets/hero.jpg");

    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.hero-content {
    color: #ffffff;
}

.hero-badge {
    width: fit-content;
    margin-bottom: 25px;
    padding: 3px 12px;
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 30px;
    color: #c6d0df;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero h1 {
    max-width: 700px;
    margin-bottom: 25px;
    font-size: clamp(48px, 5vw, 70px);
    line-height: 1.07;
    letter-spacing: -2px;
    color: #ffffff;
}

.hero h1 span {
    color: #8ed1ff;
}

.hero p {
    max-width: 670px;
    margin-bottom: 30px;
    color: #d6dce6;
    font-size: 19px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 12px;
}

.btn-light {
    background: #ffffff;
    color: #071d3f;
}

.btn-light:hover {
    background: #eaf2fa;
}

.btn-outline {
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.04);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.12);
}


/* =====================================================
   COMPANY OVERVIEW
===================================================== */

.overview {
    padding: 95px 0;
    background: #ffffff;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
}

.overview-title h2 {
    max-width: 570px;
    font-size: 36px;
    line-height: 1.15;
    letter-spacing: -1px;
}

.overview-text p {
    max-width: 600px;
    color: #344e70;
    font-size: 18px;
    line-height: 1.65;
}


/* =====================================================
   SERVICES
===================================================== */

.services {
    padding: 95px 0;
    background: #eef4f9;
}

.section-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 55px;
}

.section-heading h2,
.projects-heading h2 {
    margin-bottom: 12px;
    font-size: 36px;
    line-height: 1.15;
    letter-spacing: -1px;
}

.section-heading p {
    max-width: 720px;
    color: #405a78;
    font-size: 17px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    min-width: 0;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #d8e0e8;
    border-radius: 12px;
}

.service-card > img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    min-height: 160px;
    padding: 24px;
}

.service-content h3 {
    margin-bottom: 8px;
    color: #071d3f;
    font-size: 17px;
}

.service-content p {
    min-height: 48px;
    margin-bottom: 12px;
    color: #405a78;
    font-size: 14px;
    line-height: 1.5;
}

.service-content a {
    color: #17498a;
    font-size: 14px;
    font-weight: 700;
}


/* =====================================================
   PROJECTS
===================================================== */

.projects {
    padding: 95px 0;
    background: #ffffff;
}

.projects-heading {
    margin-bottom: 50px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.project-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #d7dfe8;
    border-radius: 12px;
}

.project-card > img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.project-content {
    min-height: 190px;
    padding: 24px;
}

.project-category {
    display: block;
    margin-bottom: 8px;
    color: #17498a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.project-content h3 {
    margin-bottom: 8px;
    font-size: 16px;
}

.project-content p {
    color: #405a78;
    font-size: 14px;
    line-height: 1.5;
}


/* =====================================================
   WHY CHOOSE COST
===================================================== */

.why-cost {
    padding: 85px 0 95px;
    background: #eef4f9;
}

.why-heading {
    margin-bottom: 55px;
    text-align: center;
}

.why-heading h2 {
    font-size: 36px;
    line-height: 1.12;
    letter-spacing: -1px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    min-height: 135px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #d8e0e8;
    border-radius: 12px;
}

.feature-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #071d3f;
    border-radius: 7px;
    color: #ffffff;
    font-size: 20px;
}

.feature-card h3 {
    color: #061c41;
    font-size: 16px;
    line-height: 1.3;
}


/* =====================================================
   MISSION / VISION
===================================================== */

.mission-vision {
    padding: 78px 0;
    background: #ffffff;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.mission-card,
.vision-card {
    min-height: 380px;
    padding: 40px;
    border-radius: 14px;
}

.mission-card {
    background: #071d3f;
    color: #ffffff;
}

.vision-card {
    background: #ffffff;
    border: 1px solid #d7dfe8;
}

.mission-card h2,
.vision-card h2 {
    margin-bottom: 14px;
    font-size: 29px;
    line-height: 1.25;
}

.mission-card p {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.65;
}

.vision-card p {
    color: #405a78;
    font-size: 16px;
    line-height: 1.65;
}


/* =====================================================
   CERTIFICATIONS
===================================================== */

.certifications {
    padding: 64px 0;
    background: #071d3f;
    color: #ffffff;
}

.certification-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, 1fr);
    align-items: center;
    gap: 30px;
}

.certification-intro h2 {
    margin-bottom: 8px;
    font-size: 24px;
}

.certification-intro a {
    color: #d7e6fa;
    font-size: 14px;
}

.iso-card {
    min-height: 105px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
}

.iso-card strong {
    font-size: 25px;
}

.iso-card span {
    margin-top: 2px;
    color: #d9e5f5;
    font-size: 12px;
    letter-spacing: 1px;
}


/* =====================================================
   ORA HOLDING
===================================================== */

.ora-holding {
    padding: 95px 0;
    background: #ffffff;
}

.ora-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 85px;
    align-items: center;
}

.ora-info h2 {
    max-width: 590px;
    margin-bottom: 16px;
    font-size: 36px;
    line-height: 1.15;
    letter-spacing: -1px;
}

.ora-info p {
    max-width: 610px;
    margin-bottom: 28px;
    color: #405a78;
    font-size: 16px;
    line-height: 1.65;
}


/* IMPORTANT: 3 × 3 like original design */

.company-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.company-card {
    height: 182px;
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #eef4f9;
    border: 1px solid #d7dfe8;
    border-radius: 9px;
    text-align: center;
}

.company-card img {
    width: 105px;
    height: 55px;
    margin-bottom: 9px;
    object-fit: contain;
}

.company-card span {
    margin-bottom: 2px;
    color: #66809e;
    font-size: 10px;
    letter-spacing: 1.5px;
}

.company-card strong {
    color: #061c41;
    font-size: 22px;
}


/* =====================================================
   CTA
===================================================== */

.cta {
    padding: 62px 0;
    background: #eef4f9;
    border-top: 1px solid #dbe3eb;
    border-bottom: 1px solid #dbe3eb;
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta h2 {
    margin-bottom: 5px;
    font-size: 29px;
}

.cta p {
    max-width: 630px;
    color: #405a78;
    font-size: 16px;
}

.cta-buttons {
    display: flex;
    gap: 12px;
}

.btn-white-border {
    background: #ffffff;
    border: 1px solid #cbd5df;
    color: #071d3f;
}


/* =====================================================
   FOOTER FIX - CLEAN PROFESSIONAL VERSION
===================================================== */

/* =====================================================
   FINAL SHARED FOOTER
===================================================== */

.footer {
    width: 100%;
    background: #0b254b;
    color: #ffffff;
}

.footer-grid {
    max-width: 1240px;
    margin: 0 auto;
    padding: 64px 24px 58px;

    display: grid;
    grid-template-columns: 1.6fr 0.65fr 0.75fr;
    gap: 90px;
    align-items: start;
}


/* LEFT SIDE */

.footer-company {
    max-width: 470px;
}

.footer-company .footer-logo {
    display: block;

    width: 255px !important;
    max-width: 255px !important;
    height: 90px !important;

    object-fit: contain;
    object-position: left center;

    margin: 0 0 28px 0 !important;
}

.footer-company p {
    max-width: 440px;
    margin: 0 0 16px;

    font-size: 15px;
    line-height: 1.6;
    color: #dce6f3;
}

.footer-company .footer-tagline {
    display: block;

    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.3px;

    color: #91a9c9;
}


/* EXPLORE + CONTACT */

.footer h4 {
    margin: 0 0 20px;

    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-links a {
    margin: 0 0 12px;

    font-size: 15px;
    line-height: 1.2;

    color: #e3ebf5;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-contact p {
    margin: 0 0 14px;

    font-size: 15px;
    line-height: 1.4;

    color: #e3ebf5;
}


/* BOTTOM BAR */

.footer-bottom {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-inner {
    max-width: 1240px;
    min-height: 55px;

    margin: 0 auto;
    padding: 0 24px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 30px;
}

.footer-bottom-inner p {
    margin: 0;

    font-size: 12px;
    color: #91a9c9;
}


/* TABLET */

@media (max-width: 900px) {

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }

    .footer-company {
        grid-column: 1 / -1;
    }
}


/* MOBILE */

@media (max-width: 600px) {

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;

        padding-top: 45px;
        padding-bottom: 40px;
    }

    .footer-company {
        grid-column: auto;
    }

    .footer-company .footer-logo {
        width: 230px !important;
        max-width: 230px !important;
        height: 80px !important;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;

        padding-top: 18px;
        padding-bottom: 18px;
    }
}
/* =========================================================
   ABOUT PAGE
========================================================= */


/* ================= ABOUT HERO ================= */

.about-hero {
    min-height: 485px;
    position: relative;

    background:
        linear-gradient(
            90deg,
            rgba(7, 31, 67, 0.97) 0%,
            rgba(7, 31, 67, 0.90) 42%,
            rgba(7, 31, 67, 0.67) 100%
        ),
        url("assets/proj-substation.jpg");

    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.section-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    color: #174a8b;
    margin-bottom: 18px;
}

.section-label.light {
    color: #c7d7ee;
}

.about-hero h1 {
    margin: 0;
    max-width: 850px;

    font-size: 60px;
    line-height: 1.02;
    font-weight: 700;
    letter-spacing: -2px;
    color: white;
}

.about-hero p {
    max-width: 780px;
    margin-top: 26px;

    font-size: 20px;
    line-height: 1.55;
    color: #ffffff;
}


/* ================= WHO WE ARE ================= */

.about-who {
    padding: 62px 0 32px;
    background: #ffffff;
}

.about-who-grid {
    display: grid;
    grid-template-columns: 32% 68%;
    gap: 55px;
}

.about-who-title h2 {
    margin: 0;

    font-size: 38px;
    line-height: 1.08;
    letter-spacing: -1px;
    color: #061f47;
}

.about-who-text {
    padding-right: 15px;
}

.about-who-text p {
    margin: 0 0 20px;

    font-size: 18px;
    line-height: 1.55;
    color: #344e73;
}


/* ================= MISSION / VISION ================= */

.mission-vision {
    padding: 90px 0;
    background: #edf3f9;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.mission-card,
.vision-card {
    min-height: 292px;
    border-radius: 15px;
    padding: 40px;
}

.mission-card {
    background: #0b254b;
    color: white;
}

.vision-card {
    background: #ffffff;
    border: 1px solid #d7e0ea;
}

.mission-card .section-label,
.vision-card .section-label {
    margin-bottom: 14px;
}

.mission-card p,
.vision-card p {
    margin: 0;

    font-size: 17px;
    line-height: 1.55;
}

.mission-card p {
    color: #ffffff;
}

.vision-card p {
    color: #344e73;
}


/* ================= CORE VALUES ================= */

.core-values {
    padding: 12px 0 75px;
    background: #ffffff;
}

.values-heading {
    text-align: center;
    margin-bottom: 56px;
}

.values-heading .section-label {
    margin-bottom: 14px;
}

.values-heading h2 {
    margin: 0;

    font-size: 38px;
    line-height: 1.15;
    color: #061f47;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    min-height: 182px;
    padding: 25px;

    border: 1px solid #d5dee8;
    border-radius: 14px;
    background: #ffffff;
}

.value-card > span {
    display: block;
    margin-bottom: 13px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #174a8b;
}

.value-card h3 {
    margin: 0 0 14px;

    font-size: 18px;
    color: #061f47;
}

.value-card p {
    margin: 0;

    font-size: 15px;
    line-height: 1.5;
    color: #344e73;
}


/* ================= ABOUT CTA ================= */

.about-cta {
    padding: 65px 0;
    background: #edf3f9;
    border-top: 1px solid #dce5ee;
}

.about-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.about-cta h2 {
    margin: 0 0 10px;

    font-size: 30px;
    color: #061f47;
}

.about-cta p {
    max-width: 600px;
    margin: 0;

    font-size: 17px;
    line-height: 1.5;
    color: #344e73;
}

.about-cta-buttons {
    display: flex;
    gap: 12px;
}

.btn-dark,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 15px 22px;
    border-radius: 6px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;
    transition: 0.2s ease;
}

.btn-dark {
    background: #071f46;
    color: white;
    border: 1px solid #071f46;
}

.btn-dark:hover {
    background: #12335f;
}

.btn-outline {
    background: white;
    color: #071f46;
    border: 1px solid #c8d2de;
}

.btn-outline:hover {
    background: #f7f9fc;
}


/* ================= ABOUT RESPONSIVE ================= */

@media (max-width: 900px) {

    .about-hero {
        min-height: 450px;
    }

    .about-hero h1 {
        font-size: 46px;
    }

    .about-who-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}


@media (max-width: 600px) {

    .about-hero {
        min-height: 420px;
    }

    .about-hero h1 {
        font-size: 38px;
    }

    .about-hero p {
        font-size: 17px;
    }

    .about-who {
        padding: 65px 0;
    }

    .about-who-title h2 {
        font-size: 32px;
    }

    .about-who-text p {
        font-size: 16px;
    }

    .mission-vision {
        padding: 65px 0;
    }

    .mission-card,
    .vision-card {
        padding: 28px 25px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .values-heading h2 {
        font-size: 31px;
    }

    .about-cta-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-dark,
    .btn-outline {
        width: 100%;
    }
}

/* =========================================
   SERVICES PAGE
========================================= */

/* HERO */
.services-hero {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(6, 29, 63, 0.97) 0%,
            rgba(6, 29, 63, 0.91) 43%,
            rgba(6, 29, 63, 0.62) 100%
        ),
        url("assets/svc-piping.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.services-hero-content {
    width: calc(100% - 110px);
    max-width: 1240px;
    margin: 0 auto;
    padding: 80px 0;
}

.services-hero .eyebrow {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.services-hero h1 {
    max-width: 850px;
    margin: 0;
    color: #ffffff;
    font-size: 58px;
    line-height: 1.05;
    font-weight: 700;
    letter-spacing: -1px;
}

.services-hero p {
    max-width: 800px;
    margin: 25px 0 0;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.7;
}


/* =========================================
   SERVICES CARDS
========================================= */

.services-section {
    padding: 34px 55px 75px;
    background: #ffffff;
}

.services-grid {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #d8e0e8;
    border-radius: 12px;
}

.service-card img,
.service-card .service-image {
    display: block;
    width: 100%;
    height: 245px;
    object-fit: cover;
}

.service-content {
    padding: 24px 24px 25px;
}

.service-content h3 {
    margin: 0 0 10px;
    color: #061c3f;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
}

.service-content p {
    min-height: 46px;
    margin: 0 0 16px;
    color: #354f70;
    font-size: 15px;
    line-height: 1.5;
}

.service-link {
    display: inline-block;
    color: #17477e;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.service-link:hover {
    text-decoration: underline;
}


/* =========================================
   SERVICES CTA
========================================= */

.services-cta {
    background: #edf3f8;
    padding: 68px 55px;
}

.services-cta-inner {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.services-cta h2 {
    margin: 0 0 8px;
    color: #061c3f;
    font-size: 30px;
    line-height: 1.2;
}

.services-cta p {
    max-width: 620px;
    margin: 0;
    color: #365272;
    font-size: 16px;
    line-height: 1.6;
}

.services-cta-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.services-cta .primary-btn {
    display: inline-block;
    padding: 14px 21px;
    border-radius: 6px;
    background: #061c3f;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.services-cta .secondary-btn {
    display: inline-block;
    padding: 13px 21px;
    border: 1px solid #ccd5df;
    border-radius: 6px;
    background: #ffffff;
    color: #061c3f;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1000px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-hero h1 {
        font-size: 48px;
    }
}


@media (max-width: 768px) {

    .services-hero {
        min-height: 420px;
    }

    .services-hero-content {
        width: calc(100% - 40px);
        padding: 60px 0;
    }

    .services-hero h1 {
        font-size: 40px;
    }

    .services-hero p {
        font-size: 16px;
    }

    .services-section {
        padding: 30px 20px 60px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-cta {
        padding: 50px 20px;
    }

    .services-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .services-cta-buttons {
        flex-wrap: wrap;
    }
}

/* ==================================================
   PROJECTS PAGE
================================================== */


/* ================= PROJECTS HERO ================= */

.projects-hero {
    position: relative;
    min-height: 510px;

    display: flex;
    align-items: center;

    background-image:
        linear-gradient(
            90deg,
            rgba(6, 31, 66, 0.98) 0%,
            rgba(6, 31, 66, 0.94) 35%,
            rgba(6, 31, 66, 0.75) 65%,
            rgba(6, 31, 66, 0.55) 100%
        ),
        url("assets/proj-qassim.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* HERO OVERLAY */

.projects-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}


/* HERO CONTENT */

.projects-hero-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1240px;

    margin: 0 auto;
    padding: 85px 0;
}


/* PROJECTS SMALL LABEL */

.projects-hero .section-label {
    display: block;

    margin-bottom: 18px;

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 4px;
}


/* PROJECTS MAIN TITLE */

.projects-hero h1 {
    margin: 0;

    max-width: 900px;

    color: #ffffff;

    font-size: 58px;
    line-height: 1.05;
    font-weight: 700;

    letter-spacing: -1px;
}


/* HERO DESCRIPTION */

.projects-hero p {
    margin: 26px 0 0;

    max-width: 800px;

    color: #ffffff;

    font-size: 18px;
    line-height: 1.7;
}


/* ================= PROJECTS LIST ================= */

.projects-list {
    background: #ffffff;

    padding: 22px 0 95px;
}


/* PROJECT GRID */

.projects-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 32px;

    max-width: 1240px;

    margin: 0 auto;
}


/* ================= PROJECT CARD ================= */

.project-card {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #dbe2ea;
    border-radius: 14px;
}


/* PROJECT IMAGE CONTAINER */

.project-card-image {
    width: 100%;
    height: 375px;

    overflow: hidden;
}


/* PROJECT IMAGE */

.project-card-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* PROJECT TEXT AREA */

.project-card-body {
    padding: 28px 28px 30px;
}


/* PROJECT CATEGORY */

.project-category {
    display: block;

    margin-bottom: 12px;

    color: #174a88;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* PROJECT TITLE */

.project-card h2 {
    margin: 0 0 14px;

    color: #061d41;

    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;
}


/* PROJECT DESCRIPTION */

.project-card p {
    margin: 0;

    color: #405572;

    font-size: 17px;
    line-height: 1.5;
}


/* ==================================================
   PROJECTS CTA
================================================== */

.projects-list + .services-cta {
    margin: 0;
}


/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 1300px) {

    .projects-hero-content {
        padding-left: 55px;
        padding-right: 55px;
    }

    .projects-grid {
        margin-left: 55px;
        margin-right: 55px;
    }

}


@media (max-width: 900px) {

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card-image {
        height: 330px;
    }

}


@media (max-width: 768px) {

    .projects-hero {
        min-height: 430px;
    }

    .projects-hero-content {
        padding: 60px 25px;
    }

    .projects-hero h1 {
        font-size: 40px;
        line-height: 1.1;
    }

    .projects-hero p {
        font-size: 16px;
    }

    .projects-grid {
        margin-left: 25px;
        margin-right: 25px;

        gap: 22px;
    }

    .projects-list {
        padding-top: 25px;
        padding-bottom: 65px;
    }

    .project-card-image {
        height: 280px;
    }

    .project-card-body {
        padding: 24px;
    }

}


@media (max-width: 480px) {

    .projects-hero h1 {
        font-size: 34px;
    }

    .project-card-image {
        height: 230px;
    }

}

/* =========================================================
   CERTIFICATIONS PAGE
========================================================= */

/* ================================
   CERTIFICATIONS HERO
================================ */

.certifications-hero {
    min-height: 400px;
    background: #0b2143;
    display: flex;
    align-items: center;
}

.certifications-hero-content {
    padding-top: 75px;
    padding-bottom: 75px;
}

.certifications-label {
    display: block;
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
}

.certifications-hero h1 {
    margin: 0;
    color: #ffffff;
    font-size: 58px;
    line-height: 1.1;
    font-weight: 700;
}

.certifications-hero p {
    max-width: 780px;
    margin: 24px 0 0;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.7;
}


/* ================================
   CERTIFICATIONS CONTENT
================================ */

.certifications-section {
    padding: 90px 0;
    background: #ffffff;
}

.certifications-heading {
    text-align: center;
    margin-bottom: 58px;
}

.section-label {
    display: block;
    margin-bottom: 14px;
    color: #123f7b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
}

.certifications-heading h2 {
    margin: 0;
    color: #071d3d;
    font-size: 36px;
    line-height: 1.15;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.certification-card {
    min-height: 295px;
    padding: 32px;
    border: 1px solid #d9e1e9;
    border-radius: 14px;
    background: #ffffff;
}

.certification-icon {
    width: 49px;
    height: 49px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #071d3d;
    color: #ffffff;
    font-size: 21px;
    font-weight: 700;
}

.certification-card h3 {
    margin: 0 0 8px;
    color: #071d3d;
    font-size: 25px;
}

.certification-type {
    display: block;
    min-height: 38px;
    color: #123f7b;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 700;
    letter-spacing: 1.6px;
}

.certification-card p {
    margin: 17px 0 0;
    color: #38526f;
    font-size: 15px;
    line-height: 1.55;
}


/* ================================
   LET'S WORK TOGETHER
================================ */

.cta-section {
    width: 100%;
    background: #edf4fa;
    padding: 70px 0;
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.cta-text {
    max-width: 650px;
}

.cta-text h2 {
    margin: 0 0 12px;
    color: #071d3d;
    font-size: 30px;
    line-height: 1.2;
}

.cta-text p {
    margin: 0;
    color: #294c73;
    font-size: 17px;
    line-height: 1.55;
}

.cta-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.cta-primary,
.cta-secondary {
    min-height: 54px;
    padding: 0 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
}

.cta-primary {
    background: #071d3d;
    border: 1px solid #071d3d;
    color: #ffffff;
}

.cta-primary span {
    margin-left: 12px;
    font-size: 18px;
}

.cta-secondary {
    background: #ffffff;
    border: 1px solid #cbd5df;
    color: #071d3d;
}


/* ================================
   CERTIFICATIONS RESPONSIVE
================================ */

@media (max-width: 1000px) {

    .nav {
        gap: 2px;
    }

    .nav > a {
        padding-left: 8px;
        padding-right: 8px;
    }

    .certifications-grid {
        grid-template-columns: 1fr;
    }

    .cta-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width: 768px) {

    .container {
        width: calc(100% - 40px);
    }

    .nav-container {
        height: auto;
        padding-top: 15px;
        padding-bottom: 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .logo img {
        width: 220px;
        height: auto;
    }

    .nav {
        width: 100%;
        flex-wrap: wrap;
    }

    .certifications-hero {
        min-height: 350px;
    }

    .certifications-hero h1 {
        font-size: 40px;
    }

    .certifications-hero p {
        font-size: 16px;
    }

    .certifications-heading h2 {
        font-size: 30px;
    }

    .cta-section {
        padding: 50px 0;
    }

    .cta-buttons {
        flex-wrap: wrap;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-inner {
        min-height: auto;
        padding-top: 15px;
        padding-bottom: 15px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* =========================================
   ORA HOLDING
========================================= */

.ora-hero {
    min-height: 490px;
    background: #0b2348;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.ora-hero-content {
    width: 100%;
    padding-top: 85px;
    padding-bottom: 85px;
}

.ora-eyebrow {
    display: block;
    margin: 0 0 18px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.ora-hero h1 {
    max-width: 900px;
    margin: 0;
    color: #ffffff;
    font-size: 58px;
    line-height: 1.05;
    font-weight: 700;
}

.ora-hero p {
    max-width: 800px;
    margin: 25px 0 0;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.65;
}


/* COMPANIES */

.ora-companies {
    padding: 70px 0 95px;
    background: #ffffff;
}

.ora-companies .ora-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.ora-companies .ora-card {
    min-height: 240px;
    padding: 30px 25px;
    background: #ffffff;
    border: 1px solid #d8e0e8;
    border-radius: 14px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.ora-companies .ora-logo-box {
    width: 100%;
    height: 110px;
    margin-bottom: 15px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.ora-companies .ora-logo-box img {
    display: block;
    width: auto;
    height: auto;
    max-width: 240px;
    max-height: 105px;
    object-fit: contain;
}

.ora-companies .ora-card h3 {
    margin: 0 0 12px;
    color: #071b3c;
    font-size: 18px;
    font-weight: 700;
}

.ora-companies .ora-card p {
    margin: 0;
    color: #667a96;
    font-size: 14px;
    letter-spacing: 1px;
}


/* RESPONSIVE */

@media (max-width: 1000px) {

    .ora-companies .ora-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ora-hero h1 {
        font-size: 48px;
    }
}


@media (max-width: 768px) {

    .ora-hero {
        min-height: 400px;
    }

    .ora-hero-content {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .ora-hero h1 {
        font-size: 38px;
    }

    .ora-hero p {
        font-size: 16px;
    }

    .ora-companies {
        padding: 45px 0 60px;
    }

    .ora-companies .ora-grid {
        grid-template-columns: 1fr;
    }

    .ora-companies .ora-card {
        min-height: 220px;
    }
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */


/* HERO */

.contact-page-hero {
    min-height: 400px;
    background: #0d274c;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.contact-page-hero-content {
    width: 100%;
}

.contact-page-label {
    display: block;
    margin-bottom: 18px;

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;

    text-transform: uppercase;
}

.contact-page-hero h1 {
    margin: 0;

    color: #ffffff;

    font-size: 58px;
    line-height: 1.08;
    font-weight: 700;
}

.contact-page-hero p {
    max-width: 800px;

    margin: 25px 0 0;

    color: #ffffff;

    font-size: 18px;
    line-height: 1.65;
}


/* =========================================================
   CONTACT CONTENT
   ========================================================= */

.contact-page-section {
    padding: 95px 0 100px;
    background: #ffffff;
}

.contact-page-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.15fr);

    gap: 90px;

    align-items: start;
}


/* =========================================================
   HEAD OFFICE
   ========================================================= */

.contact-office {
    padding-top: 3px;
}

.contact-office h2 {
    margin: 0 0 15px;

    color: #071f43;

    font-size: 25px;
    line-height: 1.2;
    font-weight: 700;
}

.contact-office-description {
    max-width: 500px;

    margin: 0 0 34px;

    color: #294d7a;

    font-size: 16px;
    line-height: 1.65;
}


/* INFO ROW */

.contact-info-item {
    display: flex;
    align-items: flex-start;

    gap: 13px;

    margin-bottom: 21px;
}

.contact-info-icon {
    width: 37px;
    height: 37px;

    flex: 0 0 37px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 7px;

    background: #f0f5fa;

    color: #0b2a55;

    font-size: 16px;
}

.contact-info-item h3 {
    margin: 0 0 4px;

    color: #102b52;

    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
}

.contact-info-item p {
    margin: 0;

    color: #294d7a;

    font-size: 14px;
    line-height: 1.4;
}


/* =========================================================
   CONTACT FORM
   ========================================================= */

.contact-form-card {
    background: #ffffff;

    border: 1px solid #d8e0e8;

    border-radius: 15px;

    padding: 40px;

    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.06);
}

.contact-form-card h2 {
    margin: 0 0 8px;

    color: #071f43;

    font-size: 25px;
    line-height: 1.2;
    font-weight: 700;
}

.contact-form-intro {
    margin: 0 0 30px;

    color: #294d7a;

    font-size: 14px;
    line-height: 1.5;
}


/* ROWS */

.contact-form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 16px;
}


/* FIELD */

.contact-field {
    margin-bottom: 20px;
}

.contact-field label {
    display: block;

    margin-bottom: 9px;

    color: #102b52;

    font-size: 14px;
    font-weight: 500;
}

.contact-field label span {
    color: #e53333;
}


/* INPUT */

.contact-field input,
.contact-field textarea {
    width: 100%;

    box-sizing: border-box;

    border: 1px solid #d6dee8;

    border-radius: 6px;

    background: #ffffff;

    color: #102b52;

    font-family: inherit;

    font-size: 15px;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.contact-field input {
    height: 43px;

    padding: 0 13px;
}

.contact-field textarea {
    min-height: 122px;

    padding: 12px 13px;

    resize: vertical;
}


/* FOCUS */

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: #0b2a55;

    box-shadow:
        0 0 0 3px rgba(11, 42, 85, 0.08);
}


/* SEND BUTTON */

.contact-submit {
    min-height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-top: 9px;

    padding: 0 24px;

    border: 0;

    border-radius: 6px;

    background: #071f43;

    color: #ffffff;

    font-family: inherit;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;
}

.contact-submit:hover {
    background: #0b2a55;
}


/* =========================================================
   CONTACT PAGE RESPONSIVE
   ========================================================= */

@media (max-width: 1000px) {

    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

}


@media (max-width: 768px) {

    .contact-page-hero {
        min-height: 340px;
    }

    .contact-page-hero h1 {
        font-size: 42px;
    }

    .contact-page-hero p {
        font-size: 16px;
    }

    .contact-page-section {
        padding: 65px 0;
    }

    .contact-page-grid {
        gap: 45px;
    }

    .contact-form-card {
        padding: 28px 22px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

}


@media (max-width: 480px) {

    .contact-page-hero h1 {
        font-size: 36px;
    }

    .contact-page-label {
        letter-spacing: 3px;
    }

    .contact-form-card {
        padding: 24px 18px;
    }

}

/* =====================================================
   FINAL HOME ORA HOLDING FIX
   Keeps the home layout separate from ora-holding.html
===================================================== */

.ora-holding .ora-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(600px, 1.35fr);
    gap: 70px;
    align-items: center;
}

.ora-holding .company-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: 12px;
}

.ora-holding .company-card {
    width: 100%;
    min-width: 0;
    height: 182px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #eef4f9;
    border: 1px solid #d7dfe8;
    border-radius: 9px;
    text-align: center;
}

.ora-holding .company-card img {
    width: 120px;
    max-width: 82%;
    height: 62px;
    margin-bottom: 9px;
    object-fit: contain;
}

@media (max-width: 1100px) {
    .ora-holding .ora-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .ora-holding .company-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .ora-holding .company-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .ora-holding .company-grid {
        grid-template-columns: 1fr;
    }
}


/* =====================================================
   FINAL SHARED HEADER FIX
   One header/logo size for ALL pages
===================================================== */

.header {
    width: 100%;
    height: 86px;
    background: #ffffff;
    border-bottom: 1px solid #e1e7ee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .nav-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .logo {
    width: 300px;
    height: 82px;
    display: flex;
    align-items: center;
    overflow: hidden;
    flex: 0 0 300px;
}

.header .logo img {
    display: block;
    width: 345px;
    height: 88px;
    max-width: none;
    object-fit: contain;
    object-position: left center;
    transform: scale(1.22);
    transform-origin: left center;
}

.header .nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
}

.header .nav > a {
    padding: 9px 13px;
    font-size: 14px;
    font-weight: 500;
    color: #172943;
    border-radius: 7px;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}

.header .nav > a:hover,
.header .nav > a.active {
    background: #edf2f7;
}

.header .nav > a.contact-btn {
    margin-left: 10px;
    padding: 12px 20px;
    background: #071d3f;
    color: #ffffff;
    font-weight: 700;
}

.header .nav > a.contact-btn:hover {
    background: #0d2b57;
}

@media (max-width: 1050px) {
    .header {
        height: auto;
    }

    .header .nav-container {
        min-height: 86px;
        padding-top: 8px;
        padding-bottom: 8px;
        gap: 15px;
    }

    .header .logo {
        width: 250px;
        flex-basis: 250px;
    }

    .header .logo img {
        width: 290px;
    }

    .header .nav > a {
        padding-left: 8px;
        padding-right: 8px;
    }
}

@media (max-width: 850px) {
    .header .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .header .nav {
        width: 100%;
        flex-wrap: wrap;
        padding-bottom: 8px;
    }
}


/* =====================================================
   FINAL SHARED FOOTER FIX
===================================================== */

.footer {
    width: 100%;
    background: #0b254b;
    color: #ffffff;
}

.footer .footer-grid {
    max-width: 1240px;
    margin: 0 auto;
    padding: 64px 24px 58px;
    display: grid;
    grid-template-columns: 1.6fr 0.65fr 0.75fr;
    gap: 90px;
    align-items: start;
}

.footer .footer-company {
    max-width: 470px;
}

.footer .footer-company .footer-logo {
    display: block;
    width: 255px !important;
    max-width: 255px !important;
    height: 90px !important;
    object-fit: contain;
    object-position: left center;
    margin: 0 0 28px 0 !important;
}

.footer .footer-company p {
    max-width: 440px;
    margin: 0 0 16px;
    color: #dce6f3;
    font-size: 15px;
    line-height: 1.6;
}

.footer .footer-tagline {
    color: #91a9c9;
    font-size: 12px;
    letter-spacing: 1.3px;
}

.footer .footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer .footer-links a,
.footer .footer-contact p {
    color: #e3ebf5;
    font-size: 15px;
}

.footer .footer-links a {
    margin-bottom: 12px;
}

.footer .footer-contact p {
    margin: 0 0 14px;
}

.footer .footer-bottom {
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.footer .footer-bottom-inner {
    max-width: 1240px;
    min-height: 55px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer .footer-bottom-inner p {
    margin: 0;
    color: #91a9c9;
    font-size: 12px;
}

@media (max-width: 900px) {
    .footer .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }

    .footer .footer-company {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-top: 45px;
        padding-bottom: 40px;
    }

    .footer .footer-company {
        grid-column: auto;
    }

    .footer .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 18px;
        padding-bottom: 18px;
    }
}

/* =====================================================
   PROFESSIONAL FINAL LAYOUT OVERRIDES
   Shared alignment for all page heroes
===================================================== */

/* Keep all major page hero content aligned with the site container */
.contact-page-hero-content,
.ora-hero-content {
    width: min(1240px, calc(100% - 110px));
    margin-left: auto;
    margin-right: auto;
}

/* Balanced vertical spacing */
.contact-page-hero-content {
    padding-top: 72px;
    padding-bottom: 72px;
}

.ora-hero-content {
    padding-top: 85px;
    padding-bottom: 85px;
}

/* Prevent hero copy from stretching too wide */
.contact-page-hero h1,
.ora-hero h1 {
    max-width: 900px;
}

.contact-page-hero p,
.ora-hero p {
    max-width: 800px;
}

/* Consistent responsive side spacing */
@media (max-width: 768px) {
    .contact-page-hero-content,
    .ora-hero-content {
        width: calc(100% - 40px);
    }

    .contact-page-hero-content,
    .ora-hero-content {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .contact-page-hero-content,
    .ora-hero-content {
        width: calc(100% - 32px);
    }
}






/* =====================================================
   COST — PREMIUM INTERACTIONS
===================================================== */


/* Smooth page */
html {
    scroll-behavior: smooth;
}


/* =====================================================
   HEADER
===================================================== */

.header {
    transition:
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.header.header-scrolled {
    box-shadow: 0 8px 28px rgba(7, 31, 67, 0.10);
}


/* =====================================================
   NAVIGATION
===================================================== */

.nav > a {
    position: relative;

    transition:
        color 0.22s ease,
        background-color 0.22s ease,
        transform 0.22s ease;
}

.nav > a:not(.contact-btn):hover {
    transform: translateY(-1px);
}


/* =====================================================
   BUTTONS
===================================================== */

.contact-btn,
.contact-submit,
.hero a,
.cta a {
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        background-color 0.22s ease;
}

.contact-btn:hover,
.contact-submit:hover {
    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(7, 31, 67, 0.16);
}

.contact-btn:active,
.contact-submit:active {
    transform: translateY(0);
}


/* =====================================================
   CARDS
===================================================== */

.service-card,
.project-card,
.company-card,
.certification-card {
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;
}

.service-card:hover,
.project-card:hover,
.company-card:hover,
.certification-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 15px 35px rgba(7, 31, 67, 0.10);

    border-color: #c6d3e1;
}


/* Company logos */

.company-card img {
    transition: transform 0.3s ease;
}

.company-card:hover img {
    transform: scale(1.06);
}


/* =====================================================
   PROJECT / SERVICE IMAGES
===================================================== */

.project-card img,
.service-card img {
    transition: transform 0.5s ease;
}

.project-card:hover img,
.service-card:hover img {
    transform: scale(1.035);
}


/* =====================================================
   SCROLL REVEAL
===================================================== */

.js-reveal {
    opacity: 0;

    transform: translateY(22px);

    transition:
        opacity 0.65s ease var(--reveal-delay, 0ms),
        transform 0.65s ease var(--reveal-delay, 0ms);
}

.js-reveal.js-visible {
    opacity: 1;
    transform: translateY(0);
}


/* =====================================================
   CONTACT FORM
===================================================== */

.contact-form-card {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.contact-form-card:hover {
    box-shadow:
        0 14px 40px rgba(7, 31, 67, 0.08);
}

.contact-field input,
.contact-field textarea {
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.contact-field input:focus,
.contact-field textarea:focus {
    border-color: #0b2a55;

    box-shadow:
        0 0 0 3px rgba(11, 42, 85, 0.08);
}


/* =====================================================
   ACCESSIBILITY
===================================================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    .js-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .service-card,
    .project-card,
    .company-card,
    .certification-card,
    .contact-btn,
    .contact-submit {
        transition: none;
    }
}


.mobile-menu-btn {
    display: none;
}


/* TABLET + MOBILE */
@media (max-width: 850px) {

    body {
        overflow-x: hidden;
    }

    .container {
        width: calc(100% - 36px);
    }

    /* HEADER */
    .header {
        height: 76px !important;
        min-height: 76px !important;
        position: sticky;
        top: 0;
        z-index: 9999;
        background: #ffffff;
    }

    .header .nav-container {
        width: calc(100% - 36px);
        height: 76px !important;
        min-height: 76px !important;
        margin: 0 auto;

        padding: 0 !important;

        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;

        position: relative;
    }

    /* LOGO */
    .header .logo {
        width: 220px !important;
        height: 65px !important;
        flex: 0 1 220px !important;
        overflow: visible !important;
    }

    .header .logo img {
        width: 220px !important;
        height: 65px !important;
        max-width: 100% !important;
        object-fit: contain;
        object-position: left center;

        transform: none !important;
    }

    /* HAMBURGER */
    .mobile-menu-btn {
        width: 46px;
        height: 46px;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 6px;

        flex: 0 0 46px;

        border: 1px solid #e2e8f0;
        border-radius: 10px;

        background: #ffffff;

        cursor: pointer;

        position: relative;
        z-index: 10002;
    }

    .mobile-menu-btn span {
        display: block;

        width: 22px;
        height: 2px;

        border-radius: 10px;

        background: #071d3f;

        transition:
            transform 0.25s ease,
            opacity 0.25s ease;
    }

    /* MOBILE MENU */
    .header .nav {
        position: absolute;

        top: 76px;
        left: -18px;
        right: -18px;

        width: auto !important;

        padding: 18px;

        display: flex !important;
        flex-direction: column;
        align-items: stretch !important;

        gap: 4px !important;

        background: rgba(255, 255, 255, 0.98);

        border-top: 1px solid #e5eaf0;
        border-bottom: 1px solid #dce3eb;

        box-shadow: 0 22px 40px rgba(6, 28, 65, 0.12);

        backdrop-filter: blur(15px);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform: translateY(-12px);

        transition:
            opacity 0.25s ease,
            transform 0.25s ease,
            visibility 0.25s ease;
    }

    .header .nav.mobile-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform: translateY(0);
    }

    .header .nav > a {
        width: 100%;

        padding: 13px 15px !important;

        border-radius: 8px;

        font-size: 15px !important;
        font-weight: 500;

        color: #142844;

        white-space: normal !important;
    }

    .header .nav > a:hover,
    .header .nav > a.active {
        background: #edf3f8;
    }

    .header .nav .contact-btn {
        width: 100%;

        margin: 8px 0 0 !important;

        padding: 14px 16px !important;

        justify-content: center;

        text-align: center;

        background: #071d3f !important;

        color: #ffffff !important;
    }


    /* HAMBURGER -> X */

    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }


    /* HOME HERO */

    .hero {
        min-height: auto !important;

        padding: 55px 0 65px !important;

        background-position: 62% center !important;
    }

    .hero-content {
        width: 100%;
    }

    .hero-badge {
        width: fit-content;

        margin-bottom: 22px;

        padding: 7px 12px;

        font-size: 10px !important;
        line-height: 1.5;

        letter-spacing: 1.1px !important;
    }

    .hero h1 {
        max-width: 100%;

        margin-bottom: 22px;

        font-size: clamp(42px, 11vw, 58px) !important;

        line-height: 1 !important;

        letter-spacing: -2px !important;
    }

    .hero p {
        max-width: 100%;

        margin-bottom: 27px;

        font-size: 16px !important;

        line-height: 1.6 !important;
    }

    .hero-buttons {
        width: 100%;

        display: flex;
        flex-direction: column;

        gap: 10px;
    }

    .hero-buttons .btn {
        width: 100%;

        min-height: 52px;

        justify-content: center;
    }
}


/* SMALL PHONES */
@media (max-width: 480px) {

    .container {
        width: calc(100% - 30px);
    }

    .header .nav-container {
        width: calc(100% - 30px);
    }

    .header .logo {
        width: 195px !important;
        height: 60px !important;

        flex-basis: 195px !important;
    }

    .header .logo img {
        width: 195px !important;
        height: 60px !important;
    }

    .header .nav {
        left: -15px;
        right: -15px;
    }

    .hero {
        padding: 45px 0 55px !important;
    }

    .hero h1 {
        font-size: 43px !important;
        line-height: 0.99 !important;
    }

    .hero p {
        font-size: 15.5px !important;
    }
}

/* =========================================================
   COST HOMEPAGE — FINAL MOBILE RESPONSIVE FIX
   KEEP THIS AT THE VERY BOTTOM OF style.css
========================================================= */


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 850px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden !important;
    }

    body {
        min-width: 0;
    }

    .container {
        width: calc(100% - 36px) !important;
        max-width: none !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }


    /* =====================================================
       GENERAL MOBILE TYPOGRAPHY
    ===================================================== */

    .eyebrow {
        margin-bottom: 12px;
        font-size: 11px !important;
        line-height: 1.4;
        letter-spacing: 2.5px !important;
    }

    .section-heading h2,
    .projects-heading h2,
    .overview-title h2,
    .why-heading h2,
    .ora-info h2 {
        font-size: 34px !important;
        line-height: 1.08 !important;
        letter-spacing: -1px !important;
    }


    /* Remove desktop-forced line breaks */
    .overview-title h2 br,
    .projects-heading h2 br,
    .why-heading h2 br,
    .ora-info h2 br {
        display: none;
    }


    /* =====================================================
       HOME HERO
    ===================================================== */

    .hero {
        min-height: auto !important;
        padding: 52px 0 60px !important;
    }

    .hero-content {
        width: 100% !important;
    }

    .hero h1 {
        max-width: 100% !important;
        font-size: 46px !important;
        line-height: 1 !important;
        letter-spacing: -2px !important;
    }

    .hero p {
        max-width: 100% !important;
        font-size: 16px !important;
        line-height: 1.6 !important;
    }

    .hero-buttons {
        width: 100%;
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }


    /* =====================================================
       COMPANY OVERVIEW
    ===================================================== */

    .overview {
        padding: 60px 0 !important;
    }

    .overview-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 26px !important;
    }

    .overview-title,
    .overview-text {
        width: 100% !important;
        min-width: 0 !important;
    }

    .overview-title h2 {
        max-width: 100% !important;
        margin: 0 !important;

        font-size: 34px !important;
        line-height: 1.08 !important;
    }

    .overview-text p {
        width: 100% !important;
        max-width: 100% !important;

        margin: 0 !important;

        font-size: 16px !important;
        line-height: 1.65 !important;

        word-break: normal !important;
        overflow-wrap: normal !important;
    }


    /* =====================================================
       SERVICES
    ===================================================== */

    .services {
        padding: 60px 0 !important;
    }

    .section-heading-row {
        width: 100%;

        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;

        gap: 20px !important;

        margin-bottom: 35px !important;
    }

    .section-heading-row > div {
        width: 100% !important;
        min-width: 0 !important;
    }

    .section-heading h2 {
        margin-bottom: 14px !important;

        font-size: 34px !important;
        line-height: 1.08 !important;
    }

    .section-heading p {
        width: 100% !important;
        max-width: 100% !important;

        font-size: 16px !important;
        line-height: 1.6 !important;
    }

    .section-heading-row .text-link {
        display: inline-block;

        font-size: 14px !important;
    }

    .services-grid {
        width: 100% !important;

        display: grid !important;
        grid-template-columns: 1fr !important;

        gap: 20px !important;
    }

    .service-card {
        width: 100% !important;
        min-width: 0 !important;
    }

    .service-card > img,
    .service-card img {
        width: 100% !important;
        height: 230px !important;

        object-fit: cover;
    }

    .service-content {
        min-height: 0 !important;
        padding: 22px !important;
    }

    .service-content h3 {
        font-size: 20px !important;
        line-height: 1.3;
    }

    .service-content p {
        min-height: 0 !important;
        font-size: 15px !important;
        line-height: 1.55 !important;
    }


    /* =====================================================
       FEATURED PROJECTS
    ===================================================== */

    .projects {
        padding: 60px 0 !important;
    }

    .projects-heading {
        margin-bottom: 35px !important;
    }

    .projects-grid {
        width: 100% !important;

        display: grid !important;
        grid-template-columns: 1fr !important;

        gap: 20px !important;

        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .project-card {
        width: 100% !important;
        min-width: 0 !important;
    }

    .project-card > img {
        width: 100% !important;
        height: 240px !important;

        object-fit: cover;
    }

    .project-content {
        min-height: 0 !important;
        padding: 22px !important;
    }

    .project-content h3 {
        font-size: 19px !important;
    }

    .project-content p {
        font-size: 15px !important;
        line-height: 1.55 !important;
    }


    /* =====================================================
       WHY CHOOSE COST
    ===================================================== */

    .why-cost {
        padding: 60px 0 !important;
    }

    .why-heading {
        margin-bottom: 35px !important;
        text-align: left !important;
    }

    .why-heading h2 {
        max-width: 100% !important;

        font-size: 34px !important;
        line-height: 1.08 !important;

        text-align: left !important;
    }

    .features-grid {
        width: 100% !important;

        display: grid !important;
        grid-template-columns: 1fr 1fr !important;

        gap: 14px !important;
    }

    .feature-card {
        width: 100% !important;
        min-width: 0 !important;
        min-height: 175px !important;

        padding: 20px 16px !important;
    }

    .feature-icon {
        width: 44px !important;
        height: 44px !important;

        margin-bottom: 18px !important;
    }

    .feature-card h3 {
        font-size: 15px !important;
        line-height: 1.35 !important;

        overflow-wrap: break-word;
    }


    /* =====================================================
       MISSION / VISION
    ===================================================== */

    .mission-vision {
        padding: 60px 0 !important;
    }

    .mission-grid {
        width: 100% !important;

        display: grid !important;
        grid-template-columns: 1fr !important;

        gap: 18px !important;
    }

    .mission-card,
    .vision-card {
        width: 100% !important;
        min-width: 0 !important;
        min-height: 0 !important;

        padding: 28px 24px !important;
    }

    .mission-card h2,
    .vision-card h2 {
        font-size: 25px !important;
    }

    .mission-card p,
    .vision-card p {
        font-size: 15px !important;
        line-height: 1.65 !important;
    }


    /* =====================================================
       CERTIFICATIONS
    ===================================================== */

    .certifications {
        padding: 55px 0 !important;
    }

    .certification-grid {
        width: 100% !important;

        display: grid !important;

        /*
           Intro occupies full first row,
           3 certificates underneath.
        */
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;

        gap: 12px !important;
    }

    .certification-intro {
        grid-column: 1 / -1;

        margin-bottom: 12px;
    }

    .certification-intro h2 {
        font-size: 28px !important;
        line-height: 1.2 !important;
    }

    .iso-card {
        width: 100% !important;
        min-width: 0 !important;
        min-height: 110px !important;

        padding: 14px 8px !important;
    }

    .iso-card strong {
        font-size: 20px !important;
        line-height: 1.2;
        white-space: nowrap;
    }

    .iso-card span {
        font-size: 10px !important;
        letter-spacing: 0.7px !important;
    }


    /* =====================================================
       ORA HOLDING
    ===================================================== */

    .ora-holding {
        padding: 60px 0 !important;
    }

    .ora-holding .ora-grid,
    .ora-grid {
        width: 100% !important;

        display: grid !important;
        grid-template-columns: minmax(0, 1fr) !important;

        gap: 35px !important;
    }

    .ora-info {
        width: 100% !important;
        min-width: 0 !important;
    }

    .ora-info h2 {
        width: 100% !important;
        max-width: 100% !important;

        font-size: 34px !important;
        line-height: 1.08 !important;

        overflow-wrap: normal !important;
        word-break: normal !important;
    }

    .ora-info p {
        width: 100% !important;
        max-width: 100% !important;

        font-size: 16px !important;
        line-height: 1.6 !important;
    }

    .ora-holding .company-grid,
    .company-grid {
        width: 100% !important;

        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;

        gap: 12px !important;
    }

    .ora-holding .company-card,
    .company-card {
        width: 100% !important;
        min-width: 0 !important;
        height: 155px !important;

        padding: 16px 10px !important;
    }

    .company-card img,
    .ora-holding .company-card img {
        width: 100px !important;
        max-width: 80% !important;
        height: 55px !important;
    }


    /* =====================================================
       BOTTOM CTA
    ===================================================== */

    .cta {
        padding: 52px 0 !important;
    }

    .cta-container {
        width: calc(100% - 36px) !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;

        gap: 25px !important;
    }

    .cta h2 {
        font-size: 28px !important;
    }

    .cta p {
        width: 100% !important;
        max-width: 100% !important;

        font-size: 16px !important;
    }

    .cta-buttons {
        width: 100% !important;

        display: flex !important;
        flex-direction: column !important;

        gap: 10px !important;
    }

    .cta-buttons .btn {
        width: 100% !important;
    }


    /* =====================================================
       FOOTER
    ===================================================== */

    .footer .footer-grid,
    .footer-grid {
        width: calc(100% - 36px) !important;

        display: grid !important;
        grid-template-columns: 1fr !important;

        gap: 32px !important;

        padding: 45px 0 38px !important;
    }

    .footer-company {
        width: 100% !important;
        max-width: 100% !important;
    }

    .footer .footer-company .footer-logo,
    .footer-company .footer-logo {
        width: 220px !important;
        max-width: 75% !important;
        height: auto !important;
    }

    .footer-bottom-inner {
        width: calc(100% - 36px) !important;

        flex-direction: column !important;
        align-items: flex-start !important;

        gap: 8px !important;

        padding: 18px 0 !important;
    }

}


/* =========================================================
   SMALL iPHONE / SMALL ANDROID
========================================================= */

@media (max-width: 480px) {

    .container {
        width: calc(100% - 30px) !important;
    }


    /* TYPOGRAPHY */

    .section-heading h2,
    .projects-heading h2,
    .overview-title h2,
    .why-heading h2,
    .ora-info h2 {
        font-size: 30px !important;
    }


    /* HERO */

    .hero h1 {
        font-size: 42px !important;
    }


    /* OVERVIEW */

    .overview {
        padding: 50px 0 !important;
    }

    .overview-grid {
        gap: 22px !important;
    }

    .overview-text p {
        font-size: 15.5px !important;
    }


    /* SERVICES */

    .services {
        padding: 50px 0 !important;
    }

    .service-card > img,
    .service-card img {
        height: 205px !important;
    }


    /* PROJECTS */

    .projects {
        padding: 50px 0 !important;
    }

    .project-card > img {
        height: 215px !important;
    }


    /* WHY COST */

    .why-cost {
        padding: 50px 0 !important;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
    }

    .feature-card {
        min-height: 160px !important;
        padding: 18px 13px !important;
    }

    .feature-card h3 {
        font-size: 14px !important;
    }


    /* CERTIFICATION */

    .certification-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .certification-intro {
        grid-column: auto;
        margin-bottom: 10px;
    }

    .iso-card {
        min-height: 95px !important;
    }

    .iso-card strong {
        font-size: 23px !important;
    }


    /* ORA */

    .ora-holding {
        padding: 50px 0 !important;
    }

    .ora-info h2 {
        font-size: 30px !important;
    }

    .ora-holding .company-grid,
    .company-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .ora-holding .company-card,
    .company-card {
        height: 145px !important;
    }


    /* CTA */

    .cta-container {
        width: calc(100% - 30px) !important;
    }


    /* FOOTER */

    .footer .footer-grid,
    .footer-grid,
    .footer-bottom-inner {
        width: calc(100% - 30px) !important;
    }

}