.contact-container {
    padding: 60px 5%;
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
}

.contact-card {
    display: flex;
    width: 100%;
    max-width: 1100px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Left Panel */
.info-panel {
    background-color: #1a1917;
    color: #fff;
    padding: 50px;
    flex: 1;
}

.info-panel h2 { margin-bottom: 40px; font-size: 28px; }

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.icon-box {
    background: #333;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #d97706; /* Gold/Orange icon */
}

.info-item h3 { font-size: 16px; margin-bottom: 5px; color: #ccc; }
.info-item p { font-size: 14px; line-height: 1.6; }

.social-links { margin-top: 50px; }
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover { background: #d97706; }

/* Right Panel */
.form-panel {
    padding: 50px;
    flex: 1.5;
}

.form-panel h2 { font-size: 28px; margin-bottom: 10px; }
.form-panel p { color: #666; margin-bottom: 30px; }

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group label span { color: #e11d48; }

.form-group input, .form-group select, .form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}

.form-group textarea { height: 120px; resize: none; }

.btn-send {
    width: 100%;
    padding: 15px;
    background: #d97706;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn-send:hover { background: #b45309; }

/* Map */
.map-section {
    padding: 0 5% 60px;
}
.map-section iframe { border-radius: 15px; }

/* Responsive */
@media (max-width: 900px) {
    .contact-card { flex-direction: column; }
    .form-row { flex-direction: column; gap: 0; }
}