* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

/* ===============================
FULL BACKGROUND IMAGE
================================ */
body {
    background:
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
        url("../image/home.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #fff;
    min-height: 100vh;
}

/* Page Overlay */
.page-overlay {
    min-height: 100vh;
    backdrop-filter: blur(2px);
}

/* NAVBAR */
.navbar {
    display: flex;
    gap: 30px;
    padding: 18px 40px;
    background: #fff3cc;
    position: sticky;
    top: 0;
}

.navbar a {
    text-decoration: none;
    color: #2f4f2f;
    font-weight: 600;
}

.navbar a.active {
    background: #cde36f;
    padding: 10px 18px;
    border-radius: 10px;
}

/* CONTACT CONTAINER */
.contact-container {
    display: flex;
    gap: 40px;
    padding: 60px 8%;
}

/* LEFT INFO */
.contact-info {
    flex: 1;
    background: linear-gradient(135deg, #4b240f, #8b4513);
    padding: 40px;
    color: #3E2C1C;   
    border-radius: 16px;
}

.contact-info h2 {
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    gap: 15px;
   color: white;
    margin-bottom: 20px;
}

.info-item span {
    font-size: 20px;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    margin-right: 15px;
    text-decoration: none;
    font-weight: 600;
    color: white;
}

/* RIGHT FORM */
.contact-form {
    flex: 1.2;
    background: linear-gradient(135deg, #4b240f, #8b4513);
    padding: 40px;
    border-radius: 16px;
}

.contact-form h2 {
    margin-bottom: 25px;
     color: black;
}

.contact-form label {
    font-size: 13px;
    font-weight: 600;
    color: white;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin: 8px 0 18px;
    border: none;
    color: beige;
    border-bottom: 1px solid #ccc;
    background: transparent;
    outline: none;
}

.contact-form textarea {
    resize: none;
    height: 100px;
}

 .contact-form .btn{
    padding: 14px 35px;
    background: #ff9800;
    color: #000;
    font-weight: bold;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background: #fff;
}

/* FORM ROW */
.row {
    display: flex;
    gap: 20px;
}

.row div {
    flex: 1;
}

/* FORM FOOTER */
.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.form-footer span {
    font-size: 13px;
    color: #888;
}

.form-footer button {
    background: #cde36f;
    border: none;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
}
 form{
    color: white;
 }

/* FOOTER */
.footer {
    background: #fff3cc;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }

    .row {
        flex-direction: column;
    }
}


/* ===============================
FOOTER
================================ */
footer {
    background: rgba(31, 15, 5, 0.95);
    text-align: center;
    padding: 20px;
    color: #ffddb0;
    margin-top: 60px;
}

/* ===============================
RESPONSIVE
================================ */
@media (max-width: 768px) {
    body {
        background-attachment: scroll;
    }

    .slide p {
        font-size: 20px;
    }

    .category-box h2 {
        font-size: 26px;
    }

    .card h1 {
        font-size: 28px;
    }

    nav {
        flex-wrap: wrap;
        gap: 15px;
    }
}

/* ===============================
WHATSAPP ICON (PREMIUM ANIMATION)
================================ */
.whatsapp-icon {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 64px;
    height: 64px;
    z-index: 9999;
    animation: floatWhatsApp 3s ease-in-out infinite;
}

.whatsapp-icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    box-shadow:
        0 8px 20px rgba(37, 211, 102, 0.45),
        0 0 0 rgba(37, 211, 102, 0.6);
    animation: pulseWhatsApp 2.2s infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.whatsapp-icon:hover img {
    transform: scale(1.12);
    box-shadow:
        0 12px 30px rgba(37, 211, 102, 0.7);
}

/* Pulse Ring */
.whatsapp-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.35);
    animation: ringPulse 2.5s infinite;
    z-index: -1;
}

/* ===============================
ANIMATIONS
================================ */
@keyframes pulseWhatsApp {
    0% {
        box-shadow:
            0 8px 20px rgba(37, 211, 102, 0.45),
            0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow:
            0 8px 20px rgba(37, 211, 102, 0.45),
            0 0 0 16px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow:
            0 8px 20px rgba(37, 211, 102, 0.45),
            0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes ringPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@keyframes floatWhatsApp {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

