/* #services {
    background: linear-gradient(135deg, var(--gray-100) 0%, #f0f0f0 100%);
}

.section-title {
    font-weight: 700;
    color: var(--primary-brown);
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
    font-size: 2.2rem;
}

.section-title:after {
    content: "";
    position: absolute;
    width: 70px;
    height: 3px;
    background: linear-gradient(
        to right,
        var(--primary-brown),
        var(--secondary-brown)
    );
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.lead {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 400;
}

.service-image {
    position: relative;
    z-index: 1;
}

#main-service-image {
    transition: opacity 0.4s ease-in-out;
    height: 400px;
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.service-features-container {
    display: grid;
    gap: 1.25rem;
    height: 100%;
}

.service-card {
    background-color: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    border: 2px solid var(--gray-100);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-card h5 {
    margin: 0 0 4px 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-brown);
    transition: color 0.3s ease;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--gray-500);
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.service-card:hover:not(.active) {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: var(--secondary-brown);
}

.service-card:hover:not(.active) h5 {
    color: var(--secondary-brown);
}

.service-card.active {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.2);
    border-color: var(--primary-brown);
    background-color: var(--light-brown);
}

.service-card.active h5 {
    color: var(--secondary-brown) !important;
}

.service-card.active p {
    color: var(--gray-700) !important;
}

.service-card.active .feature-icon-wrapper {
    background-color: var(--secondary-brown);
}

.service-card.active .feature-icon {
    color: var(--white);
}

.service-card.active:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 69, 19, 0.2);
    border-color: var(--primary-brown);
} */


/* --- Section SERVICES --- */
#services {
    background: linear-gradient(135deg, var(--gray-100) 0%, #f0f0f0 100%);
    position: relative;
    overflow: hidden;
}

#services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><path fill="%23f0f0f0" d="M30,30 L70,30 L70,70 L30,70 Z" opacity="0.05"/></svg>');
    background-size: 100px 100px;
    z-index: 0;
}

.section-title {
    font-weight: 800;
    color: var(--primary-brown);
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
    font-size: 2.5rem;
    letter-spacing: 1px;
}

.section-title:after {
    content: "";
    position: absolute;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-brown), var(--secondary-brown));
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 4px;
}

.lead {
    font-size: 1.15rem;
    line-height: 1.7;
    font-weight: 400;
}

.service-card-container {
    /* Auto-fit akan menghasilkan 2 kolom di layar yang cukup besar */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.service-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    border-left: 5px solid var(--primary-brown);
    box-shadow: var(--shadow);
    /* Tata letak default untuk desktop: menyamping (kiri-kanan) */
    display: flex; 
    align-items: center;
    flex-direction: row; 
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.03) 0%, rgba(160, 82, 45, 0.03) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card > img { 
    height: 180px;
    object-fit: cover;
    /* Lebar default desktop */
    width: 180px; 
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.4s ease;
    /* Jarak gambar ke teks di desktop */
    margin-right: 1.5rem; 
}

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

.service-card .card-content { /* Gunakan class baru untuk konten teks */
    flex-grow: 1;
    text-align: left; /* Teks default menyamping */
}

.service-card h5 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

/* ... (CSS untuk h5:after, p, icon-container, dan cta-button sama seperti sebelumnya) ... */

.service-card h5::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--secondary-brown);
    bottom: -5px;
    left: 0;
    transition: width 0.4s ease;
}

.service-card:hover h5::after {
    width: 100%;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-500);
    margin-top: 10px;
}

.service-card .icon-container {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--primary-brown);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.service-card:hover .icon-container {
    transform: rotate(15deg) scale(1.1);
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    border-left-color: var(--secondary-brown);
}

.service-card:hover h5 {
    color: var(--secondary-brown);
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    background: rgba(139, 69, 19, 0.05);
    border-radius: 50%;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 5%;
    animation: float 15s infinite ease-in-out;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    right: 5%;
    animation: float 18s infinite ease-in-out reverse;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 50%;
    right: 10%;
    animation: float 12s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.cta-button {
    background: linear-gradient(to right, var(--primary-brown), var(--secondary-brown));
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.4);
}

/* --- Responsif --- */

/* Tablet & Mobile - Layout Vertikal */
@media (max-width: 767.98px) {
    .service-card-container {
        /* Kembali ke 1 kolom di mobile */
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .service-card {
        /* Mengubah tata letak menjadi vertikal */
        flex-direction: column; 
        text-align: center;
        padding: 20px;
        align-items: center; 
    }
    
    .service-card > img {
        /* Gambar di atas dan mengambil lebar penuh (dibatasi max-width) */
        width: 100%; 
        max-width: 300px; 
        height: 200px;
        margin-bottom: 15px; 
        margin-right: 0; /* Hilangkan margin kanan */
    }

    .service-card .card-content {
        margin-left: 0; /* Hilangkan margin kiri */
        margin-top: 10px; 
        width: 100%;
    }
    
    .service-card p {
        text-align: center;
    }
    
    /* ... (Media queries untuk ukuran yang lebih kecil) ... */
}

/* Mobile Small */
@media (max-width: 576px) {
    .service-card {
        padding: 18px 15px;
    }
    
    .service-card > img {
        height: 180px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .lead {
        font-size: 1rem;
    }
}

/* Very Small Mobile */
@media (max-width: 400px) {
    .service-card {
        padding: 15px 12px;
    }
    
    .service-card > img {
        height: 160px;
    }
    
    .service-card h5 {
        font-size: 1.15rem;
    }
    
    .service-card p {
        font-size: 0.85rem;
    }
}