.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-bottom: 30px;
}

.contact-card {
    background: var(--dark-gray);
    padding: 35px;
    border-radius: 12px;
    border-top: 4px solid var(--red);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.contact-header {
    margin-bottom: 25px;
    border-bottom: 1px solid var(--medium-gray);
    padding-bottom: 15px;
}

.contact-header h2 {
    color: var(--white);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -1px;
}

.info-item {
    margin-bottom: 20px;
}

.info-item h4 {
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.info-item p {
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
}

/* WhatsApp Button Styling */
.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25D366; /* Official WhatsApp Green */
    color: var(--white);
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    margin-top: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.whatsapp-btn:hover {
    background-color: #1ebc5a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    font-size: 20px;
}

/* Form Styling overrides for Contact page */
.contact-card .form-group label {
    color: var(--text-muted);
}
.contact-card textarea {
    width: 100%;
    padding: 14px;
    background: var(--medium-gray);
    border: 1px solid #333;
    border-radius: 8px;
    color: var(--white);
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
    resize: vertical;
    min-height: 120px;
}
.contact-card textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 2px rgba(211, 47, 47, 0.2);
}

/* Responsive Layout */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr; /* Stacks to a single column on smaller screens */
    }
}

@media (max-width: 768px) {
    .contact-card {
        padding: 20px;
    }
}