* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #111;
    color: #e7d10d;
}


/* =========================
   NAVBAR
========================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 82px;

    padding: 0 7%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(114, 114, 106, 0.94);
    backdrop-filter: blur(12px);

    z-index: 1000;
}


/* LOGO */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;

    color: #df0202;
}

.logo-rr {
    font-size: 50px;
    font-weight: 900;
    letter-spacing: -5px;
    line-height: 1;
}

.logo-text strong {
    display: block;

    font-size: 16px;
    letter-spacing: 2px;
    line-height: 1;
}

.logo-text strong {
    display: block;

    margin-top: 2px;

    font-size: 16px;
    letter-spacing: 5px;

    color: #e7d10d;
}


/* MENU */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    position: relative;

    color: #ffffff;
    text-decoration: none;

    font-size: 12px;
    font-weight: 500;

    text-transform: uppercase;
    letter-spacing: 1.5px;

    padding: 8px 0;

    transition: 0.3s ease;
}


/* GARIS BAWAH SAAT HOVER */

.nav-menu a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: #ffffff;

    transition: 0.3s ease;
}

.nav-menu a:hover {
    color: #cccccc;
}

.nav-menu a:hover::after {
    width: 100%;
}


/* MOBILE */

@media (max-width: 900px) {

    .navbar {
        padding: 0 5%;
    }

    .nav-menu {
        gap: 18px;
    }

    .nav-menu a {
        font-size: 10px;
        letter-spacing: 1px;
    }
}


@media (max-width: 650px) {

    .navbar {
        height: auto;
        min-height: 75px;

        flex-direction: column;
        justify-content: center;

        gap: 12px;

        padding: 15px 5%;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 18px;
    }

    .nav-menu a {
        font-size: 9px;
    }
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;
    padding: 120px 8% 80px;
    display: flex;
    align-items: center;

    background-image: url("image/excavator.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: relative;
}

.hero-content {
    max-width: 720px;
    color: white;
}

.hero-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 25px;
    position: relative;
    padding-left: 0px;
}

.hero h1 {
    font-size: clamp(48px, 6vw, 82px);

    line-height: 1.02;

    margin: 0 0 30px;

    letter-spacing: -2px;
}

.hero-description {
    max-width: 540px;

    color: #dddddd;

    font-size: 16px;
    line-height: 1.8;

    margin-bottom: 40px;
}


/* BUTTON */

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-buttons a {
    display: inline-block;

    padding: 15px 28px;

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1.5px;

    transition: 0.3s ease;
}

.btn-primary {
    background: white;
    color: #171715;
}

.btn-primary:hover {
    background: #dddddd;
}

.btn-secondary {
    border: 1px solid white;
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: #171715;
}


/* MOBILE */

@media (max-width: 650px) {

    .hero {
        min-height: 90vh;

        padding: 130px 7% 70px;

        background-position: 65% center;
    }

    .hero h1 {
        font-size: 46px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-buttons a {
        text-align: center;
    }
}



/* =========================
   SERVICES
========================= */

.services {
    padding: 120px 6%;

    background: #111;
}

.services h2 {
    margin-bottom: 60px;

    font-size: clamp(45px, 6vw, 75px);
}

.service-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.service-card {
    min-height: 300px;

    padding: 40px;

    border: 1px solid #292929;

    background: #181818;

    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);

    border-color: #c9a15a;
}

.service-card span {
    color: #c9a15a;

    font-size: 14px;
}

.service-card h3 {
    margin: 60px 0 20px;

    font-size: 20px;
    line-height: 1.3;
}

.service-card p {
    color: #999;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 800px) {

    .navbar {
        padding: 25px;
    }

    nav {
        gap: 15px;
    }

    nav a {
        font-size: 9px;
    }

    .hero {
        padding: 0 25px;
    }

    .hero h1 {
    font-size: clamp(48px, 6vw, 82px);
    line-height: 1.02;
    margin: 0 0 30px;
    letter-spacing: -2px;
    font-weight: 700;
    color: #ecdd08;
}

    .scroll-indicator {
        display: none;
    }

    .about {
        grid-template-columns: 1fr;

        padding: 80px 25px;

        gap: 150px;
    }

    .about-image {
        min-height: 100px;
    }

    .services {
        padding: 80px 25px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

}

/* =========================
   CONTACT
========================= */

.contact {
    padding: 100px 8%;
    background: #20201e;
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-label {
    font-size: 13px;
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-text h2 {
    font-size: 58px;
    line-height: 1.05;
    margin: 0 0 30px;
}

.contact-text > p:last-child {
    max-width: 500px;
    color: #c8c8c8;
    line-height: 1.8;
}

.contact-info {
    border-left: 1px solid #555;
    padding-left: 50px;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item span {
    font-size: 11px;
    letter-spacing: 3px;
    color: #aaa;
}

.contact-item h3 {
    font-size: 19px;
    font-weight: 500;
    margin-top: 10px;
}

/* MOBILE */

@media (max-width: 768px) {

    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-text h2 {
        font-size: 42px;
    }

    .contact-info {
        border-left: none;
        border-top: 1px solid #555;
        padding-left: 0;
        padding-top: 35px;
    }
}

/* =========================
   FOOTER
========================= */

.footer {
    background: #151513;
    color: #e7d10d;
    padding: 45px 8% 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo img {
    width: 100px;
    height: 90px;
    object-fit: contain;
}

.footer-logo-text strong {
    display: block;
    font-size: 14px;
    letter-spacing: 2px;
    color: #faf600;
}

.footer-logo-text span {
    display: block;
    font-size: 10px;
    letter-spacing: 4px;
    color: #f01304;
}

.footer-bottom {
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #777;
    font-size: 12px;
}

@media (max-width: 768px) {

    .footer {
        padding: 40px 6% 20px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-logo {
        flex-direction: column;
        gap: 8px;
    }

    .footer-logo img {
        width: 60px;
        height: 60px;
    }

}


/* =========================
   EQUIPMENT - PREMIUM
========================= */

.equipment {
    padding: 110px 8%;
    background: #f3f1ec;
}

/* JUDUL */

.equipment .section-title {
    text-align: center;
    margin-bottom: 45px;
}

.equipment .section-title p {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 5px;
    margin: 0;
    color: #222;
}

/* GARIS KECIL DI BAWAH JUDUL */

.equipment .section-title::after {
    content: "";
    display: block;
    width: 55px;
    height: 3px;
    background: #b88a44;
    margin: 18px auto 0;
}

/* GRID */

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1050px;
    margin: 0 auto;
}

/* KARTU */

.equipment-card {
    height: 240px;
    position: relative;
    overflow: hidden;
    background: #222;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* EFEK HOVER */

.equipment-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}

/* GAMBAR */

.equipment-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.equipment-card:hover img {
    transform: scale(1.07);
}

/* OVERLAY */

.equipment-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 55px 22px 20px;
    color: white;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.88),
        rgba(0, 0, 0, 0.35),
        transparent
    );
}

/* NAMA EQUIPMENT */

.equipment-overlay h3 {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
    text-transform: uppercase;
}

/* MOBILE */

@media (max-width: 768px) {

    .equipment {
        padding: 75px 5%;
    }

    .equipment .section-title p {
        font-size: 28px;
        letter-spacing: 3px;
    }

    .equipment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .equipment-card {
        height: 190px;
    }

    .equipment-overlay {
        padding: 40px 15px 14px;
    }

    .equipment-overlay h3 {
        font-size: 16px;
    }
}


/* ==============================
   PROJECTS SECTION
================================ */

.projects {
    padding: 110px 8%;
    background: #ffffff;
}

/* TITLE */

.projects .section-title {
    text-align: center;
    margin-bottom: 55px;
}

.projects .section-title p {
    color: #b38b4d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    margin: 0 0 12px;
}

.projects .section-title h2 {
    color: #20201e;
    font-size: 42px;
    line-height: 1.1;
    margin: 0;
}


/* PROJECT GRID */

.project-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    width: 100%;
}


/* PROJECT CARD */

.project-card {
    background: #f3f1ec;
    overflow: hidden;
    width: 100%;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.project-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}


/* PROJECT IMAGE */

.project-card > img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.project-card:hover > img {
    transform: scale(1.05);
}


/* PROJECT INFORMATION */

.project-info {
    padding: 25px 22px 28px;
}

.project-info span {
    display: block;
    color: #b38b4d;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 9px;
}

.project-info h3 {
    color: #20201e;
    font-size: 21px;
    line-height: 1.2;
    margin: 0 0 12px;
}

.project-info p {
    color: #666666;
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}


/* ==============================
   TABLET
================================ */

@media (max-width: 1000px) {

    .project-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* ==============================
   MOBILE
================================ */

@media (max-width: 600px) {

    .projects {
        padding: 80px 6%;
    }

    .projects .section-title h2 {
        font-size: 32px;
    }

    .project-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .project-card > img {
        height: 240px;
    }

}

.contact-item h3 {
    color: #ffffff;
}

.contact-item h3:hover {
    color: #b38b4d;
}

.contact-label {
    color: #b38b4d;
}
.logo-rr img {
    width: 100px;
    height: 90px;
    object-fit: contain;
    display: block;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
}
.hero h1 {
    color: #ffffff;
}

/* =========================
   ABOUT US
========================= */

.about {
    padding: 100px 10%;
    background: #111;
    color: #fff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    align-items: center;
    gap: 60px;
}

/* TEXT */

.about-content {
    max-width: 675px;
}

.section-label {
    color: #e7d10d;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.about-content h2 {
    margin: 0 0 25px;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
}

.about-content h2 span {
    color: #e7d10d;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    align-items: center;
    gap: 50px;
}

/* VIDEO */
.about-video {
    width: 100%;
    max-width: 380px;
    justify-self: end;
}

.about-video video {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 5px;
}


/* MOBILE */

@media (max-width: 768px) {

    .about {
        padding: 80px 6%;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-content {
        max-width: 100%;
    }

    .about-content h2 {
        font-size: 34px;
    }

    .about-video {
        width: 100%;
        max-width: 100%;
        justify-self: stretch;
    }

    .about-video video {
        width: 100%;
        height: 220px;
    }
}
/* =========================
   CONTACT
========================= */

.contact {
    padding: 100px 8%;
    background: #111;
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-label {
    font-size: 13px;
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #b38b4d;
}

.contact-text h2 {
    font-size: 58px;
    line-height: 1.05;
    margin: 0 0 30px;
    color: #ffffff;
}

.contact-text > p:last-child {
    max-width: 500px;
    color: #c8c8c8;
    line-height: 1.8;
}

.contact-info {
    border-left: 1px solid #555;
    padding-left: 50px;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item span {
    font-size: 11px;
    letter-spacing: 3px;
    color: #aaa;
}

.contact-item h3 {
    font-size: 19px;
    font-weight: 500;
    margin-top: 10px;
}

/* LINK CONTACT */

.contact-item h3 a,
.contact-item h3 a:link,
.contact-item h3 a:visited,
.contact-item h3 a:hover,
.contact-item h3 a:active {
    color: #e7d10d !important;
    text-decoration: none !important;
}


/* MOBILE */

@media (max-width: 768px) {

    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-text h2 {
        font-size: 42px;
    }

    .contact-info {
        border-left: none;
        border-top: 1px solid #555;
        padding-left: 0;
        padding-top: 35px;
    }

}

}


