* { 
     margin: 0; 
    padding: 0; 
    box-sizing: border-box;
 }  
 
:root {
    --primary: #59654E;
    --primary-dark: #48513F;
    --secondary: #9E4A1E;
    --dark: #d6ad60     ;
    --darker: #F7EED6;
    --light: #59654E;
    --text-muted: #666;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #FDF6E3;
    color: var(--light);
    line-height: 1.6;  
    overflow-x: hidden;
}

/* Header */
header {
    background:#59654e;;
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(60, 221, 113, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    animation: slideInLeft 0.6s ease;
}

@keyframes slideInLeft {
    from { transform: translateX(-30px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: #f8f0f0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 5px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.admin-btn {
    background: rgba(245, 229, 229, 0.15);
    color: #fdf6e3;
    padding: 0.6rem 1.5rem;
    border: 2px solid #fdf6e3;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.admin-btn:hover {
    background: #9e4a1e;
    color: #fdf6e3;
    transform: scale(1.05);
}

/* Hero Section/ bg atas*/
.hero {
    margin-top: 70px;
    min-height: 100vh;
    background: #F7EED6;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle,  rgba(158, 74, 30, 0.08), transparent);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    animation: slideInUp 0.8s ease;
}

@keyframes slideInUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    color: #9e4a1e;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.5rem;
    color: #59654e;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-direction: row;      /* Pastikan arahnya ke samping */
    justify-content: center;  /* Supaya tombol ada di tengah */
    align-items: center;      /* Supaya tinggi tombol sejajar */
    gap: 2rem;              /* Jarak antar tombol */
    margin-top: 2rem;
    flex-wrap: nowrap;        /* Paksa jangan turun ke bawah kecuali layar HP */
}


.btn {
    display: inline-block; 
    width: auto;           
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    white-space: nowrap;   /* Supaya teks tombol tidak turun ke bawah */
}

.hero .btn-primary {
    background: #fff ;
    color: #000;
    box-shadow: 0 10px 30px rgba(158, 74, 30, 0.3);
    border: 2px solid #b9a082;

}

.hero .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(158, 74, 30, 0.5);
    background: #59654e;
    color: #fff;
}

.hero .btn-secondary {
    background: #fff;
    color: #000;
    border: 2px solid #b9a082;
    box-shadow: 0 10px 30px rgba(158, 74, 30, 0.5);

}

.hero .btn-secondary:hover {
    transform: translateY(-3px);
    background: #59654e;
    color: #fff;
    box-shadow: 0 15px 40px rgba(158, 74, 30, 0.5);

}

@keyframes slideInRight {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6);
}

/* Services & Products Section/ bg layanan */
.services-products-section {
    padding: 5rem 2rem;
    background: #FDF6E3;
    max-width: 1400px;
    margin: 0 auto;
}

.section-main-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #59654e;
    font-weight: 700;
}

.combined-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 0 auto;
}

.section-box {
    background: #FDF6E3;
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid #b9a082;
    box-shadow: 0 8px 20px rgba(8, 3, 3, 0.08);
    transition: all 0.3s ease;
}

.section-box:hover {
    border-color: #9e4a1e;
    box-shadow: 0 12px 35px rgba(158, 74, 30, 0.15);
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #b9a082;
}

.section-header h2 {
    font-size: 2rem;
    color: #59654e;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.section-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.cta-section {
    background: #F7EED6;
    padding: 80px 60px;
}

.cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* KIRI */
.cta-left h1 {
    font-size: 48px;
    font-weight: 700;
    color: #59654e;
    margin-bottom: 40px;
}

.image-grid-left {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.image-grid-left img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

/* KANAN */
.cta-right p {
    color: #59654e;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 420px;
}

.cta-btn {
    display: inline-block;
    background: #59654e;
    color: #fff;
    padding: 12px 28px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 35px;
}

.image-grid-right {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}

.image-grid-right img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .cta-container {
        grid-template-columns: 1fr;
    }

    .cta-left h1 {
        font-size: 38px;
    }
}


/* Cards */
.preview-cards {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.card-compact {
    background: #f5f0e8;
    border: 2px solid #b9a082;
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.card-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.card-compact:hover::before {
    left: 100%;
}

.card-compact:hover {
    border-color: #9e4a1e;
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(158, 74, 30, 0.2);
}

.card-compact h3 {
    font-size: 1.2rem;
    margin-bottom: 0.7rem;
    color: #59654e;
    font-weight: 600;
}

.card-compact .icon {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    opacity: 0.2;
}

.price-tag {
    display: inline-block;
    background: #9e4a1e;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fdf6e3;
}

.order-btn {
    background: #9e4a1e;
    color: #fdf6e3;
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(158, 74, 30, 0.3);
}

.order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(158, 74, 30, 0.5);
}
.order-btn:active {
    transform: translateY(-1px);
}

.order-btn:active {
    transform: translateY(-1px);
};
    
.show-more-btn {
    background: #9e4a1e;
    color: #fdf6e3;
    padding: 1.1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(158, 74, 30, 0.3);
}


.show-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(158, 74, 30, 0.5);
}

/* Visit Section */
.visit-section {
    padding: 5rem 2rem;
    background: #fdf6e3;
    max-width: 1400px;
    margin: 0 auto;
}

.visit-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: lab(26.63% -12.57 6.98);
    font-weight: 700;
}

.visit-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.visit-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.visit-card {
    background: linear-gradient(135deg, rgba(17, 20, 11, 0.667) 0%, #341a 100%);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--secondary);
    box-shadow: 0 10px 30px  rgba(33, 201, 123, 0.3);;
    transition: all 0.3s ease;
}

.visit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(36, 105, 57, 0.2);
}

.visit-card h3 {
    color: #f7eed6;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.visit-card p {
    color: #f5f0e8;
    line-height: 1.8;
    font-size: 0.95rem;
}

.visit-card a {
    color: #f7eed6;
    text-decoration: none;
    transition: all 0.3s ease;
}

.visit-card a:hover {
    color: var(--secondary);
}

.maps-btn {
    margin-top: 1rem;
    width: fit-content;
    background: linear-gradient(135deg, var(--secondary) 0%, #9e4a1e 100%);
    color: var(--darker);
    padding: 0.9rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 5px 20px #b4c046(245, 179, 1, 0.3);
}

.maps-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.visit-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px  rgba(230, 214, 0, 0.3)
}

.visit-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: none;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #203829 0%, #59654e 100%);
    color: #f2f3fa;
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid #161a13(102, 126, 234, 0.2);
}

.footer-content h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.footer-content p {
    color: #f2f3fa;
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-links a {
    color: #f5f0e8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 600;
}

.social-links a:hover {
    color: #0c0d0f;
    transform: translateY(-3px);
}

/* Container Form */
.card-form {
    max-width: 850px;
    margin: 0 auto;
    background: #59654e; /* Hijau Sage Tua (Lebih Elegan) */
    padding: 50px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.text-light-green {
    color: #c9d6bc;
}

/* Label */
.form-label {
    font-weight: 600;
    color: #fdf6e3;
    margin-bottom: 8px;
    margin-left: 10px;
}

/* Input & Select */
.custom-input {
    border-radius: 15px !important;
    padding: 12px 20px !important;
    border: 2px solid transparent !important;
    background-color: #ffffff !important;
    transition: all 0.3s ease;
}

.custom-input:focus {
    border-color: #9e4a1e !important; /* Warna Terracotta saat fokus */
    box-shadow: 0 0 15px rgba(158, 74, 30, 0.2) !important;
    transform: translateY(-2px);
}

/* Tombol Submit */
.btn-submit {
    background-color: #91b981; /* Warna Terracotta (Biar kontras sama background hijau) */
    color: white !important;
    padding: 15px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(158, 74, 30, 0.3);
}

.btn-submit:hover {
    background-color: #adb969;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(158, 74, 30, 0.4);
    color: white !important;
}

/* Tombol Kembali */
.btn-back-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #59654e; /* Warna hijau sage tua sesuai tema lu */
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: 8px 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background-color: rgba(89, 101, 78, 0.05); /* Background sangat tipis */
}

.btn-back-modern svg {
    transition: transform 0.3s ease;
}

/* Efek saat di-hover */
.btn-back-modern:hover {
    color: #9e4a1e; /* Berubah jadi terracotta saat hover */
    background-color: rgba(158, 74, 30, 0.1); /* Background tipis terracotta */
    transform: translateX(-5px); /* Geser dikit ke kiri */
}

.btn-back-modern:hover svg {
    transform: scale(1.2); /* Icon arrow membesar dikit */
}

/* Hilangkan Spinner Input Number */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Responsif Mobile */
@media (max-width: 768px) {
    .card-form {
        padding: 30px 20px;
        border-radius: 30px;
    }
}

