/* --- Global Styles --- */
body {
    background-color: #ffffff;
}

.container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 40px;
}

/* --- Header Section (UPDATED SPACING) --- */
.contact-header {
    text-align: center;
    padding: 40px 0 60px; /* Reduced top padding from 100px to 40px */
}

.overhead {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.contact-header h1 {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-header h1 span { color: #39FF14; }

.sub-text {
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto;
}

/* --- Grid Layout --- */
.contact-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 60px;
    align-items: flex-start;
    padding-bottom: 100px;
}

/* --- Side Section (Left) --- */
.info-card-container {
    background: #f5f5f7;
    border-radius: 24px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 30px;
}

.info-block {
    display: flex;
    gap: 20px;
    align-items: center;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.info-text h3 {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 4px;
}

.info-text p {
    font-size: 16px;
    font-weight: 600;
}

.social-wrapper {
    display: flex;
    flex-direction: column;
}

.social-label {
    font-size: 10px;
    font-weight: 700;
    color: #888;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-circle {
    width: 44px;
    height: 44px;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: all 0.3s ease;
}

.social-circle:hover {
    background: #e8e8ed; 
    border-color: #1d1d1f;
    transform: translateY(-2px);
}

.social-circle img {
    display: block;
    width: 20px;
    height: 20px;
}

/* --- Form Card (Right) --- */
.form-card {
    border: 1px solid #f0f0f0;
    border-radius: 28px;
    padding: 60px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.02);
    background-color: #fff;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.input-group {
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

input, select, textarea {
    width: 100%;
    background: #fbfbfb;
    border: 1px solid #efefef;
    border-radius: 12px;
    padding: 18px;
    font-size: 14px;
    transition: 0.3s;
    box-sizing: border-box; /* Ensures padding doesn't break width */
}

input:focus, textarea:focus {
    background: #fff;
    border-color: #ccc;
    outline: none;
}

.btn-send {
    width: 100%;
    background: #1d1d1f;
    color: #fff;
    border: none;
    padding: 22px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .container {
        padding: 0 20px;
    }

    .contact-grid { 
        grid-template-columns: 1fr; 
        gap: 30px;
    }

    .contact-header h1 { 
        font-size: 38px; 
    }

    .form-card {
        padding: 30px 20px; /* Fixed squished view from screenshots */
    }

    .form-row {
        grid-template-columns: 1fr; /* Name and Email now stack properly */
        gap: 0;
    }

    .info-card-container {
        padding: 30px;
    }

    /* Centralizing Social Section for Mobile */
    .social-wrapper {
        align-items: center;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
    
    .whatsapp-query {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}