/* ─── CONTACT PAGE — Page-Specific Styles ─── */

.contact-section { padding: 6rem 2rem; background: var(--white); }
.contact-inner { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem; align-items: start; }
.contact-info h2 { font-family: 'Lora', serif; font-size: clamp(1.7rem, 2.8vw, 2.2rem); font-weight: 700; color: var(--navy); line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 1rem; }
.contact-info > p { font-size: 1rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 2rem; }
.contact-methods { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
.contact-method { display: flex; gap: 1.1rem; align-items: flex-start; background: var(--warm-white); border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem 1.5rem; text-decoration: none; transition: box-shadow 0.2s, transform 0.2s; }
.contact-method:hover { box-shadow: 0 6px 20px rgba(30,43,74,0.08); transform: translateY(-2px); }
.contact-method-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--navy); color: white; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-method-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: var(--text-muted); margin-bottom: 2px; }
.contact-method-value { font-size: 1rem; font-weight: 600; color: var(--navy); line-height: 1.3; }
.contact-method-sub { font-size: 0.82rem; color: var(--text-muted); margin-top: 2px; }
.response-promise { background: var(--navy); border-radius: 14px; padding: 1.5rem 1.75rem; display: flex; gap: 1rem; align-items: flex-start; }
.response-promise-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 2px; }
.response-promise-text strong { display: block; font-size: 0.9rem; font-weight: 700; color: white; margin-bottom: 3px; }
.response-promise-text p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
.contact-form-card { background: var(--warm-white); border: 1px solid var(--border); border-radius: 20px; padding: 2.5rem; }
.contact-form-card h3 { font-family: 'Lora', serif; font-size: 1.4rem; color: var(--navy); margin-bottom: 0.35rem; }
.contact-form-card > p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.75rem; line-height: 1.55; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237A8BAA' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.5rem; cursor: pointer; appearance: none; }

.also-section { background: var(--off-white); border-top: 1px solid var(--border); padding: 4rem 2rem; }
.also-inner { max-width: 1080px; margin: 0 auto; }
.also-inner h3 { font-family: 'Lora', serif; font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 1.5rem; text-align: center; }
.also-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.also-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; text-decoration: none; display: block; transition: box-shadow 0.2s, transform 0.2s; }
.also-card:hover { box-shadow: 0 6px 24px rgba(30,43,74,0.08); transform: translateY(-2px); }
.also-card-icon { font-size: 1.5rem; margin-bottom: 0.75rem; display: block; }
.also-card-title { font-family: 'Lora', serif; font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.3rem; }
.also-card-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; }
.also-card-arrow { display: inline-flex; align-items: center; gap: 5px; font-size: 0.82rem; color: var(--red); font-weight: 600; margin-top: 0.75rem; }

@media (max-width: 900px) { .contact-inner { grid-template-columns: 1fr; gap: 3rem; } .also-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .contact-section { padding: 4rem 1.5rem; } .also-section { padding: 3rem 1.5rem; } }
