/* Contact Page Custom Styling - Gold Theme #D4AF37 */

.ducphuc-contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px auto;
    max-width: 1200px;
    padding: 0 15px;
    font-family: 'Inter', sans-serif;
}

.ducphuc-contact-info-col {
    flex: 1;
    min-width: 300px;
}

.ducphuc-contact-form-col {
    flex: 1.5;
    min-width: 350px;
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
    border: 1px solid #f0e6cc;
}

/* Info Cards Layout */
.ducphuc-info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.ducphuc-info-card:hover {
    transform: translateX(10px);
    border-color: #D4AF37;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.1);
}

.ducphuc-info-icon {
    width: 60px;
    height: 60px;
    background: #D4AF37;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
}

.ducphuc-info-content h4 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 18px;
    font-weight: 700;
}

.ducphuc-info-content p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

/* Form Styling Overrides for CF7 */
.ducphuc-contact-form-col h2 {
    color: #D4AF37;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px;
}

.ducphuc-contact-form-col input:not([type="submit"]), 
.ducphuc-contact-form-col textarea, 
.ducphuc-contact-form-col select {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.ducphuc-contact-form-col input:focus, 
.ducphuc-contact-form-col textarea:focus {
    border-color: #D4AF37;
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.ducphuc-contact-form-col input[type="submit"] {
    background: #D4AF37 !important;
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%) !important;
    color: #fff !important;
    border: none !important;
    padding: 15px 30px !important;
    border-radius: 30px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    width: 100% !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
}

.ducphuc-contact-form-col input[type="submit"]:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(184, 134, 11, 0.4) !important;
}

/* Map Section */
.ducphuc-map-section {
    width: 100%;
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid #eee;
}

.ducphuc-map-section iframe {
    display: block;
    width: 100%;
}

@media (max-width: 768px) {
    .ducphuc-contact-container {
        flex-direction: column;
    }
}
