/* contact.html — page-specific styles only */

/* PAGE HERO */
.page-hero { padding: 72px 48px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -80px; right: -80px; width: 400px; height: 400px; border: 80px solid rgba(255,255,255,.04); border-radius: 50%; pointer-events: none; }
.page-hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.page-hero-inner > * { min-width: 0; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,.55); text-decoration: none; } .breadcrumb a:hover { color: #f7b3f3; }
.breadcrumb span { color: #f7b3f3; font-weight: 700; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 4vw, 48px); color: #fff; line-height: 1.2; margin-bottom: 14px; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,.75); line-height: 1.75; margin-bottom: 28px; }
.hero-contact-items { display: flex; flex-direction: column; gap: 14px; }
.hci { display: flex; align-items: center; gap: 12px; }
.hci-icon { width: 42px; height: 42px; border-radius: 10px; background: rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.hci strong { display: block; font-size: 14px; color: #fff; font-weight: 700; }
.hci span { font-size: 12px; color: rgba(255,255,255,.6); }
.hci a { color: rgba(255,255,255,.85); text-decoration: none; font-weight: 600; font-size: 14px; display: block; }
.hci a:hover { color: #f7b3f3; }

/* AVAILABILITY BADGE */
.avail-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(74,122,48,.25); border: 1px solid rgba(74,122,48,.4); padding: 8px 16px; border-radius: 50px; font-size: 13px; font-weight: 700; color: #a8d88a; margin-top: 12px; }
.avail-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; animation: pulse 1.5s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }

/* MAIN CONTENT */
.contact-main { padding: 72px 48px; max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: start; }

/* CONTACT INFO SIDE */
.section-label { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--green); margin-bottom: 12px; }
.section-label::before { content: ''; width: 24px; height: 3px; background: var(--green); border-radius: 2px; }
h2.sec-title { font-family: 'Playfair Display', serif; font-size: clamp(24px, 3vw, 36px); color: var(--navy); line-height: 1.25; margin-bottom: 20px; }

.contact-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 40px; }
.contact-card { background: var(--white); border: 2px solid var(--border); border-radius: 16px; padding: 20px 22px; display: flex; align-items: flex-start; gap: 14px; transition: all .2s; }
.contact-card:hover { border-color: var(--purple); box-shadow: 0 6px 22px rgba(124,49,119,.08); }
.cc-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.cc-icon.purple { background: var(--purple-l); }
.cc-icon.green  { background: var(--green-l); }
.cc-icon.red    { background: var(--red-l); }
.cc-icon.cream  { background: var(--cream); }
.cc-body strong { display: block; font-size: 13px; font-weight: 800; color: var(--purple); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.cc-body a { display: block; font-size: 15px; color: var(--navy); font-weight: 700; text-decoration: none; transition: color .2s; margin-bottom: 2px; }
.cc-body a:hover { color: var(--purple); }
.cc-body p { font-size: 13px; color: var(--muted); line-height: 1.55; }
.cc-body span { font-size: 13px; color: var(--muted); display: block; line-height: 1.55; }

/* SOCIAL LINKS */
.social-section h3 { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-link { display: flex; align-items: center; gap: 8px; background: var(--purple-l); border: 1.5px solid var(--purple-m); color: var(--purple); border-radius: 50px; padding: 8px 18px; font-size: 13px; font-weight: 700; text-decoration: none; transition: all .2s; }
.social-link:hover { background: var(--purple); color: #fff; }

/* OPD MINI TABLE */
.opd-mini { margin-top: 36px; }
.opd-mini h3 { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.opd-table { width: 100%; border-collapse: collapse; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); }
.opd-table thead tr { background: var(--purple); }
.opd-table thead th { padding: 10px 16px; font-size: 12px; font-weight: 800; color: #fff; text-align: left; }
.opd-table tbody tr { border-bottom: 1px solid var(--border); }
.opd-table tbody tr:last-child { border-bottom: none; }
.opd-table tbody td { padding: 10px 16px; font-size: 12px; color: var(--text); }
.opd-table tbody td:first-child { font-weight: 700; color: var(--navy); }
.time-chip { display: inline-block; background: var(--green-l); color: var(--green); font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 4px; }
.time-chip.purple { background: var(--purple-l); color: var(--purple); }
.time-chip.appt { background: #FFF8E1; color: #B7860B; }

/* APPOINTMENT FORM */
.appt-form { background: var(--white); border-radius: 24px; padding: 36px; box-shadow: 0 16px 48px rgba(124,49,119,.1); border: 2px solid var(--purple-l); position: sticky; top: 100px; }
.form-title { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--navy); margin-bottom: 6px; }
.form-sub { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.fg label { font-size: 13px; font-weight: 700; color: var(--text); }
.fg input, .fg select, .fg textarea {
  padding: 12px 16px; border: 2px solid var(--border); border-radius: 10px;
  font-size: 14px; font-family: 'Inter', sans-serif; font-weight: 500;
  color: var(--text); background: var(--white); outline: none; transition: border-color .2s;
  width: 100%;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--purple); }
.fg textarea { resize: vertical; min-height: 90px; }
.fg select option { font-weight: 500; }
.submit-btn { width: 100%; padding: 15px; background: var(--purple); color: #fff; border: none; border-radius: 12px; font-size: 16px; font-weight: 800; font-family: 'Inter', sans-serif; cursor: pointer; transition: all .2s; box-shadow: 0 4px 16px rgba(124,49,119,.3); }
.submit-btn:hover { background: var(--purple-d); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(124,49,119,.4); }
.form-note { text-align: center; font-size: 12px; color: var(--muted); margin-top: 12px; }
.form-note a { color: var(--purple); text-decoration: none; font-weight: 700; }

/* QUICK ACTION BUTTONS */
.quick-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.qa-btn { display: flex; align-items: center; justify-content: center; gap: 8px; border-radius: 10px; padding: 13px 12px; font-size: 14px; font-weight: 700; text-decoration: none; transition: all .2s; }
.qa-call { background: var(--green); color: #fff; }
.qa-call:hover { background: var(--green); filter: brightness(0.88); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(109,170,41,.35); }
.qa-whatsapp { background: #25D366; color: #fff; }
.qa-whatsapp:hover { background: #1fba58; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(37,211,102,.3); }
.or-divider { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; font-size: 13px; color: var(--muted); font-weight: 600; }
.or-divider::before, .or-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* MAP PLACEHOLDER */
.map-section { background: var(--bg); padding: 72px 48px; }
.map-inner { max-width: 1100px; margin: 0 auto; }
.map-wrap { border-radius: 20px; overflow: hidden; border: 2px solid var(--border); margin-top: 28px; height: 380px; background: var(--purple-l); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── RESPONSIVE (page-specific) ── */
@media (max-width: 1024px) {
  .page-hero-inner { grid-template-columns: 1fr; }
  .contact-main { grid-template-columns: 1fr; }
  .appt-form { position: static; }
}
@media (max-width: 768px) {
  .contact-main, .map-section { padding: 52px 20px; }
  .page-hero { padding: 48px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .quick-actions { grid-template-columns: 1fr; }
  .appt-form { padding: 24px 18px; }
  .hero-contact-items { gap: 10px; }
}
@media (max-width: 480px) {
  .contact-main { padding: 36px 16px; gap: 32px; }
  .contact-card { padding: 16px; }
  .opd-mini { margin-top: 24px; }
}
