.contact-page {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-info {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-info h2 {
    color: #333;
    margin-bottom: 30px;
    font-weight: bold;
    text-align: right;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    flex-direction: row-reverse;
}

.info-item i {
    font-size: 20px;
    color: #dc3545;
    margin-right: 15px;
}

.info-item p {
    margin: 0;
    color: #666;
    font-size: 16px;
}

.social-links {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #dc3545;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #c82333;
    transform: translateY(-3px);
}

.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    border: 2px solid #e9ecef;
    padding: 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-align: right;
}

.form-control:focus {
    border-color: #dc3545;
    box-shadow: none;
}

textarea.form-control {
    resize: none;
}

.btn-primary {
    background: #dc3545;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-primary:hover {
    background: #c82333;
    transform: translateY(-2px);
}

/* Map Container Styles */
.map-container {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.map-container iframe {
    width: 100%;
    border: none;
    border-radius: 5px;
    min-height: 400px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-info {
        margin-bottom: 30px;
    }
    
    .map-container iframe {
        min-height: 300px;
    }
}
