/*======================================*/
/*===== Custom css ditulis di sini =====*/
/*======================================*/


* {
    padding: 0;
    margin: 0;
    /* border: 1px solid rgba(255, 0, 0, 0.248); */
}

:root {

    /* font size */
    --text-xs: 12px;
    --text-sm: 14px;
    --text-normal: 16px;
    --text-lg: 18px;
    --text-xl: 20px;
    --text-2xl: 24px;
    --text-3xl: 30px;
    --text-4xl: 36px;
    --text-5xl: 48px;
    --text-6xl: 60px;
    --text-7xl: 72px;
    --text-8xl: 96px;
    --text-9xl: 128px;

    /* colors */
    --merah1: #E8121A;
    --biru1: #29B6E8;
    --hitam: #1A1A1A;
    --putih: #FFFFFF;

    --abu-muda: #F6F6F6;
    --abu-tua: #828282;
    --abu2: #4B5563;

    --barlow-condensed: 'Barlow Condensed', 'Oswald', sans-serif;
    --barlow: 'Barlow', 'Roboto', sans-serif;
    --jetbrains-mono: 'JetBrains Mono', monospace;
}

body {
    overflow-x: hidden;
    margin-top: 100px;
    font-family: var(--barlow);
    background-color: var(--putih);
}

a {
    text-decoration: none !important;
}

img {
    width: 100%;
}

*,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    padding: 0;
    margin: 0;
    color: var(--hitam);
}

button {
    border: 0;
    background-color: transparent;
}

li {
    list-style: none;
}

/*====================================================*/
/*==================== COMPONENTS ====================*/
/*====================================================*/

/*===================*/
/*===== TOP BAR =====*/
/*===================*/
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1001;
    width: 100%;
    height: 30px;

    background: var(--hitam);
    color: var(--gray-300);
    font-size: 13px;
    padding: 8px 0;
    font-family: var(--mono);


}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.topbar-info {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;

}

.topbar-info span {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    color: var(--putih);
}

.topbar .accent {
    color: var(--biru1);
}

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

nav {
    position: fixed;
    top: 30px;
    left: 0;
    z-index: 1002;

    display: flex;
    align-items: center;

    width: 100%;
    height: 70px;

    padding: 16px 0;

    background-color: var(--putih);

    border-bottom: 2px solid var(--merah1);
}

nav .nav-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .nav-row .nav-logo {
    width: 20%;
    height: 100%;
}

nav .nav-row .nav-logo a {
    display: block;
    width: 100%;
    height: 100%;
}

nav .nav-row .nav-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

nav .nav-row .nav-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 40px;
    width: 80%;
}

nav .nav-row .nav-links a {
    font-size: var(--text-normal);
    font-weight: 600;
    color: var(--hitam);
    position: relative;
    transition: color 0.3s;
    text-transform: uppercase;
}

nav .nav-row .nav-links a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--merah1);
    transition: width 0.3s;
}

nav .nav-row .nav-links a:hover {
    color: var(--merah1);
}

nav .nav-row .nav-links a:hover::after {
    width: 100%;
}

nav .nav-row .nav-button {
    display: none;
}

nav .nav-row .nav-button img {
    width: 32px;
    cursor: pointer;
}

/*===================*/
/*===== OFFCANVAS ====*/
/*===================*/

.menu-offcanvas .offcanvas-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.menu-offcanvas .offcanvas-links a {
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--hitam);
}

.menu-offcanvas .offcanvas-links a:hover {
    color: var(--merah1);
}

/*===================*/
/*===== WHATSAPP =====*/
/*===================*/

.button-whatsapp {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 1000;
    width: 60px;
}

/*===================*/
/*===== BUTTON =====*/
/*===================*/

.button-merah img {
    width: 20px;
    height: 20px;
}

.button-merah {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background-color: var(--merah1);
    color: var(--putih) !important;
    font-family: var(--barlow-condensed);
    font-size: var(--text-lg);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-radius: 0;

    transition: all .25s;
}

.button-merah:hover {
    background-color: #c40e14;
}

.button-biru img {
    width: 20px;
    height: 20px;
}

.button-biru {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background-color: var(--biru1);
    color: var(--putih) !important;
    font-family: var(--barlow-condensed);
    font-size: var(--text-lg);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-radius: 0;

    transition: all .25s;
}

.button-biru:hover {
    background-color: #11a6dc;
}


/*==========================*/
/*===== CONTACT SECTION ====*/
/*==========================*/
.contact-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.contact-section .contact-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.contact-section .contact-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(26, 26, 26, 0.92);
    z-index: 1;
}

.contact-section .contact-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(220, 38, 38, 0.08), rgba(37, 99, 235, 0.08));
    z-index: 2;
}

.contact-section .contact-content-z {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.contact-section h2 {
    font-family: var(--barlow-condensed);
    font-weight: 800;
    font-size: var(--text-4xl);
    text-transform: uppercase;
    color: var(--putih);
    line-height: 1.2;
}

.button-whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background-color: #25D366;
    color: var(--putih) !important;
    font-family: var(--barlow-condensed);
    font-size: var(--text-lg);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background-color .25s;
}

.button-whatsapp-cta:hover {
    background-color: #1da851;
}

.button-whatsapp-cta img {
    width: 32px;
    height: 32px;
    color: var(--putih);
    flex-shrink: 0;
}

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

footer {
    background-color: var(--hitam);
    padding: 60px 0 0;
}

.footer-atas {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo {
    width: 300px;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-contact-info span {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.45);
    font-family: var(--mono);
}

.footer-contact-info span svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 1px;
    color: rgba(255, 255, 255, 0.45);
}

.footer-col-title {
    font-size: var(--text-normal);
    font-weight: 700;
    color: var(--putih) !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.footer-col-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col-links a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.45);
}

.footer-col-links a:hover {
    color: var(--putih);
}

.footer-bawah {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
}

.footer-bawah p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.35);
}

h4.title-merah {
    position: relative;
    padding-left: 40px;

    font-family: var(--jetbrains-mono);
    font-size: var(--text-sm);
    text-transform: uppercase;
    color: var(--merah1);
}

h4.title-merah::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 32px;
    height: 2px;
    background-color: var(--merah1);
    transform: translateY(-50%);
}

h4.title-biru {
    position: relative;
    padding-left: 40px;

    font-family: var(--jetbrains-mono);
    font-size: var(--text-sm);
    text-transform: uppercase;
    color: var(--biru1);
}

h4.title-biru::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 32px;
    height: 2px;
    background-color: var(--biru1);
    transform: translateY(-50%);
}

/*====================================================*/
/*==================== PAGES ====================*/
/*====================================================*/

/*===================*/
/*===== HOME PAGE ====*/
/*===================*/

/*===== HOME HERO =====*/
.home-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
}

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

.home-hero .hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.home-hero .hero-content h1 {
    font-family: var(--barlow-condensed);
    font-size: var(--text-8xl);
    font-weight: 800;
    color: var(--putih);
    max-width: 900px;
    text-transform: uppercase;
}

.home-hero .hero-content h1 .title-1 {
    color: var(--merah1);
}

.home-hero .hero-content h1 .title-2 {
    color: var(--biru1);
}

.home-hero .hero-content p {
    font-size: var(--text-lg);
    color: var(--abu-muda);
    max-width: 600px;
}

.home-stats {
    padding: 40px 0;
    background-color: var(--merah1);
}

.home-stats .stats-row {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 32px;
}

.home-stats .item {
    width: 25%;
    padding: 0 12px;
    border-left: 3px solid #FFFFFF80;

    transition: .25s;
}

.home-stats .item:hover {
    border-left: 3px solid #FFFFFF;
}

.home-stats .item h3 {
    font-family: var(--barlow-condensed);
    font-size: var(--text-6xl);
    font-weight: 800;
    color: var(--putih);
    text-transform: uppercase;
}

.home-stats .item p {
    font-family: var(--jetbrains-mono);
    font-size: var(--text-sm);
    color: var(--abu-muda);
    text-transform: uppercase;
    letter-spacing: 1.8px;
}

/*===== HOME PRODUCT =====*/
.home-product {
    padding: 100px 0;
}

.home-product h2 {
    font-family: var(--barlow-condensed);
    font-weight: 800;
    font-size: var(--text-5xl);

    margin-top: 12px;

    width: 50%;
}

.home-product .container>p {
    color: #4B5563;
    margin-top: 20px;
}

.home-product .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;

    margin-top: 32px;
}

.home-product .product-grid .item {
    position: relative;

    border: 1px solid #D4D4D4;

    transition: .25s;
}

.home-product .product-grid .item .tipe {
    position: absolute;
    top: 8px;
    left: 8px;
    background-color: var(--merah1);
    padding: 4px 10px;

    font-family: var(--jetbrains-mono);
    font-size: var(--text-xs);
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: var(--putih);
}

.home-product .product-grid .item .gambar {
    aspect-ratio: 3/2;
    object-fit: cover;

}

.home-product .product-grid .item .gambar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-product .product-grid .item .konten {
    padding: 24px;
}

.home-product .product-grid .item .konten h5 {
    font-family: var(--barlow-condensed);
    font-weight: 700;
    font-size: var(--text-2xl);
    color: var(--hitam);
    margin-bottom: 8px;
}

.home-product .product-grid .item .konten p {}

.home-product .product-grid .item .konten .link {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;

    padding-top: 16px;

    border-top: 1px solid #F5F5F5;

    justify-content: space-between;
}

.home-product .product-grid .item .konten .link span {
    font-family: var(--jetbrains-mono);
    font-size: var(--text-lg);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--merah1);
}

.home-product .product-grid .item .konten .link img {
    width: 28px;
}

.home-product .product-grid .item:hover {

    transform: translate(2px, -8px);

}

/*=====================*/
/*===== HOME SEWA =====*/
/*=====================*/
.home-sewa {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.home-sewa .sewa-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.home-sewa .sewa-overlay {
    position: absolute;
    inset: 0;
    background-color: #1a1a1aEE;
    z-index: 1;
}

.home-sewa .sewa-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(220, 38, 38, 0.08), rgba(37, 99, 235, 0.08));
    z-index: 2;
}

.home-sewa .sewa-content-z {
    position: relative;
    z-index: 10;
}

.home-sewa h2 {
    font-family: var(--barlow-condensed);
    font-size: var(--text-5xl);
    font-weight: 800;
    color: var(--putih);
    text-transform: uppercase;
    margin-bottom: 16px;
    margin-top: 16px;
}

.home-sewa .container>p {
    font-size: var(--text-normal);
    color: var(--abu-muda);
    max-width: 600px;
}

.home-sewa .sewa-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;

    margin-top: 32px;
}

.home-sewa .sewa-grid .item {
    position: relative;

    background-color: #2D2D2D;

    transition: .25s;
}

.home-sewa .sewa-grid .item .tipe {
    position: absolute;
    top: 8px;
    left: 8px;
    background-color: var(--merah1);
    padding: 4px 10px;

    font-family: var(--jetbrains-mono);
    font-size: var(--text-xs);
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: var(--putih);
}

.home-sewa .sewa-grid .item .gambar {
    aspect-ratio: 3/2;
    object-fit: cover;

}

.home-sewa .sewa-grid .item .gambar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-sewa .sewa-grid .item .konten {
    padding: 24px;
}

.home-sewa .sewa-grid .item .konten h5 {
    font-family: var(--barlow-condensed);
    font-weight: 700;
    font-size: var(--text-2xl);
    color: var(--putih);
    margin-bottom: 8px;
}

.home-sewa .sewa-grid .item .konten p {
    font-family: var(--jetbrains-mono);
    font-size: var(--text-sm);
    color: var(--abu-tua);
    letter-spacing: 1.2px;
    margin-bottom: 16px;
}

.home-sewa .sewa-grid .item .konten .link {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;

    padding-top: 16px;

    border-top: 1px solid #F5F5F5;

    justify-content: space-between;
}

.home-sewa .sewa-grid .item .konten .link span {
    font-family: var(--jetbrains-mono);
    font-size: var(--text-lg);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--biru1);
}

.home-sewa .sewa-grid .item .konten .link img {
    width: 28px;
}

.home-sewa .sewa-grid .item:hover {

    transform: translate(2px, -8px);

}

.home-sewa .link-sewa {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 32px;

    padding-top: 32px;

    border-top: 1px solid var(--abu-tua)
}

.home-sewa .link-sewa>p {
    font-family: var(--barlow-condensed);
    font-size: var(--text-xl);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #adadad
}

/*====================*/
/*===== HOME WHY =====*/
/*====================*/
.home-why {
    background-color: var(--abu-muda);
    padding: 80px 0;
}

.home-why h2 {
    font-family: var(--barlow-condensed);
    font-weight: 800;
    font-size: var(--text-5xl);
    text-transform: uppercase;
    width: 80%;
    margin-top: 16px;
    line-height: 1.15;
}

.home-why .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 48px;
    border: 1px solid #D4D4D4;
}

.home-why .why-grid .item {
    background-color: var(--putih);
    padding: 32px 28px;
    border-right: 1px solid #D4D4D4;
    transition: box-shadow .25s;
}

.home-why .why-grid .item:last-child {
    border-right: none;
}

.home-why .why-grid .item:hover {
    box-shadow: inset 0 -4px 0 0 var(--merah1);
}

.home-why .why-grid .item .icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
}

.home-why .why-grid .item .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-why .why-grid .item h5 {
    font-family: var(--barlow-condensed);
    font-weight: 700;
    font-size: var(--text-xl);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.home-why .why-grid .item p {
    font-size: var(--text-sm);
    color: var(--abu2);
    line-height: 1.6;
}

/*=====================*/
/*===== HOME CLIENT ===*/
/*=====================*/
.home-client {
    padding: 80px 0;
}

.home-client .container>h4 {
    display: inline-block;
}

.home-client .container {
    text-align: center;
    margin-bottom: 48px;
}

.home-client h2 {
    font-family: var(--barlow-condensed);
    font-weight: 800;
    font-size: var(--text-5xl);
    text-transform: uppercase;
    margin-top: 16px;
}

.client-swiper {
    width: 100%;
    padding: 0 40px;
}

.client-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    transition: all .3s;
}

.client-swiper .swiper-slide img {
    width: 100%;
    max-width: 120px;
    height: 60px;
    object-fit: contain;
}

/*====================*/
/*===== HOME FAQ =====*/
/*====================*/
.home-faq {
    background-color: #F0F0F0;
    padding: 80px 0;
}

.home-faq h2 {
    font-family: var(--barlow-condensed);
    font-weight: 800;
    font-size: var(--text-5xl);
    text-transform: uppercase;
    margin-top: 16px;
    margin-bottom: 40px;
}

.faq-accordion .accordion-item {
    border-radius: 0 !important;
    border: 1px solid #D4D4D4;
    background-color: var(--putih);
    margin-bottom: 12px;
}

.faq-accordion .accordion-header {
    padding: 0;
}

.faq-accordion .accordion-button {
    border-radius: 0 !important;
    background-color: var(--putih);
    font-family: var(--barlow);
    font-weight: 600;
    font-size: var(--text-normal);
    color: var(--hitam);
    box-shadow: none;
    padding: 14px 20px;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: var(--putih);
    color: var(--hitam);
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    filter: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E8121A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-size: 20px;
    width: 20px;
    height: 20px;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E8121A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}

.faq-accordion .accordion-body {
    padding: 0 20px 14px;
    font-size: var(--text-normal);
    color: var(--abu2);
    line-height: 1.7;
}

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

.about-header {
    padding: 80px 0;
    background-color: var(--hitam);
}

.about-header h1 {
    font-size: var(--text-5xl);
    font-weight: 700;
    color: var(--putih);
    margin-bottom: 16px;
}

.about-header p {
    font-size: var(--text-lg);
    color: var(--abu-muda);
}

.about-visimisi {
    padding: 100px 0;
}

.about-visimisi .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.about-visimisi h2 {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--biru1);
    margin-bottom: 16px;
}


/*======================*/
/*===== PRODUCT PAGE ====*/
/*======================*/

.product-header {
    padding: 80px 0;
    background-color: var(--hitam);
}

.product-header h1 {
    font-size: var(--text-5xl);
    font-weight: 700;
    color: var(--putih);
    margin-bottom: 16px;
}

.product-header p {
    font-size: var(--text-lg);
    color: var(--abu-muda);
}

.product-products {
    padding: 100px 0;
}

.product-products .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.product-products .product-item {
    background-color: var(--abu-muda);
    padding: 32px;
    border-radius: 8px;
}

.product-products .product-item h3 {
    font-size: var(--text-2xl);
    font-weight: 600;
    margin-bottom: 12px;
}


/*======================*/
/*===== CLIENT PAGE ====*/
/*======================*/

.client-header {
    padding: 80px 0;
    background-color: var(--hitam);
}

.client-header h1 {
    font-size: var(--text-5xl);
    font-weight: 700;
    color: var(--putih);
    margin-bottom: 16px;
}

.client-clients {
    padding: 100px 0;
}

.client-clients .client-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.client-clients .client-item {
    background-color: var(--abu-muda);
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}


/*====================*/
/*===== BLOG PAGE ====*/
/*====================*/

.blog-header {
    padding: 80px 0;
    background-color: var(--hitam);
}

.blog-header h1 {
    font-size: var(--text-5xl);
    font-weight: 700;
    color: var(--putih);
    margin-bottom: 16px;
}

.blog-posts {
    padding: 100px 0;
}

.blog-posts .posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-posts .post-item {
    background-color: var(--abu-muda);
    border-radius: 8px;
    overflow: hidden;
}

.blog-posts .post-item h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    padding: 20px 20px 8px;
}

.blog-posts .post-item p {
    padding: 0 20px 20px;
    font-size: var(--text-sm);
    color: var(--abu-tua);
}


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

.contact-header {
    padding: 80px 0;
    background-color: var(--hitam);
}

.contact-header h1 {
    font-size: var(--text-5xl);
    font-weight: 700;
    color: var(--putih);
    margin-bottom: 16px;
}

.contact-form {
    padding: 100px 0;
}

.contact-form form {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form .form-group label {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--hitam);
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--abu-tua);
    border-radius: 4px;
    font-size: var(--text-normal);
    font-family: var(--barlow);
    outline: none;

}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    border-color: var(--biru1);
}

.contact-info {
    padding: 60px 0 100px;
}

.contact-info .info-item {
    margin-bottom: 16px;
}


/*======================*/
/*===== SINGLE BLOG ====*/
/*======================*/

.single-blog {
    padding: 60px 0 100px;
    max-width: 760px;
    margin: 0 auto;
}

.single-blog .blog-header h1 {
    font-size: var(--text-4xl);
    font-weight: 700;
    margin-bottom: 12px;
}

.single-blog .blog-header .meta {
    font-size: var(--text-sm);
    color: var(--abu-tua);
    margin-bottom: 32px;
}

.single-blog .blog-thumbnail {
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
}

.single-blog .blog-content {
    font-size: var(--text-normal);
    line-height: 1.8;
}


/*=================*/
/*===== 404 PAGE ====*/
/*=================*/

.page-404 {
    padding: 100px 0;
    text-align: center;
}

.page-404 .content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.page-404 img {
    width: 300px;
}

.page-404 h1 {
    font-size: var(--text-8xl);
    font-weight: 700;
    color: var(--merah1);
}


/*====================================================*/
/*==================== RESPONSIVE ====================*/
/*====================================================*/

@media only screen and (max-width: 992px) {

    body {
        margin-top: 70px;
    }

    nav {
        height: 70px;
    }

    nav .nav-row .nav-logo {
        width: 40%;
    }

    nav .nav-row .nav-links {
        display: none;
    }

    nav .nav-row .nav-button {
        display: flex;
    }

    /* HOME */
    .home-hero .hero-content h1 {
        font-size: var(--text-5xl);
    }

    .home-product .product-grid {
        grid-template-columns: 1fr;
    }

    .home-client .client-carousel .item {
        min-width: 150px;
    }

    /* ABOUT */
    .about-visimisi .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* PRODUCT */
    .product-products .product-grid {
        grid-template-columns: 1fr;
    }

    /* CLIENT */
    .client-clients .client-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* BLOG */
    .blog-posts .posts-grid {
        grid-template-columns: 1fr;
    }

    /* FOOTER */
    .footer-atas {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

}