/* ==================================================
   EZOKWAKHA CONSTRUCTION & SUPPLY
   MAIN STYLESHEET
================================================== */


/* ==================================================
   RESET
================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: Arial, Helvetica, sans-serif;

    color: #172a3a;

    background: #ffffff;

    line-height: 1.6;
}


a {
    text-decoration: none;

    color: inherit;
}


img {
    max-width: 100%;

    display: block;
}


.container {
    width: 84%;

    max-width: 1250px;

    margin: 0 auto;
}


/* ==================================================
   NAVBAR
================================================== */

.navbar {

    width: 100%;

    height: 85px;

    display: flex;

    align-items: center;

    padding: 0 6%;

    background: #ffffff;

    position: fixed;

    top: 0;

    left: 0;

    z-index: 1000;

    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}


/* LOGO */

.logo {

    display: flex;

    align-items: center;
}


.logo img {

    width: 130px;

    height: auto;

    display: block;
}


/* NAVIGATION */

.navbar nav {

    display: flex;

    align-items: center;

    gap: 35px;

    margin-left: auto;

    margin-right: 35px;
}


.navbar nav a {

    font-size: 14px;

    font-weight: 700;

    color: #172a3a;

    transition: all 0.3s ease;
}


.navbar nav a:hover {

    color: #d5a52c;
}


/* NAV BUTTON */

.nav-button {

    background: #d5a52c;

    color: #172a3a;

    padding: 12px 22px;

    font-size: 13px;

    font-weight: 800;

    transition: all 0.3s ease;
}


.nav-button:hover {

    background: #172a3a;

    color: #ffffff;
}


/* ==================================================
   HERO
================================================== */

.hero {

    min-height: 100vh;

    position: relative;

    display: flex;

    align-items: center;

    overflow: hidden;

    padding: 120px 8% 80px;

    background: #f3c62f;
}


/* DARK BLUE RIGHT PANEL */

.hero::before {

    content: "";

    position: absolute;

    top: 0;

    right: 0;

    width: 42%;

    height: 100%;

    background: #172a3a;

    clip-path: polygon(
        22% 0,
        100% 0,
        100% 100%,
        0 100%
    );
}


/* ==================================================
   HERO DECORATIVE SHAPES
================================================== */

.hero-shape {

    position: absolute;

    border: 2px solid rgba(23, 42, 58, 0.15);

    transform: rotate(45deg);

    pointer-events: none;
}


.hero-shape-one {

    width: 260px;

    height: 260px;

    right: 19%;

    top: 12%;
}


.hero-shape-two {

    width: 150px;

    height: 150px;

    right: 8%;

    bottom: 12%;
}


/* ==================================================
   HERO CONTENT
================================================== */

.hero-content {

    position: relative;

    z-index: 5;

    max-width: 700px;
}


/* SMALL LABEL */

.hero-small {

    color: #172a3a;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 22px;
}


/* MAIN HEADING */

.hero h1 {

    font-size: clamp(
        65px,
        9vw,
        125px
    );

    line-height: 0.88;

    letter-spacing: -5px;

    text-transform: uppercase;

    color: #172a3a;

    margin-bottom: 30px;

    font-weight: 900;
}


/* WHITE WORD */

.hero h1 span {

    color: #ffffff;
}


/* HERO DESCRIPTION */

.hero-text {

    max-width: 540px;

    font-size: 18px;

    line-height: 1.7;

    color: #172a3a;

    margin-bottom: 35px;

    font-weight: 500;
}


/* ==================================================
   HERO BUTTONS
================================================== */

.hero-buttons {

    display: flex;

    gap: 14px;

    flex-wrap: wrap;
}


.button {

    display: inline-block;

    padding: 15px 28px;

    font-size: 12px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    transition: all 0.3s ease;
}


/* PRIMARY */

.button.primary {

    background: #172a3a;

    color: #ffffff;
}


.button.primary:hover {

    background: #ffffff;

    color: #172a3a;

    transform: translateY(-2px);
}


/* SECONDARY */

.button.secondary {

    border: 2px solid #172a3a;

    color: #172a3a;
}


.button.secondary:hover {

    background: #172a3a;

    color: #ffffff;

    transform: translateY(-2px);
}


/* ==================================================
   HERO SIDE CARDS
================================================== */

.hero-side {

    position: absolute;

    z-index: 6;

    right: 7%;

    top: 50%;

    transform: translateY(-50%);

    width: 260px;
}


.hero-card {

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 22px 0;

    border-bottom: 1px solid rgba(
        255,
        255,
        255,
        0.25
    );

    color: #ffffff;
}


.hero-card span {

    font-size: 12px;

    color: #f3c62f;

    font-weight: 800;
}


.hero-card p {

    font-size: 24px;

    font-weight: 700;

    letter-spacing: -0.5px;
}


/* ==================================================
   ABOUT SECTION
================================================== */

.about {

    padding: 120px 0;

    background: #ffffff;
}


.about .container {

    display: grid;

    grid-template-columns: 0.7fr 2fr;

    gap: 80px;

    align-items: start;
}


.about .container > p {

    color: #d5a52c;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 3px;

    padding-top: 12px;
}


.about h2 {

    max-width: 850px;

    font-size: clamp(
        42px,
        6vw,
        75px
    );

    line-height: 1;

    letter-spacing: -3px;

    color: #172a3a;

    font-weight: 900;
}


/* ==================================================
   SERVICES SECTION
================================================== */

.services {

    padding: 110px 0;

    background: #f4f4f1;
}


.services .container > p {

    color: #d5a52c;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 15px;
}


.services h2 {

    font-size: clamp(
        45px,
        6vw,
        75px
    );

    line-height: 1;

    letter-spacing: -3px;

    color: #172a3a;

    font-weight: 900;

    margin-bottom: 60px;
}


/* SERVICE GRID */

.service-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}


/* SERVICE CARD */

.service-card {

    position: relative;

    min-height: 330px;

    padding: 40px;

    background: #ffffff;

    border-top: 5px solid #d5a52c;

    transition: all 0.35s ease;

    overflow: hidden;
}


.service-card::after {

    content: "";

    position: absolute;

    width: 100px;

    height: 100px;

    right: -40px;

    bottom: -40px;

    border: 20px solid #f3c62f;

    transform: rotate(45deg);

    opacity: 0.35;
}


.service-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 20px 40px
        rgba(23, 42, 58, 0.12);
}


.service-card span {

    display: block;

    color: #d5a52c;

    font-size: 13px;

    font-weight: 800;

    margin-bottom: 70px;
}


.service-card h3 {

    font-size: 27px;

    line-height: 1.1;

    color: #172a3a;

    margin-bottom: 18px;

    font-weight: 800;
}


.service-card p {

    font-size: 15px;

    line-height: 1.7;

    color: #555;

    max-width: 320px;
}


/* ==================================================
   CONTACT SECTION
================================================== */

.contact {

    position: relative;

    overflow: hidden;

    padding: 120px 0;

    background: #172a3a;

    color: #ffffff;
}


/* YELLOW DECORATION */

.contact::after {

    content: "";

    position: absolute;

    width: 400px;

    height: 400px;

    right: -150px;

    top: -150px;

    background: #f3c62f;

    transform: rotate(45deg);

    opacity: 0.9;
}


.contact .container {

    position: relative;

    z-index: 2;
}


.contact .container > p {

    color: #f3c62f;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 20px;
}


.contact h2 {

    max-width: 800px;

    font-size: clamp(
        45px,
        7vw,
        85px
    );

    line-height: 0.95;

    letter-spacing: -4px;

    font-weight: 900;

    margin-bottom: 45px;
}


/* CONTACT BUTTONS */

.contact .button {

    margin-right: 10px;

    margin-bottom: 10px;
}


.contact .button.primary {

    background: #f3c62f;

    color: #172a3a;
}


.contact .button.primary:hover {

    background: #ffffff;

    color: #172a3a;
}


.contact .button.secondary {

    border-color: #ffffff;

    color: #ffffff;
}


.contact .button.secondary:hover {

    background: #ffffff;

    color: #172a3a;
}


/* ==================================================
   FOOTER
================================================== */

footer {

    background: #0f1d28;

    color: rgba(
        255,
        255,
        255,
        0.65
    );

    padding: 28px 0;
}


footer .container {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;
}


footer p {

    font-size: 13px;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 900px) {


    /* NAV */

    .navbar nav {

        gap: 20px;

        margin-right: 20px;
    }


    .logo img {

        width: 190px;
    }


    .nav-button {

        padding: 10px 16px;

        font-size: 11px;
    }


    /* HERO */

    .hero::before {

        width: 45%;
    }


    .hero-side {

        right: 5%;

        width: 210px;
    }


    .hero-card p {

        font-size: 20px;
    }


    /* ABOUT */

    .about .container {

        grid-template-columns: 1fr;

        gap: 20px;
    }


    /* SERVICES */

    .service-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 768px) {


    .container {

        width: 88%;
    }


    /* NAVBAR */

    .navbar {

        height: 75px;

        padding: 0 5%;
    }


    .logo img {

        width: 175px;
    }


    .navbar nav {

        display: none;
    }


    .nav-button {

        margin-left: auto;

        padding: 10px 14px;

        font-size: 10px;
    }


    /* HERO */

    .hero {

        min-height: 850px;

        padding: 130px 7% 80px;

        align-items: flex-start;
    }


    .hero::before {

        width: 100%;

        height: 38%;

        top: auto;

        bottom: 0;

        clip-path: polygon(
            0 25%,
            100% 0,
            100% 100%,
            0 100%
        );
    }


    .hero h1 {

        font-size: 65px;

        letter-spacing: -3px;
    }


    .hero-text {

        font-size: 16px;

        max-width: 480px;
    }


    /* HERO SIDE */

    .hero-side {

        top: auto;

        bottom: 35px;

        left: 7%;

        right: 7%;

        transform: none;

        width: auto;

        display: flex;

        gap: 20px;
    }


    .hero-card {

        flex: 1;

        border-bottom: none;

        padding: 10px 0;

        display: block;
    }


    .hero-card span {

        display: block;

        margin-bottom: 8px;
    }


    .hero-card p {

        font-size: 18px;
    }


    /* ABOUT */

    .about {

        padding: 85px 0;
    }


    .about h2 {

        font-size: 48px;

        letter-spacing: -2px;
    }


    /* SERVICES */

    .services {

        padding: 85px 0;
    }


    .services h2 {

        font-size: 50px;

        margin-bottom: 40px;
    }


    .service-grid {

        grid-template-columns: 1fr;

        gap: 15px;
    }


    .service-card {

        min-height: 290px;

        padding: 30px;
    }


    .service-card span {

        margin-bottom: 55px;
    }


    /* CONTACT */

    .contact {

        padding: 90px 0;
    }


    .contact h2 {

        font-size: 52px;

        letter-spacing: -2px;
    }


    /* FOOTER */

    footer .container {

        flex-direction: column;

        align-items: flex-start;
    }

}


/* ==================================================
   SMALL PHONES
================================================== */

@media (max-width: 480px) {


    /* NAV */

    .logo img {

        width: 150px;
    }


    .nav-button {

        padding: 9px 11px;

        font-size: 9px;
    }


    /* HERO */

    .hero {

        min-height: 820px;

        padding-top: 120px;
    }


    .hero h1 {

        font-size: 55px;

        letter-spacing: -2px;
    }


    .hero-small {

        font-size: 9px;

        letter-spacing: 2px;
    }


    .hero-text {

        font-size: 15px;

        line-height: 1.6;
    }


    .hero-buttons {

        flex-direction: column;

        align-items: flex-start;
    }


    .hero-side {

        gap: 10px;
    }


    .hero-card p {

        font-size: 15px;
    }


    /* ABOUT */

    .about h2 {

        font-size: 42px;
    }


    /* SERVICES */

    .services h2 {

        font-size: 44px;
    }


    .service-card h3 {

        font-size: 24px;
    }


    /* CONTACT */

    .contact h2 {

        font-size: 44px;
    }


    .contact .button {

        width: 100%;

        text-align: center;

        margin-right: 0;
    }

}


/* ==================================================
   ABOUT PAGE
================================================== */


/* ==================================================
   ABOUT HERO
================================================== */

.about-hero {

    min-height: 620px;

    margin-top: 85px;

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    padding: 80px 8%;

    background: #f3c62f;

    color: #172a3a;
}


/* NAVY DIAGONAL */

.about-hero::before {

    content: "";

    position: absolute;

    top: 0;

    right: 0;

    width: 43%;

    height: 100%;

    background: #172a3a;

    clip-path:
        polygon(
            28% 0,
            100% 0,
            100% 100%,
            0 100%
        );
}


/* LARGE NUMBER */

.about-hero-number {

    position: absolute;

    right: 32%;

    bottom: -35px;

    font-size: 260px;

    line-height: 1;

    font-weight: 900;

    color: rgba(255,255,255,0.08);

    z-index: 1;
}


/* HERO CONTENT */

.about-hero-content {

    position: relative;

    z-index: 5;

    max-width: 700px;
}


.page-label {

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 22px;

    color: #172a3a;
}


.about-hero h1 {

    font-size: clamp(
        70px,
        10vw,
        140px
    );

    line-height: 0.85;

    letter-spacing: -6px;

    font-weight: 900;

    text-transform: uppercase;
}


.about-hero h1 span {

    color: #ffffff;
}


/* RIGHT TEXT */

.about-hero-side {

    position: absolute;

    right: 8%;

    top: 50%;

    transform: translateY(-50%);

    z-index: 5;

    width: 220px;
}


.about-hero-side p {

    color: #ffffff;

    font-size: 15px;

    line-height: 1.7;

    font-weight: 600;

    border-left: 3px solid #f3c62f;

    padding-left: 20px;
}


/* ==================================================
   ABOUT INTRODUCTION
================================================== */

.about-introduction {

    display: grid;

    grid-template-columns: 0.5fr 1.5fr;

    gap: 70px;

    padding: 130px 8%;

    background: #ffffff;
}


.about-intro-label {

    padding-top: 10px;
}


.about-intro-label span {

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;

    color: #d5a52c;
}


.about-intro-content {

    max-width: 850px;
}


.about-intro-content h2 {

    font-size: clamp(
        45px,
        6vw,
        78px
    );

    line-height: 0.95;

    letter-spacing: -4px;

    color: #172a3a;

    font-weight: 900;

    margin-bottom: 40px;
}


.about-intro-content h2 span {

    color: #d5a52c;
}


.about-intro-content p {

    max-width: 720px;

    color: #555555;

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 20px;
}


/* ==================================================
   ABOUT FOCUS
================================================== */

.about-focus {

    padding: 120px 8%;

    background: #f4f4f1;
}


.about-focus-header {

    max-width: 900px;

    margin-bottom: 70px;
}


.about-focus-header p {

    color: #d5a52c;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 18px;
}


.about-focus-header h2 {

    font-size: clamp(
        48px,
        6vw,
        78px
    );

    line-height: 0.95;

    letter-spacing: -4px;

    color: #172a3a;

    font-weight: 900;
}


.about-focus-header h2 span {

    color: #d5a52c;
}


/* FOCUS GRID */

.about-focus-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    max-width: 1250px;
}


.focus-item {

    min-height: 300px;

    padding: 35px;

    background: #ffffff;

    border-top: 4px solid #172a3a;

    position: relative;

    transition: 0.3s ease;
}


.focus-item:hover {

    transform: translateY(-7px);

    border-top-color: #d5a52c;

    box-shadow:
        0 20px 40px
        rgba(23,42,58,0.10);
}


.focus-item span {

    display: block;

    color: #d5a52c;

    font-size: 12px;

    font-weight: 800;

    margin-bottom: 65px;
}


.focus-item h3 {

    font-size: 27px;

    line-height: 1.1;

    color: #172a3a;

    margin-bottom: 18px;

    font-weight: 800;
}


.focus-item p {

    color: #666666;

    font-size: 15px;

    line-height: 1.7;
}


/* ==================================================
   COMPANY DETAILS
================================================== */

.company-details {

    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 100px;

    padding: 130px 8%;

    background: #ffffff;
}


.company-details-left p {

    color: #d5a52c;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 18px;
}


.company-details-left h2 {

    font-size: clamp(
        48px,
        6vw,
        75px
    );

    line-height: 0.95;

    letter-spacing: -4px;

    color: #172a3a;

    font-weight: 900;
}


.company-details-left h2 span {

    color: #d5a52c;
}


/* DETAILS */

.company-details-right {

    border-top: 2px solid #172a3a;
}


.detail-row {

    display: grid;

    grid-template-columns: 0.7fr 1.3fr;

    gap: 30px;

    padding: 25px 0;

    border-bottom: 1px solid #dddddd;
}


.detail-row span {

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    color: #888888;
}


.detail-row strong {

    font-size: 15px;

    line-height: 1.5;

    color: #172a3a;

    font-weight: 700;
}


/* ==================================================
   ABOUT CTA
================================================== */

.about-cta {

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;

    padding: 100px 8%;

    background: #172a3a;

    color: #ffffff;
}


/* YELLOW SHAPE */

.about-cta::after {

    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    right: -110px;

    bottom: -120px;

    background: #f3c62f;

    transform: rotate(45deg);
}


.about-cta > div {

    position: relative;

    z-index: 2;
}


.about-cta p {

    color: #f3c62f;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 20px;
}


.about-cta h2 {

    font-size: clamp(
        45px,
        6vw,
        75px
    );

    line-height: 0.95;

    letter-spacing: -4px;

    font-weight: 900;
}


/* CTA BUTTON */

.about-cta-button {

    position: relative;

    z-index: 3;

    flex-shrink: 0;

    padding: 17px 30px;

    background: #f3c62f;

    color: #172a3a;

    font-size: 12px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    transition: 0.3s ease;
}


.about-cta-button:hover {

    background: #ffffff;

    transform: translateY(-3px);
}


/* ==================================================
   ABOUT PAGE - TABLET
================================================== */

@media (max-width: 900px) {

    .about-hero {

        min-height: 560px;
    }


    .about-hero-side {

        right: 6%;

        width: 180px;
    }


    .about-introduction {

        grid-template-columns: 1fr;

        gap: 25px;
    }


    .about-focus-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .company-details {

        grid-template-columns: 1fr;

        gap: 60px;
    }

}


/* ==================================================
   ABOUT PAGE - MOBILE
================================================== */

@media (max-width: 768px) {

    .about-hero {

        min-height: 650px;

        margin-top: 75px;

        padding: 100px 7% 80px;

        align-items: flex-start;
    }


    .about-hero::before {

        width: 100%;

        height: 40%;

        top: auto;

        bottom: 0;

        clip-path:
            polygon(
                0 25%,
                100% 0,
                100% 100%,
                0 100%
            );
    }


    .about-hero-number {

        font-size: 180px;

        right: 5%;

        bottom: 80px;
    }


    .about-hero h1 {

        font-size: 70px;

        letter-spacing: -3px;
    }


    .page-label {

        font-size: 10px;

        letter-spacing: 2px;
    }


    .about-hero-side {

        left: 7%;

        right: auto;

        top: auto;

        bottom: 45px;

        transform: none;

        width: 220px;
    }


    .about-introduction {

        display: block;

        padding: 90px 7%;
    }


    .about-intro-label {

        margin-bottom: 25px;
    }


    .about-intro-content h2 {

        font-size: 48px;

        letter-spacing: -2px;

        margin-bottom: 30px;
    }


    .about-intro-content p {

        font-size: 15px;
    }


    .about-focus {

        padding: 90px 7%;
    }


    .about-focus-header {

        margin-bottom: 45px;
    }


    .about-focus-header h2 {

        font-size: 50px;

        letter-spacing: -2px;
    }


    .about-focus-grid {

        grid-template-columns: 1fr;

        gap: 15px;
    }


    .focus-item {

        min-height: 270px;

        padding: 30px;
    }


    .focus-item span {

        margin-bottom: 55px;
    }


    .company-details {

        display: block;

        padding: 90px 7%;
    }


    .company-details-left {

        margin-bottom: 50px;
    }


    .company-details-left h2 {

        font-size: 50px;

        letter-spacing: -2px;
    }


    .detail-row {

        grid-template-columns: 1fr;

        gap: 8px;
    }


    .about-cta {

        display: block;

        padding: 90px 7%;
    }


    .about-cta h2 {

        font-size: 50px;

        letter-spacing: -2px;

        margin-bottom: 40px;
    }


    .about-cta-button {

        display: inline-block;
    }

}


/* ==================================================
   ABOUT PAGE - SMALL PHONES
================================================== */

@media (max-width: 480px) {

    .about-hero h1 {

        font-size: 58px;
    }


    .about-hero-number {

        font-size: 140px;

        bottom: 100px;
    }


    .about-intro-content h2 {

        font-size: 42px;
    }


    .about-focus-header h2 {

        font-size: 43px;
    }


    .company-details-left h2 {

        font-size: 43px;
    }


    .about-cta h2 {

        font-size: 43px;
    }
}

/* ==================================================
   ABOUT PAGE
================================================== */


/* ==================================================
   ABOUT HERO
================================================== */

.about-hero {

    min-height: 620px;

    margin-top: 85px;

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    padding: 80px 8%;

    background: #f3c62f;

    color: #172a3a;
}


/* NAVY DIAGONAL */

.about-hero::before {

    content: "";

    position: absolute;

    top: 0;

    right: 0;

    width: 43%;

    height: 100%;

    background: #172a3a;

    clip-path:
        polygon(
            28% 0,
            100% 0,
            100% 100%,
            0 100%
        );
}


/* LARGE NUMBER */

.about-hero-number {

    position: absolute;

    right: 32%;

    bottom: -35px;

    font-size: 260px;

    line-height: 1;

    font-weight: 900;

    color: rgba(255,255,255,0.08);

    z-index: 1;
}


/* HERO CONTENT */

.about-hero-content {

    position: relative;

    z-index: 5;

    max-width: 700px;
}


.page-label {

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 22px;

    color: #172a3a;
}


.about-hero h1 {

    font-size: clamp(
        70px,
        10vw,
        140px
    );

    line-height: 0.85;

    letter-spacing: -6px;

    font-weight: 900;

    text-transform: uppercase;
}


.about-hero h1 span {

    color: #ffffff;
}


/* RIGHT TEXT */

.about-hero-side {

    position: absolute;

    right: 8%;

    top: 50%;

    transform: translateY(-50%);

    z-index: 5;

    width: 220px;
}


.about-hero-side p {

    color: #ffffff;

    font-size: 15px;

    line-height: 1.7;

    font-weight: 600;

    border-left: 3px solid #f3c62f;

    padding-left: 20px;
}


/* ==================================================
   ABOUT INTRODUCTION
================================================== */

.about-introduction {

    display: grid;

    grid-template-columns: 0.5fr 1.5fr;

    gap: 70px;

    padding: 130px 8%;

    background: #ffffff;
}


.about-intro-label {

    padding-top: 10px;
}


.about-intro-label span {

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;

    color: #d5a52c;
}


.about-intro-content {

    max-width: 850px;
}


.about-intro-content h2 {

    font-size: clamp(
        45px,
        6vw,
        78px
    );

    line-height: 0.95;

    letter-spacing: -4px;

    color: #172a3a;

    font-weight: 900;

    margin-bottom: 40px;
}


.about-intro-content h2 span {

    color: #d5a52c;
}


.about-intro-content p {

    max-width: 720px;

    color: #555555;

    font-size: 17px;

    line-height: 1.8;

    margin-bottom: 20px;
}


/* ==================================================
   ABOUT FOCUS
================================================== */

.about-focus {

    padding: 120px 8%;

    background: #f4f4f1;
}


.about-focus-header {

    max-width: 900px;

    margin-bottom: 70px;
}


.about-focus-header p {

    color: #d5a52c;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 18px;
}


.about-focus-header h2 {

    font-size: clamp(
        48px,
        6vw,
        78px
    );

    line-height: 0.95;

    letter-spacing: -4px;

    color: #172a3a;

    font-weight: 900;
}


.about-focus-header h2 span {

    color: #d5a52c;
}


/* FOCUS GRID */

.about-focus-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    max-width: 1250px;
}


.focus-item {

    min-height: 300px;

    padding: 35px;

    background: #ffffff;

    border-top: 4px solid #172a3a;

    position: relative;

    transition: 0.3s ease;
}


.focus-item:hover {

    transform: translateY(-7px);

    border-top-color: #d5a52c;

    box-shadow:
        0 20px 40px
        rgba(23,42,58,0.10);
}


.focus-item span {

    display: block;

    color: #d5a52c;

    font-size: 12px;

    font-weight: 800;

    margin-bottom: 65px;
}


.focus-item h3 {

    font-size: 27px;

    line-height: 1.1;

    color: #172a3a;

    margin-bottom: 18px;

    font-weight: 800;
}


.focus-item p {

    color: #666666;

    font-size: 15px;

    line-height: 1.7;
}


/* ==================================================
   COMPANY DETAILS
================================================== */

.company-details {

    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 100px;

    padding: 130px 8%;

    background: #ffffff;
}


.company-details-left p {

    color: #d5a52c;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 18px;
}


.company-details-left h2 {

    font-size: clamp(
        48px,
        6vw,
        75px
    );

    line-height: 0.95;

    letter-spacing: -4px;

    color: #172a3a;

    font-weight: 900;
}


.company-details-left h2 span {

    color: #d5a52c;
}


/* DETAILS */

.company-details-right {

    border-top: 2px solid #172a3a;
}


.detail-row {

    display: grid;

    grid-template-columns: 0.7fr 1.3fr;

    gap: 30px;

    padding: 25px 0;

    border-bottom: 1px solid #dddddd;
}


.detail-row span {

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    color: #888888;
}


.detail-row strong {

    font-size: 15px;

    line-height: 1.5;

    color: #172a3a;

    font-weight: 700;
}


/* ==================================================
   ABOUT CTA
================================================== */

.about-cta {

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;

    padding: 100px 8%;

    background: #172a3a;

    color: #ffffff;
}


/* YELLOW SHAPE */

.about-cta::after {

    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    right: -110px;

    bottom: -120px;

    background: #f3c62f;

    transform: rotate(45deg);
}


.about-cta > div {

    position: relative;

    z-index: 2;
}


.about-cta p {

    color: #f3c62f;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 20px;
}


.about-cta h2 {

    font-size: clamp(
        45px,
        6vw,
        75px
    );

    line-height: 0.95;

    letter-spacing: -4px;

    font-weight: 900;
}


/* CTA BUTTON */

.about-cta-button {

    position: relative;

    z-index: 3;

    flex-shrink: 0;

    padding: 17px 30px;

    background: #f3c62f;

    color: #172a3a;

    font-size: 12px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    transition: 0.3s ease;
}


.about-cta-button:hover {

    background: #ffffff;

    transform: translateY(-3px);
}


/* ==================================================
   ABOUT PAGE - TABLET
================================================== */

@media (max-width: 900px) {

    .about-hero {

        min-height: 560px;
    }


    .about-hero-side {

        right: 6%;

        width: 180px;
    }


    .about-introduction {

        grid-template-columns: 1fr;

        gap: 25px;
    }


    .about-focus-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .company-details {

        grid-template-columns: 1fr;

        gap: 60px;
    }

}


/* ==================================================
   ABOUT PAGE - MOBILE
================================================== */

@media (max-width: 768px) {

    .about-hero {

        min-height: 650px;

        margin-top: 75px;

        padding: 100px 7% 80px;

        align-items: flex-start;
    }


    .about-hero::before {

        width: 100%;

        height: 40%;

        top: auto;

        bottom: 0;

        clip-path:
            polygon(
                0 25%,
                100% 0,
                100% 100%,
                0 100%
            );
    }


    .about-hero-number {

        font-size: 180px;

        right: 5%;

        bottom: 80px;
    }


    .about-hero h1 {

        font-size: 70px;

        letter-spacing: -3px;
    }


    .page-label {

        font-size: 10px;

        letter-spacing: 2px;
    }


    .about-hero-side {

        left: 7%;

        right: auto;

        top: auto;

        bottom: 45px;

        transform: none;

        width: 220px;
    }


    .about-introduction {

        display: block;

        padding: 90px 7%;
    }


    .about-intro-label {

        margin-bottom: 25px;
    }


    .about-intro-content h2 {

        font-size: 48px;

        letter-spacing: -2px;

        margin-bottom: 30px;
    }


    .about-intro-content p {

        font-size: 15px;
    }


    .about-focus {

        padding: 90px 7%;
    }


    .about-focus-header {

        margin-bottom: 45px;
    }


    .about-focus-header h2 {

        font-size: 50px;

        letter-spacing: -2px;
    }


    .about-focus-grid {

        grid-template-columns: 1fr;

        gap: 15px;
    }


    .focus-item {

        min-height: 270px;

        padding: 30px;
    }


    .focus-item span {

        margin-bottom: 55px;
    }


    .company-details {

        display: block;

        padding: 90px 7%;
    }


    .company-details-left {

        margin-bottom: 50px;
    }


    .company-details-left h2 {

        font-size: 50px;

        letter-spacing: -2px;
    }


    .detail-row {

        grid-template-columns: 1fr;

        gap: 8px;
    }


    .about-cta {

        display: block;

        padding: 90px 7%;
    }


    .about-cta h2 {

        font-size: 50px;

        letter-spacing: -2px;

        margin-bottom: 40px;
    }


    .about-cta-button {

        display: inline-block;
    }

}


/* ==================================================
   ABOUT PAGE - SMALL PHONES
================================================== */

@media (max-width: 480px) {

    .about-hero h1 {

        font-size: 58px;
    }


    .about-hero-number {

        font-size: 140px;

        bottom: 100px;
    }


    .about-intro-content h2 {

        font-size: 42px;
    }


    .about-focus-header h2 {

        font-size: 43px;
    }


    .company-details-left h2 {

        font-size: 43px;
    }


    .about-cta h2 {

        font-size: 43px;
    }

}

/* ==================================================
   HOW WE WORK PAGE
================================================== */


/* ==================================================
   PROCESS HERO
================================================== */

.process-hero {

    min-height: 620px;

    margin-top: 85px;

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    padding: 80px 8%;

    background: #172a3a;

    color: #ffffff;
}


.process-hero::after {

    content: "";

    position: absolute;

    right: -100px;

    top: -100px;

    width: 420px;

    height: 420px;

    background: #f3c62f;

    transform: rotate(45deg);
}


.process-hero-number {

    position: absolute;

    right: 31%;

    bottom: -40px;

    font-size: 260px;

    line-height: 1;

    font-weight: 900;

    color: rgba(255,255,255,0.04);
}


.process-hero-content {

    position: relative;

    z-index: 5;

    max-width: 850px;
}


.process-hero .page-label {

    color: #f3c62f;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 22px;
}


.process-hero h1 {

    font-size: clamp(
        60px,
        8vw,
        115px
    );

    line-height: 0.88;

    letter-spacing: -5px;

    font-weight: 900;
}


.process-hero h1 span {

    color: #f3c62f;
}


.process-hero-side {

    position: absolute;

    right: 8%;

    bottom: 70px;

    z-index: 5;

    width: 210px;
}


.process-hero-side p {

    border-left: 3px solid #f3c62f;

    padding-left: 18px;

    color: #ffffff;

    font-size: 15px;

    line-height: 1.7;

    font-weight: 600;
}


/* ==================================================
   PROCESS INTRO
================================================== */

.process-intro {

    display: grid;

    grid-template-columns: 0.5fr 1.5fr;

    gap: 70px;

    padding: 130px 8%;

    background: #ffffff;
}


.process-intro-label {

    padding-top: 10px;
}


.process-intro-label span {

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;

    color: #d5a52c;
}


.process-intro-content {

    max-width: 850px;
}


.process-intro-content h2 {

    font-size: clamp(
        45px,
        6vw,
        78px
    );

    line-height: 0.95;

    letter-spacing: -4px;

    color: #172a3a;

    font-weight: 900;

    margin-bottom: 40px;
}


.process-intro-content h2 span {

    color: #d5a52c;
}


.process-intro-content p {

    max-width: 700px;

    color: #555555;

    font-size: 17px;

    line-height: 1.8;
}


/* ==================================================
   PROCESS SECTION
================================================== */

.process-section {

    padding: 120px 8%;

    background: #f4f4f1;
}


.process-header {

    max-width: 900px;

    margin-bottom: 65px;
}


.process-header p {

    color: #d5a52c;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 18px;
}


.process-header h2 {

    font-size: clamp(
        48px,
        6vw,
        78px
    );

    line-height: 0.95;

    letter-spacing: -4px;

    color: #172a3a;

    font-weight: 900;
}


.process-header h2 span {

    color: #d5a52c;
}


/* ==================================================
   PROCESS LIST
================================================== */

.process-list {

    max-width: 1250px;

    border-top: 2px solid #172a3a;
}


.process-step {

    display: grid;

    grid-template-columns: 100px 1fr 50px;

    gap: 35px;

    align-items: center;

    padding: 35px 0;

    border-bottom: 1px solid #d2d2d2;

    transition: 0.3s ease;
}


.process-step:hover {

    padding-left: 15px;

    padding-right: 15px;

    background: #ffffff;
}


.process-number {

    font-size: 13px;

    color: #d5a52c;

    font-weight: 900;
}


.process-step-content h3 {

    font-size: 27px;

    color: #172a3a;

    font-weight: 800;

    margin-bottom: 8px;
}


.process-step-content p {

    max-width: 650px;

    color: #666666;

    font-size: 15px;

    line-height: 1.7;
}


.process-arrow {

    font-size: 28px;

    color: #172a3a;

    font-weight: 700;

    text-align: right;
}


/* ==================================================
   PROJECT MODEL
================================================== */

.project-model {

    display: grid;

    grid-template-columns: 1.3fr 0.7fr;

    gap: 80px;

    padding: 120px 8%;

    background: #ffffff;

    align-items: center;
}


.project-model-content {

    max-width: 750px;
}


.project-model-content > p:first-child {

    color: #d5a52c;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 20px;
}


.project-model-content h2 {

    font-size: clamp(
        48px,
        6vw,
        75px
    );

    line-height: 0.95;

    letter-spacing: -4px;

    color: #172a3a;

    font-weight: 900;

    margin-bottom: 30px;
}


.project-model-text {

    max-width: 650px;

    color: #555555;

    font-size: 16px;

    line-height: 1.8;
}


/* PROJECT BOX */

.project-model-box {

    min-height: 360px;

    padding: 35px;

    background: #f3c62f;

    position: relative;

    overflow: hidden;

    display: flex;

    flex-direction: column;

    justify-content: space-between;
}


.project-model-box::after {

    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    right: -75px;

    bottom: -75px;

    border: 30px solid #172a3a;

    transform: rotate(45deg);
}


.project-model-box span {

    position: relative;

    z-index: 2;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 2px;

    color: #172a3a;
}


.project-model-box strong {

    position: relative;

    z-index: 2;

    font-size: 32px;

    line-height: 1;

    letter-spacing: -1px;

    color: #172a3a;

    font-weight: 900;
}


/* ==================================================
   PROCESS CTA
================================================== */

.process-cta {

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;

    padding: 100px 8%;

    background: #172a3a;

    color: #ffffff;
}


.process-cta::after {

    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    right: -110px;

    bottom: -120px;

    background: #f3c62f;

    transform: rotate(45deg);
}


.process-cta > div {

    position: relative;

    z-index: 2;
}


.process-cta p {

    color: #f3c62f;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 20px;
}


.process-cta h2 {

    font-size: clamp(
        45px,
        6vw,
        75px
    );

    line-height: 0.95;

    letter-spacing: -4px;

    font-weight: 900;
}


.process-cta-button {

    position: relative;

    z-index: 3;

    flex-shrink: 0;

    padding: 17px 30px;

    background: #f3c62f;

    color: #172a3a;

    font-size: 12px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    transition: 0.3s ease;
}


.process-cta-button:hover {

    background: #ffffff;

    transform: translateY(-3px);
}


/* ==================================================
   PROCESS TABLET
================================================== */

@media (max-width: 900px) {

    .process-hero-side {

        right: 6%;

        width: 180px;
    }


    .process-intro {

        grid-template-columns: 1fr;

        gap: 25px;
    }


    .project-model {

        grid-template-columns: 1fr;

        gap: 60px;
    }

}


/* ==================================================
   PROCESS MOBILE
================================================== */

@media (max-width: 768px) {

    .process-hero {

        min-height: 650px;

        margin-top: 75px;

        padding: 100px 7% 80px;

        align-items: flex-start;
    }


    .process-hero h1 {

        font-size: 62px;

        letter-spacing: -3px;
    }


    .process-hero-number {

        font-size: 170px;

        right: 4%;

        bottom: 100px;
    }


    .process-hero-side {

        left: 7%;

        right: auto;

        bottom: 45px;

        width: 220px;
    }


    .process-intro {

        display: block;

        padding: 90px 7%;
    }


    .process-intro-label {

        margin-bottom: 25px;
    }


    .process-intro-content h2 {

        font-size: 48px;

        letter-spacing: -2px;

        margin-bottom: 30px;
    }


    .process-intro-content p {

        font-size: 15px;
    }


    .process-section {

        padding: 90px 7%;
    }


    .process-header {

        margin-bottom: 45px;
    }


    .process-header h2 {

        font-size: 50px;

        letter-spacing: -2px;
    }


    .process-step {

        grid-template-columns: 45px 1fr 25px;

        gap: 15px;

        padding: 28px 0;
    }


    .process-step-content h3 {

        font-size: 21px;
    }


    .process-step-content p {

        font-size: 14px;
    }


    .process-arrow {

        font-size: 20px;
    }


    .project-model {

        display: block;

        padding: 90px 7%;
    }


    .project-model-content {

        margin-bottom: 45px;
    }


    .project-model-content h2 {

        font-size: 50px;

        letter-spacing: -2px;
    }


    .project-model-box {

        min-height: 300px;
    }


    .process-cta {

        display: block;

        padding: 90px 7%;
    }


    .process-cta h2 {

        font-size: 50px;

        letter-spacing: -2px;

        margin-bottom: 40px;
    }

}


/* ==================================================
   PROCESS SMALL PHONES
================================================== */

@media (max-width: 480px) {

    .process-hero h1 {

        font-size: 53px;
    }


    .process-hero-number {

        font-size: 130px;

        bottom: 105px;
    }


    .process-intro-content h2 {

        font-size: 42px;
    }


    .process-header h2 {

        font-size: 43px;
    }


    .project-model-content h2 {

        font-size: 43px;
    }


    .project-model-box strong {

        font-size: 27px;
    }


    .process-cta h2 {

        font-size: 43px;
    }

}

/* ==================================================
   CONTACT PAGE
================================================== */


/* ==================================================
   CONTACT HERO
================================================== */

.contact-hero {

    min-height: 620px;

    margin-top: 85px;

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    padding: 80px 8%;

    background: #f3c62f;

    color: #172a3a;
}


.contact-hero::before {

    content: "";

    position: absolute;

    right: 0;

    top: 0;

    width: 43%;

    height: 100%;

    background: #172a3a;

    clip-path:
        polygon(
            28% 0,
            100% 0,
            100% 100%,
            0 100%
        );
}


.contact-hero-number {

    position: absolute;

    right: 30%;

    bottom: -40px;

    font-size: 260px;

    line-height: 1;

    font-weight: 900;

    color: rgba(23,42,58,0.07);
}


.contact-hero-content {

    position: relative;

    z-index: 5;
}


.contact-hero-content p {

    color: #172a3a;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 22px;
}


.contact-hero h1 {

    font-size: clamp(
        75px,
        10vw,
        140px
    );

    line-height: 0.85;

    letter-spacing: -6px;

    font-weight: 900;
}


.contact-hero h1 span {

    color: #ffffff;
}


/* HERO SIDE */

.contact-hero-side {

    position: absolute;

    right: 8%;

    bottom: 75px;

    width: 220px;

    z-index: 5;
}


.contact-hero-side p {

    color: #ffffff;

    font-size: 15px;

    line-height: 1.7;

    font-weight: 600;

    padding-left: 18px;

    border-left: 3px solid #f3c62f;
}


/* ==================================================
   CONTACT INTRO
================================================== */

.contact-intro {

    display: grid;

    grid-template-columns: 0.5fr 1.5fr;

    gap: 70px;

    padding: 120px 8%;

    background: #ffffff;
}


.contact-intro-label {

    padding-top: 10px;
}


.contact-intro-label span {

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;

    color: #d5a52c;
}


.contact-intro-content {

    max-width: 800px;
}


.contact-intro-content h2 {

    font-size: clamp(
        48px,
        6vw,
        78px
    );

    line-height: 0.95;

    letter-spacing: -4px;

    color: #172a3a;

    font-weight: 900;

    margin-bottom: 30px;
}


.contact-intro-content h2 span {

    color: #d5a52c;
}


.contact-intro-content p {

    max-width: 650px;

    color: #555555;

    font-size: 17px;

    line-height: 1.8;
}


/* ==================================================
   CONTACT AREA
================================================== */

.contact-area {

    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 100px;

    padding: 110px 8%;

    background: #f4f4f1;
}


/* ==================================================
   CONTACT DETAILS
================================================== */

.contact-details {

    display: flex;

    flex-direction: column;

    gap: 0;

    align-self: start;
}


.contact-detail {

    display: grid;

    grid-template-columns: 45px 1fr;

    gap: 20px;

    padding: 30px 0;

    border-bottom: 1px solid #d5d5d5;
}


.contact-detail-number {

    font-size: 12px;

    font-weight: 900;

    color: #d5a52c;
}


.contact-detail p {

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    color: #888888;

    margin-bottom: 8px;
}


.contact-detail a {

    display: block;

    font-size: 20px;

    font-weight: 700;

    color: #172a3a;

    margin-bottom: 5px;

    transition: 0.3s ease;
}


.contact-detail a:hover {

    color: #d5a52c;
}


.contact-detail strong {

    display: block;

    font-size: 18px;

    color: #172a3a;

    margin-bottom: 5px;
}


.contact-detail small {

    display: block;

    font-size: 13px;

    color: #777777;
}


/* ==================================================
   FINAL CONTACT CTA
================================================== */

.contact-final {

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;

    padding: 100px 8%;

    background: #172a3a;

    color: #ffffff;
}


.contact-final::after {

    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    right: -110px;

    bottom: -120px;

    background: #f3c62f;

    transform: rotate(45deg);
}


.contact-final > div {

    position: relative;

    z-index: 2;
}


.contact-final p {

    color: #f3c62f;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 3px;

    margin-bottom: 20px;
}


.contact-final h2 {

    font-size: clamp(
        48px,
        6vw,
        75px
    );

    line-height: 0.95;

    letter-spacing: -4px;

    font-weight: 900;
}


.contact-final-button {

    position: relative;

    z-index: 3;

    flex-shrink: 0;

    padding: 17px 30px;

    background: #f3c62f;

    color: #172a3a;

    font-size: 12px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    transition: 0.3s ease;
}


.contact-final-button:hover {

    background: #ffffff;

    transform: translateY(-3px);
}


/* ==================================================
   CONTACT TABLET
================================================== */

@media (max-width: 900px) {

    .contact-area {

        grid-template-columns: 1fr;

        gap: 60px;
    }


    .contact-intro {

        grid-template-columns: 1fr;

        gap: 25px;
    }

}


/* ==================================================
   CONTACT MOBILE
================================================== */

@media (max-width: 768px) {

    .contact-hero {

        min-height: 650px;

        margin-top: 75px;

        padding: 100px 7% 80px;

        align-items: flex-start;
    }


    .contact-hero::before {

        width: 100%;

        height: 40%;

        top: auto;

        bottom: 0;

        clip-path:
            polygon(
                0 25%,
                100% 0,
                100% 100%,
                0 100%
            );
    }


    .contact-hero h1 {

        font-size: 72px;

        letter-spacing: -3px;
    }


    .contact-hero-number {

        font-size: 170px;

        right: 4%;

        bottom: 90px;
    }


    .contact-hero-side {

        left: 7%;

        right: auto;

        bottom: 40px;

        width: 220px;
    }


    .contact-intro {

        display: block;

        padding: 90px 7%;
    }


    .contact-intro-label {

        margin-bottom: 25px;
    }


    .contact-intro-content h2 {

        font-size: 50px;

        letter-spacing: -2px;
    }


    .contact-intro-content p {

        font-size: 15px;
    }


    .contact-area {

        display: block;

        padding: 80px 7%;
    }


    .contact-details {

        margin-bottom: 50px;
    }


    .contact-form {

        padding: 30px 25px;
    }


    .form-row {

        grid-template-columns: 1fr;

        gap: 0;
    }


    .contact-final {

        display: block;

        padding: 90px 7%;
    }


    .contact-final h2 {

        font-size: 50px;

        letter-spacing: -2px;

        margin-bottom: 40px;
    }


    .contact-final-button {

        display: inline-block;
    }

}


/* ==================================================
   CONTACT SMALL PHONES
================================================== */

@media (max-width: 480px) {

    .contact-hero h1 {

        font-size: 58px;
    }


    .contact-hero-number {

        font-size: 135px;

        bottom: 100px;
    }


    .contact-intro-content h2 {

        font-size: 43px;
    }


    .contact-form {

        padding: 25px 20px;
    }


    .contact-final h2 {

        font-size: 43px;
    }

}

/* ========================================
   SERVICES PAGE
======================================== */


/* ========================================
   HERO
======================================== */

.services-hero {
    min-height: 520px;
    background: #d5a52c;
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;

    padding: 80px 8%;
}

.services-hero::after {
    content: "";

    position: absolute;

    right: -10%;
    top: 0;

    width: 45%;
    height: 100%;

    background: #172a3a;

    transform: skewX(-12deg);
}


.services-hero-number {
    position: absolute;

    top: 55px;
    left: 8%;

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 2px;

    color: #172a3a;
}


.services-hero-content {
    position: relative;
    z-index: 2;
}


.services-hero-content .page-label {
    color: #172a3a;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 18px;
}


.services-hero-content h1 {
    font-size: clamp(70px, 10vw, 145px);

    line-height: .82;

    margin: 0;

    font-weight: 900;

    letter-spacing: -5px;

    color: #172a3a;
}


.services-hero-content h1 span {
    color: #ffffff;
}


.services-hero-side {
    position: absolute;

    z-index: 3;

    right: 9%;
    top: 50%;

    transform: translateY(-50%);

    color: #ffffff;

    font-size: 18px;

    font-weight: 700;

    line-height: 1.5;

    letter-spacing: 1px;
}



/* ========================================
   INTRO
======================================== */

.services-intro {

    display: grid;

    grid-template-columns: 25% 75%;

    padding: 110px 8%;

    background: #ffffff;
}


.services-intro-label {

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    color: #d5a52c;
}


.services-intro-content {

    max-width: 800px;
}


.services-intro-content h2 {

    font-size: clamp(42px, 5vw, 70px);

    line-height: 1;

    margin: 0 0 30px;

    color: #172a3a;

    letter-spacing: -2px;
}


.services-intro-content h2 span {

    color: #d5a52c;
}


.services-intro-content p {

    max-width: 700px;

    font-size: 18px;

    line-height: 1.8;

    color: #555;

    margin: 0;
}



/* ========================================
   SERVICES SECTION
======================================== */

.services-list {

    background: #172a3a;

    padding: 110px 8%;
}


.services-list-header {

    margin-bottom: 55px;
}


.services-list-header p {

    color: #d5a52c;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    margin: 0 0 15px;
}


.services-list-header h2 {

    color: #ffffff;

    font-size: clamp(45px, 6vw, 80px);

    line-height: .95;

    margin: 0;

    letter-spacing: -3px;
}


.services-list-header h2 span {

    color: #d5a52c;
}



/* ========================================
   SERVICE CARDS
======================================== */

.service-card {

    display: grid;

    grid-template-columns: 80px 1fr 60px;

    align-items: center;

    gap: 30px;

    background: #ffffff;

    padding: 45px 40px;

    margin-bottom: 18px;

    border-left: 6px solid #d5a52c;

    transition: all .3s ease;
}


.service-card:last-child {

    margin-bottom: 0;
}


.service-card:hover {

    transform: translateX(8px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, .18);
}



/* NUMBER */

.service-card-number {

    color: #d5a52c;

    font-size: 15px;

    font-weight: 800;

    letter-spacing: 1px;
}



/* CONTENT */

.service-card-content {

    min-width: 0;
}


.service-card-tag {

    color: #d5a52c;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 10px;
}


.service-card-content h3 {

    color: #172a3a;

    font-size: clamp(30px, 3vw, 45px);

    line-height: 1;

    margin: 0 0 15px;

    letter-spacing: -1.5px;
}


.service-card-content p {

    color: #555;

    max-width: 700px;

    font-size: 16px;

    line-height: 1.7;

    margin: 0;
}



/* ARROW */

.service-card-icon {

    width: 50px;

    height: 50px;

    border: 2px solid #d5a52c;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #172a3a;

    font-size: 22px;

    transition: all .3s ease;
}


.service-card:hover .service-card-icon {

    background: #d5a52c;

    color: #172a3a;

}



/* ========================================
   PROJECT SECTION
======================================== */

.services-project {

    display: grid;

    grid-template-columns: 1fr 1fr;

    background: #f5f5f2;

    padding: 110px 8%;

    gap: 80px;
}


.services-project-left p {

    color: #d5a52c;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    margin: 0 0 20px;
}


.services-project-left h2 {

    font-size: clamp(48px, 6vw, 80px);

    line-height: .9;

    margin: 0;

    color: #172a3a;

    letter-spacing: -3px;
}


.services-project-left h2 span {

    color: #d5a52c;
}


.services-project-right {

    display: flex;

    flex-direction: column;

    justify-content: center;
}


.services-project-right p {

    font-size: 19px;

    line-height: 1.8;

    color: #555;

    max-width: 600px;

    margin: 0 0 35px;
}


.services-project-button {

    display: inline-block;

    width: fit-content;

    padding: 15px 25px;

    background: #172a3a;

    color: #ffffff;

    text-decoration: none;

    font-weight: 700;

    transition: all .3s ease;
}


.services-project-button:hover {

    background: #d5a52c;

    color: #172a3a;
}



/* ========================================
   CTA
======================================== */

.services-cta {

    background: #d5a52c;

    padding: 90px 8%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;
}


.services-cta p {

    color: #172a3a;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2px;

    margin: 0 0 15px;
}


.services-cta h2 {

    color: #172a3a;

    font-size: clamp(45px, 6vw, 80px);

    line-height: .9;

    margin: 0;

    letter-spacing: -3px;
}


.services-cta h2 span {

    color: #ffffff;
}


.services-cta-button {

    background: #172a3a;

    color: #ffffff;

    padding: 18px 30px;

    text-decoration: none;

    font-weight: 700;

    white-space: nowrap;

    transition: all .3s ease;
}


.services-cta-button:hover {

    background: #ffffff;

    color: #172a3a;
}



/* ========================================
   TABLET
======================================== */

@media (max-width: 900px) {

    .services-intro {

        grid-template-columns: 1fr;

        gap: 30px;
    }


    .services-project {

        grid-template-columns: 1fr;

        gap: 40px;
    }


    .services-cta {

        flex-direction: column;

        align-items: flex-start;
    }

}



/* ========================================
   MOBILE
======================================== */

@media (max-width: 768px) {

    .services-hero {

        min-height: 450px;

        padding: 70px 6%;
    }


    .services-hero::after {

        width: 50%;

        right: -20%;
    }


    .services-hero-number {

        left: 6%;
    }


    .services-hero-side {

        right: 6%;

        font-size: 13px;
    }


    .services-intro,
    .services-list,
    .services-project,
    .services-cta {

        padding-left: 6%;

        padding-right: 6%;
    }


    .service-card {

        grid-template-columns: 50px 1fr 45px;

        gap: 18px;

        padding: 32px 25px;
    }


    .service-card-content h3 {

        font-size: 30px;
    }


    .service-card-content p {

        font-size: 15px;
    }

}



/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 480px) {

    .services-hero-content h1 {

        font-size: 65px;

        letter-spacing: -3px;
    }


    .services-hero-side {

        font-size: 11px;
    }


    .service-card {

        grid-template-columns: 1fr 40px;

        gap: 15px;

        padding: 28px 22px;
    }


    .service-card-number {

        grid-column: 1 / -1;
    }


    .service-card-content h3 {

        font-size: 27px;
    }


    .service-card-icon {

        width: 40px;

        height: 40px;

        font-size: 18px;
    }

}

/* ========================================
   FIX NAVBAR LOGO SIZE
======================================== */

.navbar .logo {
    width: 160px !important;
    height: 70px !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
}

.navbar .logo img {
    width: 160px !important;
    height: auto !important;
    max-width: 120px !important;
    max-height: 60px !important;
    object-fit: contain !important;
    display: block !important;
}