/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Montserrat", sans-serif;
    background: #111111;
    color: #ffffff;
    overflow-x: hidden;
}


a {
    text-decoration: none;
    color: inherit;
}


/* =========================
   BACKGROUND ROAD
========================= */

.background-road {

    position: fixed;

    top: 0;

    right: 12%;

    width: 220px;

    height: 100vh;

    background: #1c1c1c;

    transform: skewX(-12deg);

    z-index: 0;

    opacity: 0.45;

    pointer-events: none;

}


.background-road::before,
.background-road::after {

    content: "";

    position: absolute;

    top: 0;

    width: 4px;

    height: 100%;

    background: rgba(255, 255, 255, 0.08);

}


.background-road::before {
    left: 15px;
}


.background-road::after {
    right: 15px;
}


.road-center-line {

    width: 10px;

    height: 90px;

    background: #f7931e;

    margin: 70px auto;

    opacity: 0.7;

}


/* =========================
   KEEP CONTENT ABOVE ROAD
========================= */

header,
section,
footer {
    position: relative;
    z-index: 1;
}


/* =========================
   NAVIGATION
========================= */

header {

    position: fixed;

    top: 0;

    width: 100%;

    z-index: 1000;

    transition: 0.3s ease;

}


.navbar {

    max-width: 1300px;

    margin: auto;

    padding: 22px 40px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.logo {

    font-family: "Oswald", sans-serif;

    font-size: 24px;

    font-weight: 700;

    letter-spacing: 1px;

}


.logo span {

    display: block;

    color: #f7931e;

    font-size: 13px;

    letter-spacing: 3px;

}


.nav-links {

    display: flex;

    gap: 35px;

}


.nav-links a {

    font-size: 14px;

    font-weight: 600;

    transition: 0.2s;

}


.nav-links a:hover {

    color: #f7931e;

}


.nav-button {

    background: #f7931e;

    color: #111111;

    padding: 13px 22px;

    font-weight: 700;

    font-size: 14px;

    transition: 0.2s;

}


.nav-button:hover {

    transform: translateY(-2px);

}


/* =========================
   HERO
========================= */

.hero {

    min-height: 100vh;

    display: flex;

    align-items: center;

    padding: 150px 10% 100px;

    overflow: hidden;

    background:
        radial-gradient(circle at 80% 20%, #343434, transparent 40%),
        #111111;

}


.hero-pattern {

    position: absolute;

    inset: 0;

    opacity: 0.15;

    background-image:

        repeating-linear-gradient(
            135deg,
            transparent,
            transparent 20px,
            rgba(255,255,255,0.05) 20px,
            rgba(255,255,255,0.05) 22px
        );

}


.hero-content {

    position: relative;

    z-index: 2;

    max-width: 850px;

}


.eyebrow {

    color: #f7931e;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 20px;

}


.hero h1 {

    font-family: "Oswald", sans-serif;

    font-size: clamp(55px, 8vw, 110px);

    line-height: 0.95;

    text-transform: uppercase;

}


.hero h1 span {

    color: #f7931e;

}


.hero-text {

    margin-top: 30px;

    max-width: 600px;

    color: #c9c9c9;

    font-size: 18px;

    line-height: 1.7;

}


.hero-buttons {

    display: flex;

    gap: 15px;

    margin-top: 35px;

}


.btn {

    display: inline-block;

    padding: 17px 28px;

    font-weight: 700;

    transition: 0.25s;

}


.primary-btn {

    background: #f7931e;

    color: #111111;

}


.primary-btn:hover {

    transform: translateY(-3px);

}


.secondary-btn {

    border: 1px solid #555;

}


.secondary-btn:hover {

    border-color: #f7931e;

    color: #f7931e;

}


/* =========================
   HERO STATS
========================= */

.hero-stats {

    display: flex;

    gap: 50px;

    margin-top: 70px;

}


.hero-stats div {

    display: flex;

    flex-direction: column;

}


.hero-stats strong {

    font-family: "Oswald", sans-serif;

    font-size: 25px;

    color: #f7931e;

}


.hero-stats span {

    color: #aaa;

    font-size: 13px;

}


/* =========================
   GENERAL SECTIONS
========================= */

section {

    padding: 110px 10%;

}


.section-heading {

    max-width: 700px;

    margin-bottom: 60px;

}


.section-label {

    color: #f7931e;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 18px;

}


h2 {

    font-family: "Oswald", sans-serif;

    font-size: clamp(40px, 5vw, 65px);

    line-height: 1;

    text-transform: uppercase;

}


.section-heading > p:last-child {

    margin-top: 20px;

    color: #aaa;

}


/* =========================
   SERVICES
========================= */

.services {

    background: #181818;

}


.service-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

}


.service-card {

    background: #222;

    padding: 45px;

    border-top: 4px solid transparent;

    transition: 0.3s;

}


.service-card:hover {

    transform: translateY(-8px);

    border-color: #f7931e;

}


.service-number {

    font-family: "Oswald", sans-serif;

    font-size: 45px;

    color: #f7931e;

    margin-bottom: 30px;

}


.service-card h3 {

    font-family: "Oswald", sans-serif;

    font-size: 28px;

    margin-bottom: 15px;

    text-transform: uppercase;

}


.service-card p {

    color: #aaa;

    line-height: 1.7;

}


/* =========================
   ABOUT
========================= */

.about {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    background: #111;

}


.about-left > p:not(.section-label) {

    color: #aaa;

    line-height: 1.8;

    margin-top: 25px;

    max-width: 550px;

}


.text-link {

    display: inline-block;

    margin-top: 30px;

    color: #f7931e;

    font-weight: 700;

}


.about-right {

    display: flex;

    flex-direction: column;

    gap: 30px;

}


.feature {

    display: flex;

    gap: 20px;

    padding-bottom: 30px;

    border-bottom: 1px solid #333;

}


.feature span {

    color: #f7931e;

    font-size: 24px;

}


.feature h3 {

    font-size: 18px;

    margin-bottom: 8px;

}


.feature p {

    color: #999;

    line-height: 1.6;

}


/* =========================
   CTA
========================= */

.cta {

    background: #f7931e;

    color: #111;

    text-align: center;

}


.cta .section-label {

    color: #111;

}


.cta p {

    margin: 20px auto 30px;

    max-width: 600px;

}


.cta .primary-btn {

    background: #111;

    color: white;

}


/* =========================
   CONTACT
========================= */

.contact {

    background: #181818;

}


.contact-content {

    max-width: 1000px;

    margin: auto;

    text-align: center;

}


.contact-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

    margin-top: 50px;

}


.contact-card {

    display: flex;

    align-items: center;

    text-align: left;

    gap: 20px;

    padding: 30px;

    background: #222;

    transition: 0.25s;

}


.contact-card:hover {

    transform: translateY(-5px);

}


.contact-icon {

    font-size: 30px;

}


.contact-card h3 {

    margin-bottom: 8px;

}


.contact-card p {

    color: #aaa;

    line-height: 1.6;

}


/* =========================
   FOOTER
========================= */

footer {

    padding: 60px 10%;

    background: #0b0b0b;

    text-align: center;

}


.footer-logo {

    font-family: "Oswald", sans-serif;

    font-size: 28px;

    font-weight: 700;

}


.footer-logo span {

    display: block;

    color: #f7931e;

    font-size: 13px;

    letter-spacing: 3px;

}


footer > p {

    color: #888;

    margin-top: 15px;

}


.copyright {

    font-size: 12px;

    margin-top: 30px;

}


/* =========================
   DEMO NOTICE
========================= */

.demo-notice {

    position: fixed;

    bottom: 15px;

    left: 50%;

    transform: translateX(-50%);

    background: rgba(0, 0, 0, 0.85);

    border: 1px solid #444;

    padding: 9px 16px;

    font-size: 11px;

    color: #aaa;

    z-index: 9999;

    border-radius: 20px;

}


/* =========================
   REVEAL ANIMATION
========================= */

.reveal {

    opacity: 0;

    transform: translateY(30px);

    transition:

        opacity 0.7s ease,
        transform 0.7s ease;

}


.reveal.active {

    opacity: 1;

    transform: translateY(0);

}


/* =========================
   MOBILE
========================= */

@media (max-width: 850px) {


    .navbar {

        padding: 20px;

    }


    .nav-links {

        display: none;

    }


    .hero {

        padding: 140px 7% 80px;

    }


    section {

        padding: 80px 7%;

    }


    .service-grid {

        grid-template-columns: 1fr;

    }


    .about {

        grid-template-columns: 1fr;

        gap: 60px;

    }


    .contact-grid {

        grid-template-columns: 1fr;

    }


    .hero-stats {

        gap: 25px;

        flex-wrap: wrap;

    }


    .background-road {

        right: -80px;

        width: 150px;

        opacity: 0.25;

    }

}


@media (max-width: 500px) {


    .logo {

        font-size: 19px;

    }


    .logo span {

        font-size: 9px;

    }


    .nav-button {

        padding: 10px 14px;

        font-size: 12px;

    }


    .hero-buttons {

        flex-direction: column;

    }


    .btn {

        text-align: center;

    }


    .hero h1 {

        font-size: 55px;

    }


    .hero-stats {

        margin-top: 50px;

    }

}


@media (prefers-reduced-motion: reduce) {

    html {

        scroll-behavior: auto;

    }


    .reveal {

        opacity: 1;

        transform: none;

        transition: none;

    }

}

/* =========================
   HERO REVIEWS
========================= */

.hero-reviews {

    position: absolute;

    top: 50%;

    right: 7%;

    transform: translateY(-50%);

    width: min(48%, 750px);

    z-index: 3;

}


.reviews-label {

    color: #f7931e;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

    margin-bottom: 15px;

}


.reviews-title {

    font-family: "Oswald", sans-serif;

    font-size: clamp(35px, 4vw, 60px);

    line-height: 1;

    margin-bottom: 18px;

}


.review-container {

    position: relative;

    min-height: 250px;

}


.review-card {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    padding: 35px;

    background: rgba(20, 20, 20, 0.92);

    border: 1px solid #444;

    opacity: 0;

    transform: translateY(20px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;

    pointer-events: none;

}


.review-card.active {

    opacity: 1;

    transform: translateY(0);

    pointer-events: auto;

}


.stars {

    color: #f7931e;

    font-size: 25px;

    letter-spacing: 4px;

    margin-bottom: 20px;

}


.review-card > p {

    font-size: 18px;

    line-height: 1.7;

    color: #dddddd;

    font-style: italic;

}


.review-person {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-top: 25px;

}


.profile-icon {

    width: 45px;

    height: 45px;

    border-radius: 50%;

    background: #333;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 22px;

}


.review-person div:last-child {

    display: flex;

    flex-direction: column;

    gap: 5px;

}


.review-person strong {

    font-size: 14px;

}


.review-person span {

    color: #888;

    font-size: 12px;

}


/* REVIEW DOTS */

.review-dots {

    display: flex;

    justify-content: center;

    gap: 10px;

    margin-top: 25px;

}


.dot {

    width: 9px;

    height: 9px;

    border-radius: 50%;

    background: #555;

    transition: 0.3s;

}


.dot.active {

    background: #f7931e;

    transform: scale(1.2);

}


/* =========================
   MOBILE REVIEWS
========================= */

@media (max-width: 1000px) {

    .hero {

        padding-bottom: 420px;

    }


    .hero-reviews {

        top: auto;

        bottom: 50px;

        left: 7%;

        right: 7%;

        transform: none;

        width: auto;

    }


}


@media (max-width: 600px) {

    .hero {

        padding-bottom: 460px;

    }


    .reviews-title {

        font-size: 38px;

    }


    .review-card {

        padding: 25px;

    }


    .review-card > p {

        font-size: 15px;

    }

}