/* ============================================================
   AVYAN FM — CONTACT PAGE STYLES
   assets/css/contact.css
   ============================================================ */

/* HERO */
.hero { position: relative; height: 60vh; min-height: 420px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80') center/cover fixed; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg,rgba(26,54,93,.95),rgba(13,26,46,.8) 55%,rgba(39,59,124,.7)); }
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 80px; animation: fadeUp 1.1s ease both; }
.eyebrow { font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: var(--light-blue); font-weight: 600; margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--light-blue); }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.8rem,5vw,4.5rem); font-weight: 300; color: #fff; line-height: 1.1; margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--light-blue); }
.hero-sub { font-size: 17px; color: rgba(255,255,255,.76); line-height: 1.75; max-width: 560px; }

/* CONTACT MAIN */
.contact-main { background: #fff; padding: 100px 80px; display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.contact-info h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 400; color: var(--navy); margin-bottom: 16px; line-height: 1.2; }
.contact-info .intro { font-size: 16px; color: var(--text-mid); line-height: 1.8; margin-bottom: 48px; }
.info-cards { display: flex; flex-direction: column; gap: 4px; }
.info-card { background: var(--off-white); padding: 28px 32px; border-left: 4px solid transparent; transition: border-color .2s, background .2s; display: flex; align-items: flex-start; gap: 20px; }
.info-card:hover { border-left-color: var(--sky); background: #fff; }
.info-icon { width: 44px; height: 44px; border-radius: 50%; background: rgba(74,144,217,.12); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.info-label { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--sky); font-weight: 600; margin-bottom: 6px; }
.info-value { font-size: 16px; color: var(--navy); font-weight: 500; line-height: 1.6; }
.info-value a { color: var(--navy); text-decoration: none; transition: color .2s; }
.info-value a:hover { color: var(--sky); }
.info-sub { font-size: 13px; color: var(--text-light); margin-top: 4px; line-height: 1.6; }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; border-bottom: 1px solid rgba(0,0,0,.05); font-size: 14px; color: var(--text-mid); }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 500; color: var(--navy); }
.hours-row .time { color: var(--sky); font-weight: 600; }

/* FORM */
.contact-form-wrap { background: var(--off-white); padding: 52px 48px; border-top: 4px solid var(--sky); }
.contact-form-wrap h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.form-sub { font-size: 14px; color: var(--text-mid); margin-bottom: 36px; line-height: 1.6; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
label { display: block; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--navy); font-weight: 600; margin-bottom: 8px; }
input, select, textarea { width: 100%; background: #fff; border: 1px solid #dde4ee; border-radius: 2px; padding: 13px 16px; font-family: 'DM Sans', sans-serif; font-size: 15px; color: var(--text-dark); transition: border-color .2s, box-shadow .2s; outline: none; }
input:focus, select:focus, textarea:focus { border-color: var(--sky); box-shadow: 0 0 0 3px rgba(74,144,217,.12); }
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A5568' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
textarea { resize: vertical; min-height: 130px; }
.required { color: var(--sky); }
.checkbox-group { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 28px; }
.checkbox-group input[type=checkbox] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--sky); }
.checkbox-group label { text-transform: none; letter-spacing: 0; font-size: 13px; color: var(--text-mid); font-weight: 400; margin: 0; }
.checkbox-group label a { color: var(--sky); }
.submit-btn { width: 100%; background: var(--sky); color: #fff; padding: 16px 0; border: none; border-radius: 2px; font-family: 'DM Sans', sans-serif; font-size: 14px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; cursor: pointer; transition: background .2s, transform .2s; }
.submit-btn:hover { background: var(--mid-blue); transform: translateY(-2px); }
.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success .tick { font-size: 48px; margin-bottom: 16px; }
.form-success h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--navy); margin-bottom: 10px; }
.form-success p { font-size: 15px; color: var(--text-mid); line-height: 1.7; }

/* MAP */
.map-section { position: relative; overflow: hidden; }
.map-section iframe { display: block; width: 100%; height: 420px; border: none; filter: grayscale(25%) contrast(1.05); }
.map-overlay-strip { background: var(--navy); padding: 28px 80px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.map-address { color: rgba(255,255,255,.78); font-size: 14px; line-height: 1.8; }
.map-address strong { color: #fff; font-size: 15px; display: block; margin-bottom: 4px; }
.map-direct-btn { background: var(--sky); color: #fff; padding: 12px 28px; border-radius: 2px; text-decoration: none; font-size: 13px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; transition: background .2s; }
.map-direct-btn:hover { background: var(--mid-blue); }

/* QUICK CONTACT CARDS */
.quick-strip { background: var(--off-white); padding: 72px 80px; }
.quick-strip-inner { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; }
.quick-card { background: #fff; padding: 40px 32px; text-align: center; border-bottom: 3px solid transparent; transition: border-color .2s, transform .2s; }
.quick-card:hover { border-bottom-color: var(--sky); transform: translateY(-4px); }
.quick-icon { font-size: 32px; margin-bottom: 16px; }
.quick-card h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--navy); font-weight: 600; margin-bottom: 10px; }
.quick-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; }
.quick-card a { color: var(--sky); text-decoration: none; font-weight: 600; font-size: 15px; transition: color .2s; }
.quick-card a:hover { color: var(--navy); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-content { padding: 0 24px; }
  .contact-main { grid-template-columns: 1fr; padding: 60px 24px; gap: 48px; }
  .contact-form-wrap { padding: 36px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .map-overlay-strip { padding: 24px; }
  .quick-strip { padding: 60px 24px; }
  .quick-strip-inner { grid-template-columns: 1fr; }
}
