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

/* BODY */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #e2e8f0;
}

/* PAGE */
.contact-page {
    padding: 60px 20px;
}

/* CONTAINER */
.contact-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* LEFT SIDE */
.contact-info {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 18px;
    backdrop-filter: blur(10px);
}

.contact-info h1 {
    color: #facc15;
    margin-bottom: 10px;
}

.contact-info p {
    margin-bottom: 20px;
    color: #cbd5e1;
}

.info-box {
    margin-bottom: 15px;
}

.info-box h3 {
    color: #38bdf8;
    margin-bottom: 5px;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
    display: inline-block;
    margin-top: 15px;
    background: #25D366;
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
}

/* FORM SIDE */
.contact-form {
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 18px;
    backdrop-filter: blur(10px);
}

.contact-form h2 {
    margin-bottom: 20px;
    color: #facc15;
}

/* INPUTS */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
}

/* BUTTON */
.contact-form button {
    width: 100%;
    padding: 12px;
    background: #facc15;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

.contact-form button:hover {
    background: #eab308;
}

/* FLOATING HOME BUTTON */
.floating-home {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
    background: #facc15;
    color: #000;
    border-radius: 50%;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.floating-home:hover {
    background: #eab308;
    transform: translateY(-2px);
}

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

    .contact-page {
        padding: 40px 15px;
    }

    .floating-home {
        bottom: 15px;
        right: 15px;
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}