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

body {
    font-family: 'Segoe UI', Impact, sans-serif;
    background-color: #fcfcfc;
    color: #111;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- HEADER --- */
header {
    background-color: #000;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.btn-contact {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 25px;
    border-radius: 50px;
    transition: 0.4s;
}

.btn-contact:hover { background: #fff; color: #000; }

/* --- LAYOUT --- */
.contact-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 10%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    width: 100%;
}

.contact-info h1 { font-size: 3.5rem; font-weight: 900; margin-bottom: 20px; }
.contact-info p { font-size: 1.1rem; line-height: 1.6; color: #555; }

/* --- FORM --- */
.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; margin-bottom: 8px; color: #999; }
.form-group input, .form-group textarea {
    width: 100%; background: #f9f9f9; border: 1px solid #ddd; padding: 12px; border-radius: 8px; font-family: inherit;
}

.btn-submit {
    width: 100%; padding: 15px; background: #000; color: #fff; border: none; font-weight: 900; text-transform: uppercase; cursor: pointer; border-radius: 8px; transition: 0.3s;
}

.btn-submit:hover { background: #333; transform: translateY(-2px); }
.btn-submit:disabled { background: #888; cursor: not-allowed; transform: none; }

/* --- STATUS MESSAGES --- */
.status-hidden { display: none; }
.status-success { 
    display: block; margin-top: 20px; padding: 15px; background: #e8f5e9; color: #2e7d32; border-radius: 8px; font-weight: 600; text-align: center;
}
.status-error { 
    display: block; margin-top: 20px; padding: 15px; background: #ffebee; color: #c62828; border-radius: 8px; font-weight: 600; text-align: center;
}

footer { padding: 40px; text-align: center; border-top: 1px solid #eee; color: #aaa; }

@media (max-width: 992px) { .contact-grid { grid-template-columns: 1fr; text-align: center; } }