* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #111111;
    line-height: 1.5;
}

/* Untuk membuat favicon tampil circle di browser tab (hanya beberapa browser support) */
link[rel="icon"] {
    border-radius: 50%;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* NAVBAR - with transparent effect on scroll */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

/* Navbar transparant saat di awal (untuk hero section) */
.navbar.transparent {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: none;
    padding: 20px 0;
}

/* Navbar solid saat di scroll */
.navbar.solid {
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 12px 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #111;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar.solid .logo {
    font-size: 1.35rem;
}

.logo span {
    color: #d4af37;
}

.nav-menu {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #d4af37;
}

.btn-nav {
    background: #d4af37;
    color: #111 !important;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.navbar.solid .btn-nav {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-nav:hover {
    background: #c49f2c;
    color: #111 !important;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.75rem;
    cursor: pointer;
    color: #111;
}

/* Main content - beri padding top karena navbar fixed */
main {
    padding-top: 0;
    min-height: 100vh;
}

/* Hero Section - dengan margin top negatif untuk menempel ke navbar */
.hero-banner {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: -80px;
    padding-top: 80px;
}

/* Alternative untuk hero jika ingin langsung di bawah navbar */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9edf2 100%);
    margin-top: -80px;
    padding-top: 80px;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-sm {
    padding: 60px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    color: #111;
    text-align: center;
}

.section-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: #555;
    max-width: 600px;
    margin: 0 auto 48px auto;
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #111;
    color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.btn-primary:hover {
    background: #2c2c2c;
    transform: translateY(-2px);
}

/* Hero Grid untuk layout split */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: #111;
}

.hero-content p {
    font-size: 1.125rem;
    color: #444;
    margin-bottom: 32px;
    max-width: 90%;
}

.hero-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 25px 40px -12px rgba(0,0,0,0.2);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.service-item {
    text-align: center;
    padding: 32px 24px;
    background: #fff;
    border-radius: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    border: 1px solid #f0f0f0;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 35px -12px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-item p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.price {
    font-size: 1.4rem;
    font-weight: 600;
    color: #d4af37;
    margin-top: 12px;
}

.old-price {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
}

/* Slider Promosi */
.promo-slider {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 10px 30px -12px rgba(0,0,0,0.15);
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    flex: 0 0 100%;
    position: relative;
    height: 450px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-overlay {
    background: linear-gradient(0deg, rgba(0,0,0,0.5), rgba(0,0,0,0.3));
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.slide-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.slide-desc {
    font-size: 1.1rem;
    max-width: 600px;
    margin-bottom: 24px;
}

.slide-btn {
    background: #d4af37;
    color: #111;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.btn-prev { left: 20px; }
.btn-next { right: 20px; }

.dots {
    text-align: center;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    margin: 0 6px;
    cursor: pointer;
}

.dot.active {
    background: #d4af37;
}

/* Feature Slider Section */
.feature-slider-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 0.9rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.feature-slider-container {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    overflow: hidden;
}

.feature-slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 24px;
}

.feature-slide {
    flex: 0 0 calc(33.333% - 16px);
    min-width: calc(33.333% - 16px);
}

.feature-slide-card {
    background: white;
    border-radius: 20px;
    padding: 24px 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-slide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px -12px rgba(0,0,0,0.12);
}

.feature-slide-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #d4af37, #f5e6a3);
}

.feature-card-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #d4af37 0%, #f5e6a3 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.feature-card-icon i {
    font-size: 26px;
    color: #1a1a1a;
}

.feature-slide-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.feature-slide-card p {
    font-size: 0.85rem;
    line-height: 1.55;
    color: #555;
    margin-bottom: 16px;
}

/* Testimonial */
.testimonial {
    background: #f8f9fc;
    text-align: center;
}

.stars {
    font-size: 1.8rem;
    letter-spacing: 6px;
    color: #f5b042;
    margin-bottom: 24px;
}

.testimonial-text {
    font-size: 1.5rem;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto 32px;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

.blog-card:hover {
    box-shadow: 0 20px 35px -12px rgba(0,0,0,0.1);
}

.blog-img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.blog-content {
    padding: 24px;
}

.blog-title {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.read-more {
    color: #d4af37;
    font-weight: 500;
    text-decoration: none;
}

/* Map */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    margin-top: 24px;
}

#map {
    height: 400px;
    width: 100%;
}

/* Kontak Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #d4af37;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

/* Floating WhatsApp */
.float-wa {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 100;
    transition: all 0.3s;
    text-decoration: none;
}

.float-wa:hover {
    transform: scale(1.1);
    background: #20b859;
}

/* Footer */
.footer {
    background: #111;
    color: #aaa;
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #aaa;
    text-decoration: none;
}

.footer-col a:hover {
    color: #d4af37;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #222;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .feature-slide,
    .product-slide {
        flex: 0 0 calc(50% - 12px);
        min-width: calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        box-shadow: 2px 0 20px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        padding: 12px 24px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        max-width: 100%;
        font-size: 1rem;
    }
    
    .hero-image {
        order: -1;
        margin-bottom: 32px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .slide {
        height: 350px;
    }
    
    .slide-title {
        font-size: 1.5rem;
    }
    
    .feature-slide,
    .product-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .float-wa {
        width: 48px;
        height: 48px;
        font-size: 20px;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .feature-slide-card {
        padding: 18px 16px;
    }
    
    .feature-card-icon {
        width: 45px;
        height: 45px;
    }
    
    .feature-card-icon i {
        font-size: 20px;
    }
}