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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: #4a5568;
    background: #fffaf0;
}

/* Container */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
/* ===== NAVBAR SHARED ===== */
header {
    background: linear-gradient(135deg, rgba(254,176,8,0.87) 0%, #ffc78f 100%);
    position: sticky;
    width: 100%;
    padding: 0 1rem;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 12px rgba(246,137,58,0.2);
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
}

.logo img {
    width: 170px;
    height: auto;
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
    z-index: 1000;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #0a0808;
    border-radius: 3px;
    transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
                opacity 0.25s ease,
                background-color 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Nav menu — smooth slide + fade */
.nav-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(254,176,8,0.97), #ffc78f);
    padding: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    gap: 0;
    z-index: 999;
    list-style: none;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                opacity 0.35s ease,
                transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
                padding 0.3s ease;
}

.nav-menu.active {
    max-height: 600px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    padding: 8px 0 16px;
}

/* Staggered animation */
.nav-menu li {
    width: 100%;
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-menu.active li:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay: 0.05s; }
.nav-menu.active li:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 0.10s; }
.nav-menu.active li:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 0.15s; }
.nav-menu.active li:nth-child(4) { opacity: 1; transform: translateX(0); transition-delay: 0.20s; }
.nav-menu.active li:nth-child(5) { opacity: 1; transform: translateX(0); transition-delay: 0.25s; }
.nav-menu.active li:nth-child(6) { opacity: 1; transform: translateX(0); transition-delay: 0.30s; }
.nav-menu.active li:nth-child(7) { opacity: 1; transform: translateX(0); transition-delay: 0.35s; }
.nav-menu.active li:nth-child(8) { opacity: 1; transform: translateX(0); transition-delay: 0.40s; }
.nav-menu.active li:nth-child(9) { opacity: 1; transform: translateX(0); transition-delay: 0.45s; }

.nav-menu a {
    color: rgb(0, 0, 0);
    display: block;
    padding: 12px 2rem;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: background 0.2s ease, padding-left 0.2s ease;
}

.nav-menu a:hover {
    background: rgba(255, 255, 255, 0.18);
    padding-left: 2.5rem;
    opacity: 1;
}


/* Hero */
.hero {
      background: linear-gradient(135deg, #524638 0%, rgba(241, 251, 46, 0.735) 100%);
    color: rgb(255, 255, 255);
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Kontak Info */
.kontak-info {
    padding: 80px 0;
    background: white;
}

.kontak-info h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #2d3748;
}

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

.info-item {
    display: flex;
    gap: 1rem;
    padding: 2rem;
    background: #fef5e7;
    border-radius: 15px;
    transition: transform 0.3s;
}

.info-item:hover {
    transform: translateY(-5px);
}

.info-item i {
    font-size: 2.5rem;
    color: #f6893a;
    width: auto;
    flex-shrink: 0;
}

.info-item h3 {
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-item p {
    color: #718096;
    margin: 0;
}

/* Form Kontak */
.form-kontak {
    padding: 80px 0;
    background: #fef5e7;
}

.form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(246,137,58,0.1);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.form-wrapper h2 {
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.form-wrapper p {
    color: #718096;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f6893a;
}

.btn {
    background: #f6893a;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    font-family: inherit;
}

.btn:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(246,137,58,0.4);
}

/* Map */
.map {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.map h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2d3748;
}

.map-placeholder {
    background: #fef5e7;
    border: 3px dashed #f6893a;
    border-radius: 15px;
    padding: 4rem 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.map-placeholder i {
    font-size: 4rem;
    color: #f6893a;
    margin-bottom: 1rem;
    display: block;
}

.map-placeholder p {
    color: #718096;
    font-size: 1.1rem;
}

/* CTA */
.cta {
    padding: 50px 0;
    background: linear-gradient(135deg, #f6893a 0%, #e67e22 100%);
    text-align: center;
    color: white;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta .btn {
    background: white;
    color: #f6893a;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background-color: #222; /* sesuaikan dengan warna footer kamu */
    padding: 15px 0;
}

.footer .footer-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer .footer-content p {
    margin: 0;
    font-size: 13px;
    color: #fff; /* sesuaikan warna teks */
    white-space: nowrap;
}

.footer .footer-content a {
    color: #fff;
    text-decoration: none;
}

.footer .footer-content .divider {
    color: #aaa;
    font-size: 13px;
}

/* Responsive: susun vertikal di layar kecil */
@media (max-width: 768px) {
    .footer .footer-content {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }

    .footer .footer-content .divider {
        display: none;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        padding: 2rem;
        margin: 0 10px;
    }

    .hero {
        padding: 100px 0 60px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}


/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */

/* Floating Button */
.wa-fab {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    transition: transform 0.25s cubic-bezier(.34,1.56,.64,1), box-shadow 0.25s ease;
}

.wa-fab:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}

.wa-fab i {
    font-size: 2rem;
    color: white;
}

/* Pulse ring */
.wa-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.35);
    animation: waPulse 2s ease-out infinite;
    pointer-events: none;
}

@keyframes waPulse {
    0%   { transform: scale(1);   opacity: 0.7; }
    70%  { transform: scale(1.7); opacity: 0;   }
    100% { transform: scale(1.7); opacity: 0;   }
}

/* Overlay */
.wa-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(3px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.wa-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* Card */
.wa-card {
    position: fixed;
    bottom: 105px;
    right: 32px;
    width: 340px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    z-index: 999;
    overflow: hidden;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(.34,1.56,.64,1), opacity 0.3s ease;
}

.wa-card.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: all;
}

/* Card Header */
.wa-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
}

.wa-header-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wa-header-icon i {
    font-size: 1.4rem;
    color: white;
}

.wa-card-header h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.wa-card-header p {
    font-size: 0.78rem;
    margin: 0;
    opacity: 0.85;
    color: white;
}

.wa-close {
    margin-left: auto;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: background 0.2s;
    flex-shrink: 0;
}

.wa-close:hover {
    background: rgba(255,255,255,0.35);
}

/* Contacts List */
.wa-contacts {
    padding: 12px 0;
}

.wa-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid #f0f0f0;
}

.wa-contact-item:last-child {
    border-bottom: none;
}

.wa-contact-item:hover {
    background: #f0fdf6;
}

.wa-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
    color: white;
}

.wa-avatar-1 {
    background: linear-gradient(135deg, #f6893a, #e67e22);
}

.wa-avatar-2 {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.wa-contact-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.wa-contact-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #2d3748;
}

.wa-contact-num {
    font-size: 0.8rem;
    color: #718096;
    margin-top: 1px;
}

.wa-contact-label {
    font-size: 0.75rem;
    color: #25d366;
    margin-top: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wa-arrow {
    color: #cbd5e0;
    font-size: 0.8rem;
    flex-shrink: 0;
    transition: transform 0.2s, color 0.2s;
}

.wa-contact-item:hover .wa-arrow {
    color: #25d366;
    transform: translateX(3px);
}

/* Card Footer */
.wa-card-footer {
    padding: 10px 20px;
    background: #f8fffe;
    border-top: 1px solid #e8f5e9;
    font-size: 0.73rem;
    color: #a0aec0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.wa-card-footer i {
    color: #25d366;
}

@media (max-width: 480px) {
    .wa-card {
        right: 16px;
        width: calc(100vw - 32px);
        bottom: 90px;
    }

    .wa-fab {
        right: 16px;
        bottom: 20px;
    }
}