        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #fff;
        }

        /* Header & Navigation */
        header {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1.2rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Container Logo */
.logo {
    display: flex;
    align-items: center; /* Menyeimbangkan posisi gambar & teks secara vertikal */
    gap: 12px;           /* Jarak antara gambar dan teks */
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5016;
}

/* Mengatur ukuran gambar logo */
.logo img {
    height: 50px;        /* Atur tinggi maksimal di sini agar tidak terlalu besar */
    width: auto;         /* Biarkan lebar menyesuaikan otomatis agar tidak gepeng */
    object-fit: contain;
    display: block;
}

/* Agar teks logo tidak turun ke bawah di layar kecil */
.logo span {
    white-space: nowrap; 
}

/* Responsif untuk layar HP */
@media (max-width: 768px) {
    .logo img {
        height: 35px;    /* Perkecil logo sedikit di HP */
    }
    .logo {
        font-size: 1.2rem; /* Perkecil teks sedikit di HP */
    }
}

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #2d5016;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: #2d5016;
            transition: 0.3s;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #f5f5f0 0%, #e8e8dc 100%);
            padding: 5rem 2rem;
            text-align: center;
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 3rem;
            color: #2d5016;
            margin-bottom: 1rem;
            font-weight: 800;
        }

        .hero p {
            font-size: 1.3rem;
            color: #555;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .btn-primary {
            display: inline-block;
            background: #2d5016;
            color: #fff;
            padding: 1rem 2.5rem;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(45, 80, 22, 0.2);
        }

        .btn-primary:hover {
            background: #1f3710;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(45, 80, 22, 0.3);
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: #2d5016;
            margin-bottom: 3rem;
            font-weight: 700;
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .feature-card {
            background: #fff;
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .feature-card h3 {
            color: #2d5016;
            margin-bottom: 0.8rem;
            font-size: 1.4rem;
        }

        .feature-card p {
            color: #666;
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        }

        .service-header {
            background: linear-gradient(135deg, #2d5016 0%, #3d6822 100%);
            color: #fff;
            padding: 2rem;
            text-align: center;
        }

        .service-header h3 {
            font-size: 1.6rem;
            margin-bottom: 0.5rem;
        }

        .service-body {
            padding: 2rem;
        }

        .service-body p {
            color: #666;
            margin-bottom: 1.5rem;
        }

        .btn-secondary {
            display: inline-block;
            background: #f5f5f0;
            color: #2d5016;
            padding: 0.8rem 1.8rem;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            transition: all 0.3s;
            border: 2px solid #2d5016;
        }

        .btn-secondary:hover {
            background: #2d5016;
            color: #fff;
        }

        /* About Section */
        .about-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .about-content p {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 1.5rem;
            line-height: 1.9;
        }

        /* Gallery Grid */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .gallery-item {
            aspect-ratio: 4/3;
            break-inside: avoid;
            background: #f5f5f0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            font-size: 0.9rem;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* Memastikan gambar memenuhi kotak tanpa distorsi */
            display: block;
        }

        /* Contact Section */
.contact-info {
  max-width: 700px;
  margin: 0 auto;
  background: #ffffff;
  padding: 3rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.contact-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

/* Item */
.contact-item {
  margin-bottom: 2.5rem;
  text-align: center;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item h3 {
  color: #2d5016;
  margin-bottom: 0.6rem;
  font-size: 1.35rem;
  font-weight: 600;
}

.contact-item p {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Map */
.map-container {
  width: 100%;
  margin-top: 1.2rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eaeaea;
}

/* WhatsApp Button (kalau belum ada style) */
.btn-primary {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.7rem 1.6rem;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}


        /* Footer */
        footer {
            background: #1f3710;
            color: #e8e8dc;
            padding: 3rem 2rem 1.5rem;
            margin-top: 4rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 2rem;
        }
        
        .footer-section img{
             height: 280px;        /* Atur tinggi maksimal di sini agar tidak terlalu besar */
             width: auto;         /* Biarkan lebar menyesuaikan otomatis agar tidak gepeng */
             object-fit: contain;
             display: block;
        }

        .footer-section h4 {
            color: #fff;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .footer-section p {
            line-height: 1.8;
            color: #d0d0c0;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: #2d5016;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            text-decoration: none;
            transition: background 0.3s;
        }

        .social-links a:hover {
            background: #3d6822;
        }

        .social-links .fa{
             font-size:50px ;
             color: #fff;
             cursor: pointer;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #3d6822;
            color: #d0d0c0;
        }

        /* WhatsApp Float Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25D366;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            text-decoration: none;
            z-index: 999;
            transition: transform 0.3s;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
        }

        

        /* Responsive */
        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #fff;
                flex-direction: column;
                padding: 1rem 2rem;
                gap: 1rem;
                box-shadow: 0 4px 10px rgba(0,0,0,0.1);
                display: none;
            }

            .nav-links.active {
                display: flex;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }

       


