/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #FF6B35;
    --primary-dark: #E85D2C;
    --primary-light: #FF8A5C;
    --secondary: #2D2D2D;
    --dark: #1A1A1A;
    --gray: #6B6B6B;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.5;
    overflow-x: hidden;
    background: var(--white);
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--light-gray); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}
.header.scrolled { background: var(--white); box-shadow: var(--shadow-md); }

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

.logo-img { height: 150px; width: auto; object-fit: contain; transition: var(--transition); }
.logo-img:hover { transform: scale(1.05); }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}
.menu-toggle.active { color: var(--primary); }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}
.nav-menu li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}
.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}
.nav-menu li a:hover { color: var(--primary); }
.nav-menu li a:hover::after { width: 100%; }

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 2px solid transparent;
}
.contact-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

/* Hero Section */
.hero {
    min-height: 90vh;
    background: linear-gradient(135deg, #FFF5F0 0%, #FFE8E0 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero-content { max-width: 700px; position: relative; z-index: 2; }
.hero-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}
.highlight { color: var(--primary); position: relative; display: inline-block; }
.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(255, 107, 53, 0.2);
    z-index: -1;
}
.hero-description {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 2px solid transparent;
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--dark);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 2px solid var(--dark);
}
.btn-outline:hover { background: var(--dark); color: var(--white); transform: translateY(-3px); }
.hero-wave { position: absolute; bottom: 0; left: 0; width: 100%; line-height: 0; }

/* Section Header */
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.section-header h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; }
.section-header p { color: var(--gray); font-size: 1rem; }

/* Products Grid */
.products-section, .all-products-section { padding: 5rem 0; background: var(--white); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.product-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.product-image {
    position: relative;
    overflow: hidden;
    background: var(--light-gray);
    height: 250px;
}
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.product-card:hover .product-image img { transform: scale(1.1); }
.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
}
.product-info { padding: 1.5rem; }
.product-info h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.product-price { font-size: 1.5rem; font-weight: 800; color: var(--primary); margin-bottom: 0.5rem; }
.product-desc { font-size: 0.85rem; color: var(--gray); margin-bottom: 1rem; }
.btn-product {
    width: 100%;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.7rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}
.btn-product:hover { background: var(--primary); color: var(--white); }

/* About Section */
.about-section { padding: 5rem 0; background: var(--light-gray); }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-text h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 1.5rem; }
.about-text p { color: var(--gray); margin-bottom: 1rem; line-height: 1.6; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
.stat { text-align: center; }
.stat-number { display: block; font-size: 2rem; font-weight: 800; color: var(--primary); }
.stat-label { font-size: 0.8rem; color: var(--gray); }
.about-image { position: relative; }
.about-image img { width: 100%; border-radius: 20px; box-shadow: var(--shadow-md); }
.about-experience {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    min-width: 100px;
}
.exp-number { display: block; font-size: 2rem; font-weight: 800; line-height: 1; }
.exp-text { font-size: 0.7rem; }

/* Advantages Section */
.advantages-section { padding: 5rem 0; background: var(--white); }
.advantages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.advantage-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}
.advantage-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.8rem;
    transition: var(--transition);
}
.advantage-card:hover .advantage-icon { transform: scale(1.1) rotate(360deg); }
.advantage-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.5rem; }
.advantage-card p { color: var(--gray); font-size: 0.85rem; }

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    text-align: center;
}
.cta-content h2 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
.cta-content p { margin-bottom: 2rem; opacity: 0.9; }
.cta-content .btn-primary { background: var(--white); color: var(--primary); }
.cta-content .btn-primary:hover { background: var(--dark); color: var(--white); transform: translateY(-3px); }

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-logo { height: 150px; width: auto; margin-bottom: 1rem; }
.footer-section p { color: rgba(255,255,255,0.7); margin-bottom: 0.5rem; font-size: 0.85rem; }
.footer-section p i { width: 25px; color: var(--primary); }
.footer-section h4 { margin-bottom: 1rem; font-size: 1rem; }
.social-icons { display: flex; gap: 1rem; margin-top: 1rem; }
.social-icons a {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}
.social-icons a:hover { background: var(--primary); transform: translateY(-3px); }
.newsletter-form { display: flex; gap: 0.5rem; margin-top: 1rem; }
.newsletter-form input {
    flex: 1;
    padding: 0.7rem;
    border: none;
    border-radius: 10px;
    background: rgba(255,255,255,0.1);
    color: var(--white);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form button {
    background: var(--primary);
    border: none;
    padding: 0.7rem 1rem;
    border-radius: 10px;
    color: var(--white);
    cursor: pointer;
}
.newsletter-form button:hover { background: var(--primary-dark); }
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 968px) {
    .menu-toggle { display: block; }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 1rem;
        box-shadow: var(--shadow-md);
    }
    .nav-menu.active { display: flex; }
    .hero-title { font-size: 3rem; }
    .about-content { grid-template-columns: 1fr; gap: 2rem; }
    .about-image { order: -1; }
}
@media (max-width: 768px) {
    .container { padding: 0 1.5rem; }
    .hero-title { font-size: 2.5rem; }
    .section-header h2 { font-size: 2rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn-primary, .hero-buttons .btn-outline { text-align: center; justify-content: center; }
    .products-grid { grid-template-columns: 1fr; }
    .advantages-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .social-icons { justify-content: center; }
    .newsletter-form { max-width: 300px; margin: 0 auto; }
}
@media (max-width: 480px) {
    .contact-btn span { display: none; }
    .contact-btn { padding: 0.7rem; }
    .logo-img { height: 45px; }
    .hero-title { font-size: 2rem; }
    .about-stats { grid-template-columns: 1fr; gap: 1rem; }
}
/* Hero Section - dengan gambar full di samping */
.hero {
    min-height: 90vh;
    background: linear-gradient(135deg, #FFF5F0 0%, #FFE8E0 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-image {
    flex: 1;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    object-fit: cover;
}

.hero-image img:hover {
    transform: scale(1.02);
}

/* Responsive untuk tablet dan mobile */
@media (max-width: 968px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-image img {
        max-width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-image img {
        max-width: 100%;
    }
}
/* About Carousel */
.about-carousel {
    position: relative;
    flex: 1;
}
.carousel-container {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.carousel-slides {
    position: relative;
    width: 100%;
    height: 400px;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.slide.active {
    opacity: 1;
}
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    z-index: 2;
}
.carousel-btn:hover {
    background: var(--primary);
}
.prev {
    left: 15px;
}
.next {
    right: 15px;
}
.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 2;
}
.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}
.dot.active {
    background: var(--primary);
    width: 25px;
    border-radius: 10px;
}
.about-experience {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    min-width: 100px;
    z-index: 3;
}
@media (max-width: 768px) {
    .carousel-slides {
        height: 300px;
    }
    .about-experience {
        bottom: -10px;
        right: -10px;
        padding: 0.8rem;
        min-width: 80px;
    }
}
.map-section {
    padding: 60px 0;
    background: var(--light-gray);
}
.map-wrapper {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}
.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 400px;
}
@media (max-width: 768px) {
    .map-wrapper iframe {
        height: 300px;
    }
}