/* Reset Dasar */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fffafb;
}

/* Penambahan Style dari Versi Sebelumnya */

html {
    scroll-behavior: smooth;
}

/* About Section */
.about {
    padding: 100px 8%;
    background-color: #fff;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.about-img {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background: url('https://images.unsplash.com/photo-1516975080664-ed2fc6a32937?q=80&w=870&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover;
    border-radius: 30px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #444;
}

/* Services Section */
.services {
    padding: 100px 8%;
    background-color: #fdf0f0;
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    transition: 0.3s;
}

.service-img{
    height: 200px;
    background-color: #f1f1f1;
    border-radius: 15px;
    margin-bottom: 15px;
    background-size: cover;
}

.service-img.img1{
    background-image: url('https://images.unsplash.com/photo-1582576192532-06353147fcbf?q=80&w=387&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
}

.service-img.img2{
    background-image: url('https://plus.unsplash.com/premium_photo-1703761300549-8a3895d4cf1e?q=80&w=870&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
}

.service-img.img3{
    background-image: url('https://plus.unsplash.com/premium_photo-1670002278045-51f2c6c4ef01?q=80&w=870&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
}



.service-card:hover {
    background: white;
    transform: scale(1.05);
}

/* Testimonials */
.testimonials {
    padding: 100px 8%;
    text-align: center;
}

.testimonial-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.testimonial-item {
    max-width: 400px;
    font-style: italic;
    padding: 20px;
}

.testimonial-item span {
    display: block;
    margin-top: 15px;
    font-weight: 600;
    color: #d4a373;
}

/* Contact Section */
.contact {
    padding: 100px 8%;
    background: linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.7)), 
                url('https://images.unsplash.com/photo-1512496015851-a90fb38ba796?auto=format&fit=crop&w=1350&q=80') center/cover;
    display: flex;
    justify-content: center;
}

.contact-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    padding: 50px;
    border-radius: 30px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.contact-card h2 {
    text-align: center;
    margin-bottom: 30px;
}

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

.contact input, .contact textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
}

.contact button {
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
}

/* Navbar & Hero (Sama seperti sebelumnya dengan sedikit penyesuaian ID) */
/* ... copy CSS sebelumnya di sini ... */

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px); /* Efek Glassmorphism */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #d4a373;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 400;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #d4a373;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), 
                url('https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.hero-content h1 {
    font-size: 4rem;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content span {
    color: #ffcad4;
}

.hero-content p {
    color: #fefefe;
    max-width: 500px;
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: #d4a373;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background-color: #bc8a5f;
    transform: translateY(-3px);
}

/* Products Section */
.products {
    padding: 100px 8%;
    text-align: center;
}

.products h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #444;
}

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

.product-card {
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-img {
    height: 200px;
    background-color: #f1f1f1;
    border-radius: 15px;
    margin-bottom: 15px;
    background-size: cover;
    background-position: center;
}

.product-img.img1 {
    background-image: url('https://images.unsplash.com/photo-1656523201068-8ed449fb1434?q=80&w=725&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
}

.product-img.img2 {
    background-image: url('https://images.unsplash.com/photo-1617422275563-4cf1103e7d60?q=80&w=925&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
}

.product-img.img3 {
    background-image: url('https://plus.unsplash.com/premium_photo-1661665746703-edc4be710784?q=80&w=870&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
}


/* Footer */
footer {
    padding: 40px;
    text-align: center;
    background: #f8edeb;
    color: #777;
    font-size: 0.9rem;
}