:root {
    --bg-color: #ffffff;
    --text-color: #0b263a;
    --nav-bg: #ffffff;
    --primary: #1e3a8a;
    --secondary: #f59e0b;
    --section-bg: #f9f9f9;
    --card-bg: #ffffff;
    --primary: #1e3a8a;
    --secondary: #f59e0b;
}

body.dark {
    --bg-color: #0b263a;
    --text-color: #e5e7eb;
    --nav-bg: #0b263a;
    --bg-color: #0b263a;
    --text-color: #e5e7eb;
    --nav-bg: #0b263a;
    --section-bg: #0b263a;
    --card-bg: #0b263a;
}
.contact-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.contact-container {
    background: var(--card-bg);
    max-width: 1100px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0,0,0,0.2);
}

/* LEFT SIDE */
.contact-info {
    background: linear-gradient(180deg,#EBA536,#EBA589);
    color: #ffffff;
    padding: 50px 45px;
}

.contact-info h2 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.contact-info p {
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
}

.info-item {
    margin-bottom: 25px;
}

.info-item h4 {
    font-size: 15px;
    margin-bottom: 6px;
    opacity: 0.8;
}

.info-item span {
    font-size: 16px;
    font-weight: 600;
}

/* RIGHT SIDE */
.contact-form {
    padding: 50px 45px;
}

.contact-form h2 {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 700;
    background-color: var(--section-bg);
    color: var(--text-color);
}

.form-group {
    margin-bottom: 20px;
    color: var(--text-color);
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 15px;
}

.form-control:focus {
    outline: none;
    border-color: #4f46e5;
}

textarea {
    resize: none;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #4f46e5;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
}

.submit-btn:hover {
    background: #4338ca;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}
