/* --- CONTACT PAGE RESET --- */
* {
    box-sizing: border-box; /* Ensures padding doesn't increase width */
}

body {
    background-color: #ffffff;
    /* Extra padding-top ensures the fixed navbar doesn't cover the hero badge */
    padding-top: 100px !important; 
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* --- THE ELITE CONTAINER --- */
/* This centers your content and prevents the "broad/stretched" look */
.contact-container {
    max-width: 1200px; 
    margin: 0 auto !important; /* Forces the content to the center */
    padding: 60px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Split screen 50/50 */
    gap: 80px;
    align-items: start;
}

/* --- LEFT SIDE: TEXT INFO --- */
.contact-info {
    text-align: left;
}

.badge {
    color: #82b436;
    background: rgba(130, 180, 54, 0.1);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    display: inline-block;
}

.contact-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 25px;
    letter-spacing: -2px;
}

.highlight-line {
    color: #82b436;
}

.contact-subtext {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

.direct-contact {
    border-left: 3px solid #82b436;
    padding-left: 25px;
    margin-top: 50px;
}

.direct-contact p {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #333;
}

/* --- RIGHT SIDE: ELITE FORM --- */
.form-side {
    background: #ffffff;
    padding: 50px;
    border-radius: 24px;
    /* Soft shadow for that high-end agency feel */
    box-shadow: 0 20px 60px rgba(0,0,0,0.07); 
    border: 1px solid #f0f0f0;
}

.input-group {
    margin-bottom: 25px;
    text-align: left;
}

.input-group label {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

/* This fixes the tiny default inputs seen in your screenshot */
.input-group input, 
.input-group select, 
.input-group textarea {
    width: 100% !important;
    padding: 15px 20px !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 10px !important;
    background-color: #fcfcfc !important;
    font-family: inherit;
    font-size: 1rem !important;
    transition: 0.3s ease;
    display: block;
}

.input-group input:focus, 
.input-group select:focus, 
.input-group textarea:focus {
    outline: none;
    border-color: #82b436 !important;
    background-color: #fff !important;
    box-shadow: 0 0 0 4px rgba(130, 180, 54, 0.1);
}

.btn-submit {
    width: 100%;
    background: #1a1a1a;
    color: #fff;
    padding: 18px;
    border: none;
    border-radius: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #82b436;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(130, 180, 54, 0.2);
}

/* --- REVEAL ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- RESPONSIVE FIX --- */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr; /* Stack vertically on small screens */
        gap: 50px;
        padding-top: 40px;
    }
    
    .form-side {
        padding: 30px;
    }
}

