/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f4f7f6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Container Structure */
.contact-container {
    width: 100%;
    max-width: 1000px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.contact-box {
    display: grid;
  grid-template-columns: 1fr 1fr; /* Creates two equal-width columns */
  gap: 20px;
}

/* Left Informational Sidebar */
.contact-info {
    background: #1a252f;
    color: #fff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-info p {
    color: #b2bec3;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.info-details p {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1rem;
}

/* Right Interactive Form Component */
.contact-form-wrapper {
    padding: 0px;
    background: #fff;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #dcdde1;
    border-radius: 6px;
    font-size: 0.95rem;
    color: #2c3e50;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #3498db;
}

/* Submit Interactive Trigger */
.submit-btn {
    width: 100%;
    padding: 14px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #2980b9;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
    .contact-box {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding: 30px;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
}
