/* =========================================
   FULL SCALE SERVICES Main Stylesheet Black + Orange Theme
========================================= */

:root {
    --black: #0b0b0b;
    --dark: #151515;
    --white: #ffffff;

    --orange: #e76533;
    --orange-dark: #d9570d;

    --off-white: #f5f5f2;
    --light-gray: #e9e9e5;
    --gray: #777777;
    --dark-gray: #333333;

    --border: #d6d6d2;

    --heading-font: "Oswald", sans-serif;
    --body-font: "DM Sans", sans-serif;
}


/* =========================================
   GLOBAL
========================================= */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--off-white);
    color: var(--black);
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

::selection {
    background: var(--orange);
    color: var(--black);
}


/* =========================================
   TYPOGRAPHY
========================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    font-family: var(--heading-font);
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
}

p{
    font-size:18px
}

.section-label {
    display: inline-block;

    margin-bottom: 25px;

    color: var(--orange);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.2;

    text-transform: uppercase;
}

.section-title {
    font-size: clamp(42px, 6vw, 80px);
    letter-spacing: -1px;
}

.section-padding {
    padding-top: 130px;
    padding-bottom: 130px;
}


/* =========================================
   HEADER
========================================= */

.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
}
/* =========================================
   LOGO
========================================= */

.logo-placeholder {
    display: block;
    width: 200px;
    height: auto;
    border: none;
    color: var(--black);
    transition: opacity 0.25s ease;
}

.logo-placeholder img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}

.logo-placeholder:hover {
    background: transparent;
    border: none;
    opacity: 0.8;
}

/* =========================================
   NAVIGATION
========================================= */

.nav-link {
    position: relative;

    padding: 5px 20px !important;

    color: var(--black) !important;

    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1.5px;

    text-transform: uppercase;

    transition: color 0.25s ease;
}

.nav-link::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -4px;

    width: 0;
    height: 2px;

    background: var(--orange);

    transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--orange) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


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

.navbar-toggler {
    padding: 8px 10px;

    border: 1px solid var(--black);
    border-radius: 0;

    box-shadow: none !important;
}

.navbar-toggler:focus {
    border-color: var(--orange);
}

.navbar-toggler-icon {
    width: 20px;
    height: 20px;
}


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

.hero-section {
    background: #e76533;
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-title {
    margin-bottom: 0;
    color: var(--black);
    font-size: clamp(80px, 13vw, 190px);
    font-weight: 500;
    letter-spacing: -5px;
    line-height: 0.82;
}

.hero-title span {
    color: var(--orange);
}

.hero-copy {
    max-width: 530px;
    margin-left: auto;
}
.hero-copy .section-label{color:#fff}
.hero-copy h2 {
    margin-bottom: 30px;
    color: var(--black);
    font-family: var(--body-font);
    font-size: clamp(30px, 3vw, 46px);
    font-weight: 500;
    line-height: 1.15;
    text-transform: none;
}

.hero-copy p {
    max-width: 480px;
    margin-bottom: 35px;
    color: #fff;
}

.hero-copy .btn-dark-custom{ 
    border: 2px solid #fff;
    border-radius: 0;
    background: #fff;
    color: var(--black);}

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

.btn-dark-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 14px 30px;
    border: 2px solid var(--orange);
    border-radius: 0;
    background: var(--orange);
    color: var(--black);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

.btn-dark-custom:hover {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
}

.btn-dark-custom:focus {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
    box-shadow: 0 0 0 3px rgba(243, 111, 33, 0.35);
}


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

.about-section {
    background: var(--white);
}

.about-image {
    padding-right: 30px;
}

.image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 500px;

    background:
        linear-gradient(
            135deg,
            #ddddda 0%,
            #eeeeeb 50%,
            #d1d1cd 100%
        );

    color: #999999;

    font-family: var(--heading-font);
    font-size: 18px;
    letter-spacing: 3px;
}

.about-section .section-title {
    margin-bottom: 35px;
}

.about-section p {
   
    margin-bottom: 20px;

    color: var(--gray);
}


/* =========================================
   TEXT LINKS
========================================= */

.text-link {
    display: inline-block;

    margin-top: 20px;

    border-bottom: 2px solid var(--orange);

    color: var(--black);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;

    transition:
        color 0.2s ease,
        border-color 0.2s ease;
}

.text-link:hover {
    color: var(--orange);
    border-color: var(--black);
}


/* =========================================
   CORE CAPABILITIES
========================================= */

.capabilities-section {
    background: var(--off-white);
}

.capabilities-grid {
    border-top: 1px solid var(--black);
    border-left: 1px solid var(--black);
}

.capability-card {
    position: relative;

    display: block;

    min-height: 300px;

    padding: 35px;

    border-right: 1px solid var(--black);
    border-bottom: 1px solid var(--black);

    background: var(--off-white);
    color: var(--black);

    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.capability-card:hover {
    background: var(--orange);
    color: var(--black);
}

.capability-number {
    color: var(--orange);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;

    transition: color 0.3s ease;
}

.capability-card:hover .capability-number {
    color: var(--black);
}

.capability-card h3 {
    position: absolute;

    left: 35px;
    bottom: 30px;

    margin: 0;

    font-size: clamp(35px, 5vw, 65px);
}

.capability-arrow {
    position: absolute;

    top: 30px;
    right: 35px;

    color: var(--orange);

    font-size: 30px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.capability-card:hover .capability-arrow {
    color: var(--black);
    transform: translate(5px, -5px);
}

/* =========================================
   WHY FULL SCALE
========================================= */

.why-section {
    background: var(--white);
}

.why-image {
    width: 100%;
    height: 600px;
    overflow: hidden;
    background: var(--light-gray);
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-title {
    max-width: 650px;

    margin-bottom: 25px;

    font-size: clamp(48px, 6vw, 80px);
    line-height: 0.95;
}

.why-intro {
    max-width: 620px;

    margin-bottom: 45px;

    color: var(--gray);

    font-size: 18px;
}

.why-points {
    border-top: 1px solid var(--border);
}

.why-point {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;

    padding: 25px 0;

    border-bottom: 1px solid var(--border);
}

.why-point h3 {
    margin: 0;

    color: var(--orange);

    font-family: var(--body-font);
    font-size: 15px;
    font-weight: 700;

    line-height: 1.3;

    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-point p {
    margin: 0;

    color: var(--gray);

    font-size: 18px;
    line-height: 1.6;
}


/* =========================================
   WHY FULL SCALE — MOBILE
========================================= */

@media (max-width: 991px) {

    .why-image {
        height: 450px;
    }

}

@media (max-width: 767px) {

    .why-image {
        height: 350px;
    }

    .why-title {
        font-size: 50px;
    }

    .why-intro {
        font-size: 16px;
    }

    .why-point {
        display: block;
    }

    .why-point h3 {
        margin-bottom: 10px;
    }

}

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

.page-hero {
    padding: 150px 0 100px;

    background: var(--black);
    color: var(--white);
}

.page-hero h1 {
    margin-bottom: 35px;

    color: var(--white);

    font-size: clamp(80px, 14vw, 180px);

    line-height: 0.8;
}

.page-hero h1 span {
    color: var(--orange);
}

.page-hero p {
    max-width: 600px;

    color: #bdbdbd;

    font-size: 20px;
}

.page-hero .section-label {
    color: var(--orange);
}


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

.services-section {
    background: var(--white);
}

.service-item {
    padding: 110px 0;

    border-bottom: 1px solid var(--border);
}

.service-item:first-child {
    padding-top: 0;
}

.service-item:last-child {
    border-bottom: 0;
}

.service-number {
    display: block;

    margin-bottom: 25px;

    color: var(--orange);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.service-item h2 {
    position: sticky;
    top: 30px;

    color: var(--black);

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

.service-image {
    min-height: 450px;

    margin-bottom: 45px;
}

.service-content {
    max-width: 700px;
}

.service-content h3 {
    margin-bottom: 25px;

    color: var(--black);

    font-family: var(--body-font);
    font-size: 28px;
    font-weight: 500;

    text-transform: none;
}

.service-content p {
    color: var(--gray);
}

.no-image {
    padding-top: 80px;
}


/* =========================================
   SERVICE ANCHOR OFFSET
   Prevents sticky header from covering
   selected service when using #links
========================================= */

.service-item {
    scroll-margin-top: 40px;
}


/* =========================================
   GET IN TOUCH CTA
========================================= */

.contact-cta {
    background: var(--orange);
    color: var(--black);
}

.contact-cta .section-label {
    color: var(--black);
}

.contact-cta .section-title {
    margin-bottom: 0;

    color: var(--black);
}

.contact-cta .btn-dark-custom {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
}

.contact-cta .btn-dark-custom:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--black);
}


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

.contact-page-hero {
    padding-bottom: 110px;
}

.contact-form-section {
    background: var(--white);
}


/* =========================================
   FORM LABELS
========================================= */

.contact-form label,
.contact-form legend {
    display: block;

    margin-bottom: 10px;

    color: var(--black);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;

    text-transform: uppercase;
}


/* =========================================
   FORM INPUTS
========================================= */

.contact-form .form-control,
.contact-form .form-select {
    min-height: 58px;

    padding: 14px 16px;

    border: 1px solid #bdbdb8;
    border-radius: 0;

    background: var(--off-white);

    color: var(--black);

    box-shadow: none;

    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.contact-form .form-control::placeholder {
    color: #999999;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--orange);

    background: var(--white);

    box-shadow: 0 0 0 2px rgba(243, 111, 33, 0.15);
}

.contact-form textarea.form-control {
    min-height: 180px;
    resize: vertical;
}


/* =========================================
   RADIO / CHECKBOX
========================================= */

.contact-form .form-check-input {
    border: 1px solid #888888;
    border-radius: 50%;

    box-shadow: none;
}

.contact-form .form-check-input:focus {
    border-color: var(--orange);

    box-shadow: 0 0 0 3px rgba(243, 111, 33, 0.2);
}

.contact-form .form-check-input:checked {
    background-color: var(--orange);
    border-color: var(--orange);
}

.contact-form .form-check-label {
    margin-bottom: 0;

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

    letter-spacing: 0;

    text-transform: none;
}


/* =========================================
   SUCCESS MESSAGE
========================================= */

.success-message {
    padding: 80px 0;
}

.success-message h2 {
    margin-bottom: 30px;

    color: var(--black);

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

.success-message p {
    max-width: 650px;

    color: var(--gray);
}


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

.site-footer {
    background: var(--black);
    color: var(--white);
}

.footer-logo {
    color: var(--orange);

    font-family: var(--heading-font);
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 1px;
    width: 150px;
}

.site-footer a {
    margin-left: 30px;

    color: #aaaaaa;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;

    text-transform: uppercase;

    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: var(--orange);
}

.footer-bottom {
    padding: 25px 0;

    border-top: 1px solid #333333;

    color: #777777;

    font-size: 12px;
}


/* =========================================
   FOCUS / ACCESSIBILITY
========================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 3px;
}


/* =========================================
   RESPONSIVE — TABLET
========================================= */

@media (max-width: 991px) {

    .section-padding {
        padding-top: 90px;
        padding-bottom: 90px;
    }


    /* Hero */

    .hero-section {
        padding: 80px 0;
    }

    .min-vh-75 {
        min-height: auto;
    }

    .hero-title {
        margin-bottom: 70px;

        font-size: clamp(80px, 18vw, 150px);
    }

    .hero-copy {
        margin-left: 0;
    }


    /* About */

    .about-image {
        padding-right: 0;
    }


    /* Services */

    .service-item h2 {
        position: static;
    }


    /* Page Hero */

    .page-hero {
        padding: 110px 0 80px;
    }


    /* Statement */

    .statement-section {
        padding: 100px 0;
    }

}


/* =========================================
   RESPONSIVE — MOBILE
========================================= */

@media (max-width: 767px) {

    .section-padding {
        padding-top: 70px;
        padding-bottom: 70px;
    }


    /* Header */

    .navbar {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .navbar-nav {
        padding-top: 25px;
        padding-bottom: 10px;
    }

    .nav-link {
        padding: 8px 0 !important;
    }


    /* Hero */

    .hero-title {
        font-size: 23vw;
        letter-spacing: -2px;
    }

    .hero-copy h2 {
        font-size: 30px;
    }


    /* Images */

    .image-placeholder {
        min-height: 350px;
    }


    /* Capabilities */

    .capability-card {
        min-height: 230px;
    }

    .capability-card h3 {
        font-size: 38px;
    }


    /* Statement */

    .statement-section {
        padding: 80px 0;
    }

    .statement-section h2 {
        font-size: 50px;
    }


    /* Page Hero */

    .page-hero h1 {
        font-size: 25vw;
    }


    /* Services */

    .service-item {
        padding: 75px 0;
    }

    .service-image {
        min-height: 300px;
    }

    .service-content h3 {
        font-size: 24px;
    }


    /* Footer */

    .site-footer a {
        margin-left: 0;
        margin-right: 25px;
    }

}


/* =========================================
   RESPONSIVE — SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .logo-placeholder {
        width: 100px;
        height: 40px;

        font-size: 12px;
    }

    .hero-title {
        font-size: 24vw;
    }

    .capability-card {
        min-height: 200px;
        padding: 25px;
    }

    .capability-card h3 {
        left: 25px;
        bottom: 25px;

        font-size: 32px;
    }

    .capability-arrow {
        top: 20px;
        right: 25px;
    }

    .page-hero {
        padding-top: 90px;
        padding-bottom: 70px;
    }

    .page-hero h1 {
        font-size: 24vw;
    }

    .btn-dark-custom {
        width: 100%;
    }

}

.about-image img,
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image {
    height: 500px;
    padding-right: 30px;
}

.service-image {
    height: 450px;
    margin-bottom: 45px;
}

@media (max-width: 991px) {
    .about-image {
        height: 450px;
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .about-image {
        height: 350px;
    }

    .service-image {
        height: 300px;
    }
}