/* =========================================
   CONTACT PAGE STYLES
   ========================================= */
*, *::before, *::after { box-sizing: border-box !important; }

body { background: #fafafa; overflow-x: hidden; }

/* Page Header */
.page-header { background: #2C3E50; color: #fff; text-align: center; padding: 60px 20px; }
.page-header h1 { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-top: 0; margin-bottom: 10px; color: #fff; }
.page-header p { font-size: 1rem; color: #b3c0cc; max-width: 600px; margin: 0 auto; line-height: 1.6; }

/* Contact Section Grid */
.contact-section { max-width: 1200px; margin: -40px auto 50px; padding: 0 15px; position: relative; z-index: 10; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 30px; align-items: stretch; background: transparent; }

/* Left: Info Box */
.contact-info { background: #e91e63; color: #fff; padding: 40px; border-radius: 12px; box-shadow: 0 10px 30px rgba(233,30,99,0.2); display: flex; flex-direction: column; }
.contact-title { font-family: 'Playfair Display', serif; font-size: 1.8rem; margin-top: 0; margin-bottom: 15px; color: inherit; }
.contact-info .desc { font-size: 0.95rem; color: #fdf5f6; margin-bottom: 30px; line-height: 1.6; }

.info-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 25px; }
.info-item .icon { width: 40px; height: 40px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.1rem; flex-shrink: 0; }
.details h4 { margin: 0 0 5px; font-size: 1rem; font-weight: 600; }
.details p { margin: 0; font-size: 0.9rem; color: #fdf5f6; }
.details a { color: #fff; text-decoration: none; transition: 0.3s; }
.details a:hover { text-decoration: underline; }

.social-links { margin-top: auto; padding-top: 20px; display: flex; gap: 15px; }
.social-links a { width: 40px; height: 40px; background: #fff; color: #e91e63; border-radius: 50%; display: flex; justify-content: center; align-items: center; text-decoration: none; font-size: 1.2rem; transition: 0.3s; }
.social-links a:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); }

/* Right: Form Box */
.contact-form-box { background: #fff; padding: 40px; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.contact-form-box .contact-title { color: #2C3E50; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { width: 100%; }
.form-group label { display: block; font-weight: 600; font-size: 0.85rem; color: #555; margin-bottom: 8px; }
.form-group input, .form-group textarea, .custom-select { width: 100%; padding: 14px 15px; border: 1px solid #ddd; border-radius: 8px; font-size: 0.95rem; background: #fafafa; font-family: inherit; color: #333; outline: none; transition: 0.3s; box-sizing: border-box; }
.form-group input:focus, .form-group textarea:focus, .custom-select:focus { border-color: #e91e63; background: #fff; box-shadow: 0 0 0 3px rgba(233,30,99,0.1); }
.custom-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 15px center; background-size: 15px; }

.submit-btn { width: 100%; background: #2C3E50; color: #fff; border: none; padding: 16px; border-radius: 8px; font-weight: 600; font-size: 1.05rem; cursor: pointer; transition: 0.3s; display: flex; justify-content: center; align-items: center; }
.submit-btn:hover { background: #e91e63; transform: translateY(-2px); box-shadow: 0 5px 15px rgba(233,30,99,0.2); }

/* Map Section */
.map-section { max-width: 1200px; margin: 0 auto 60px; padding: 0 15px; }
.map-section iframe { width: 100%; height: 400px; border: none; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }

/* Mobile Fixes */
@media (max-width: 850px) {
    .contact-grid { grid-template-columns: 1fr; }
    .page-header { padding: 40px 15px 80px; }
    .contact-info { padding: 30px; border-radius: 12px 12px 0 0; }
    .contact-form-box { padding: 30px; border-radius: 0 0 12px 12px; margin-top: -10px; }
}
@media (max-width: 600px) {
    .form-grid { grid-template-columns: 1fr; gap: 15px; margin-bottom: 15px; }
    .contact-info, .contact-form-box { padding: 20px; }
    .page-header h1 { font-size: 2rem; }
    .map-section iframe { height: 300px; }
}