<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --primary: #f56f0f;
    /* Warna cokelat utama */
    --secondary: #F5F5DC;
    /* Warna cream */
    --accent: #D2691E;
    /* Warna cokelat aksen */
    --dark: #5D4037;
    /* Warna cokelat tua */
    --light: #FFFFFF;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f5f5f5;
    padding-top: 80px;
    /* Untuk mengkompensasi navbar fixed */
}

.text-accent {
    color: var(--accent);
}

/* NAVBAR STICKY DENGAN PERUBAHAN WARNA */
.header {
    background-color: rgba(201, 173, 152, 0.9);
    /* Semi-transparan */
    color: white;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header.scrolled {
    background-color: var(--dark);
    /* Warna lebih gelap saat di-scroll */
    padding: 10px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.header.scrolled .logo img {
    height: 40px;
    /* Logo lebih kecil saat di-scroll */
}

.logo-text h1 {
    font-size: 20px;
    margin: 0;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
}

.header.scrolled .logo-text h1 {
    font-size: 18px;
    /* Teks lebih kecil saat di-scroll */
}

.logo-text p {
    font-size: 12px;
    margin: 0;
    opacity: 0.8;
    color: var(--secondary);
    transition: all 0.3s ease;
}

.header.scrolled .logo-text p {
    font-size: 11px;
    /* Subteks lebih kecil saat di-scroll */
}

/* Menu Navigasi */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu a {
    color: rgb(12, 12, 12);
    text-decoration: none;
    margin-left: 20px;
    font-size: 14px;
    transition: all 0.3s;
    font-weight: 500;
    white-space: nowrap;
    position: relative;
}

.nav-menu a:hover {
    color: var(--secondary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    background-color: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Menu Mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s;
}

/* Responsive Menu */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.3s ease;
        z-index: 999;
    }

    .header.scrolled .nav-menu {
        top: 70px;
        /* Sesuaikan dengan tinggi navbar scrolled */
    }

    .nav-menu.active {
        transform: scaleY(1);
    }

    .nav-menu a {
        margin: 10px 0;
        padding: 10px 15px;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu a:last-child {
        border-bottom: none;
    }

    .menu-toggle {
        display: flex;
    }

    .btn {
        padding: 8px 15px;
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

    /* Animasi hamburger icon */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, #afa297 0%, #e79d7a 100%);
    color: rgb(19, 18, 18);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #FFD700;
}

.hero-text h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    width: 100%;
    text-align: center;
}

.hero .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.hero .btn i {
    margin-right: 8px;
}

.btn-primary {
    background-color: #FFD700;
    color: #5D4037;
}

.btn-primary:hover {
    background-color: #FFC107;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hero-image {
    flex: 1;
    text-align: center;
    display: block;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Hero */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-content {
        flex-direction: column-reverse;
    }

    .hero-text {
        display: none;
        text-align: center;
        max-width: 100%;
    }

    .hero-image {
        width: 100%;
        margin: 0 auto;
    }

    .hero-image img {
        max-height: 300px;
        width: auto;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (min-width: 769px) {
    .hero-text {
        display: block !important;
    }
}

/* Bagian lainnya (features, services, footer) tetap sama */
.features {
    padding: 50px 0 30px;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 32px;
    color: var(--primary);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: var(--accent);
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.feature-card {
    background-color: var(--secondary);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(139, 69, 19, 0.2);
}

.feature-icon {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 25px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark);
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.services {
    padding: 50px 0 30px;
    margin-top: -20px;
    background-color: var(--secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 1px solid rgba(139, 69, 19, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-img {
    height: 160px;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 50px;
}

.service-content {
    padding: 15px;
}

.service-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-content p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

.footer {
    background-color: var(--dark);
    color: white;
    padding: 40px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
}

.footer-col p {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.footer-col ul li i {
    margin-right: 10px;
    color: var(--accent);
    width: 20px;
    text-align: center;
}

.footer-col ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s;
    font-size: 15px;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--secondary);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.7;
}</pre></body></html>