/* ==================== RESET ==================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #F7F5EF;
    color: #171914;
}


/* ==================== CONTAINER ==================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}


/* ==================== NAVBAR ==================== */

.navbar {
    width: 100%;
    height: 64px;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #F7F5EF;
}

.navbar .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* ==================== LOGO ==================== */

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #171914;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
}

.logo img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}


/* ==================== NAVIGATION ==================== */

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-menu a {
    color: #171914;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav-menu a:hover {
    color: #304D24;
}


/* ==================== HERO ==================== */

.hero {
    padding: 68px 0 70px;
}

.hero-content {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 70px;
}

.hero-text {
    max-width: 500px;
}

.hero h1 {
    margin-bottom: 24px;
    color: #171914;
    font-size: 52px;
    line-height: 1.04;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.hero-description {
    max-width: 440px;
    margin-bottom: 30px;
    color: #5F625A;
    font-size: 15px;
    line-height: 1.6;
}

.hero-visual {
    width: 100%;
    height: 390px;
    overflow: hidden;
    border-radius: 8px;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


/* ==================== BUTTON ==================== */

.btn-primary {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 6px;
    background-color: #304D24;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #243B1B;
    transform: translateY(-1px);
}


/* ==================== ABOUT ==================== */

.about {
    padding: 120px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.about-visual {
    width: 100%;
    height: 520px;
    overflow: hidden;
    border-radius: 8px;
}

.about-visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.about-text {
    max-width: 520px;
}

.section-label {
    margin-bottom: 14px;
    color: #304D24;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.about h2 {
    margin-bottom: 24px;
    color: #171914;
    font-size: 42px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -1px;
}

.about-description {
    margin-bottom: 16px;
    color: #5F625A;
    font-size: 15px;
    line-height: 1.7;
}

.about-points {
    margin-top: 35px;
}

.about-point {
    display: flex;
    gap: 20px;
    padding: 18px 0;
    border-top: 1px solid #DEDCD4;
}

.about-point:last-child {
    border-bottom: 1px solid #DEDCD4;
}

.about-number {
    min-width: 30px;
    color: #304D24;
    font-size: 13px;
    font-weight: 600;
}

.about-point h3 {
    margin-bottom: 6px;
    color: #171914;
    font-size: 15px;
    font-weight: 600;
}

.about-point p {
    color: #5F625A;
    font-size: 13px;
    line-height: 1.5;
}


/* ==================== SERVICES ==================== */

.services {
    padding: 120px 0;
}

.services-header {
    text-align: center;
    margin-bottom: 40px;
}

.services-header h2 {
    color: #171914;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.8px;
}

.services-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.service-category {
    padding: 14px 56px 28px;
    background-color: #F2F0E8;
    border: 1px solid #DEDCD4;
    border-radius: 12px;
}

.service-category > h3 {
    margin-bottom: 30px;
    color: #171914;
    text-align: center;
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.service-item {
    display: grid;
    grid-template-columns: 160px 1fr;
    align-items: center;
    gap: 18px;
    min-height: 100px;
}

.service-item-image {
    width: 160px;
    height: 105px;
    overflow: hidden;
    border-radius: 8px;
}

.service-item-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.service-item-content h4 {
    margin-bottom: 8px;
    color: #171914;
    font-size: 16px;
    font-weight: 600;
}

.service-item-content p {
    max-width: 220px;
    color: #5F625A;
    font-size: 13px;
    line-height: 1.4;
}


/* ==================== CONTACT ==================== */

.contact {
    padding: 120px 0;
}

.contact-content {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.contact-content .section-label {
    margin-bottom: 14px;
}

.contact-content h2 {
    margin-bottom: 20px;
    color: #171914;
    font-size: 42px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -1px;
}

.contact-description {
    max-width: 600px;
    margin: 0 auto 35px;
    color: #5F625A;
    font-size: 15px;
    line-height: 1.7;
}

.contact-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.contact-button {
    width: auto;
    min-width: 200px;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 24px;
    border: 1px solid #304D24;
    border-radius: 12px;
    background-color: #304D24;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.contact-button:hover {
    background-color: #243B1B;
}

.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    object-fit: contain;
}


/* ==================== FOOTER ==================== */

.site-footer {
    background-color: #f7f5f0;
    padding: 60px 0 30px;
    color: #171914;
}

.footer-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-top: 20px;
    padding-bottom: 80px;
    border-top: 1px solid #e2d9cd;
}

.footer-brand {
    max-width: 320px;
}

.brand-title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    color: #171914;
    text-transform: uppercase;
}

.brand-desc {
    font-size: 14px;
    color: #7d8078;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-col a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    color: #171914;
    letter-spacing: 0.5px;
    transition: opacity 0.2s ease;
}

.footer-col a:hover {
    opacity: 0.7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e2d9cd;
    font-size: 13px;
    font-weight: 600;
    color: #171914;
}


/* ==================== RESPONSIVE TABLET (Max-width: 900px) ==================== */

@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-visual {
        height: 350px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-visual {
        height: 400px;
    }

    .services-categories {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


/* ==================== RESPONSIVE MOBILE (Max-width: 768px) ==================== */

@media (max-width: 768px) {

    /* 1. CONTAINER & PADDING */
    .container,
    .footer-container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* 2. NAVBAR */
    .navbar {
        height: auto;
        padding: 15px 0;
    }

    .navbar .container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-menu {
        gap: 15px 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-menu a {
        font-size: 13px;
    }

    /* 3. HERO */
    .hero {
        padding: 40px 0 20px;
    }

    .hero-content {
        display: flex;
        flex-direction: column-reverse;
        gap: 25px;
        text-align: center;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 1.25;
        letter-spacing: -0.5px;
    }

    .hero-description {
        font-size: 14px;
        margin: 10px auto 20px;
    }

    .hero-visual {
        height: 260px;
    }

    /* 4. ABOUT (FIX JARAK GAMBAR KE TEKS) */
    .about {
        padding: 40px 0;
    }

    .about-content {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .about-visual {
        width: 100%;
        height: auto !important; /* Solusi melepaskan height 520px desktop */
        max-height: 280px;
    }

    .about-text {
        text-align: left;
    }

    .about h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .about-description {
        font-size: 14px;
    }

    .about-point {
        gap: 15px;
        padding: 14px 0;
    }

    /* 5. SERVICES */
    .services {
        padding: 40px 0;
    }

    .services-header h2 {
        font-size: 26px;
    }

    .service-category {
        padding: 20px;
    }

    .service-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .service-item-image {
        width: 100%;
        height: 180px;
    }

    .service-item-content p {
        max-width: 100%;
    }

    /* 6. CONTACT */
    .contact {
        padding: 50px 0;
    }

    .contact-content h2 {
        font-size: 28px;
    }

    .contact-description {
        font-size: 14px;
    }

    .contact-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .contact-button {
        width: 100%;
        max-width: 320px;
    }

    /* 7. FOOTER */
    .site-footer {
        padding: 40px 0 20px;
    }

    .footer-top {
        flex-direction: column;
        gap: 30px;
        padding-bottom: 40px;
    }

    .footer-links {
        flex-direction: column;
        gap: 25px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
/* ==================== FLOATING WHATSAPP BUTTON ==================== */

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    background-color: #25D366; /* Warna khas WhatsApp */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 9999; /* Agar selalu tampil di atas elemen lain */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1); /* Efek membesar halus saat di-hover */
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.35);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
}

/* Penyesuaian Ukuran di Layar HP */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
}