/* ═══════════════════════════════════════
   McAlester MBC — Shared Stylesheet
═══════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Source Serif 4', Georgia, serif;
  background: #FDFAF5;
  color: #1C1A17;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Variables ── */
:root {
  --navy:      #1A2744;
  --navy-mid:  #243259;
  --gold:      #B8933E;
  --gold-lt:   #D4AB5A;
  --cream:     #FDFAF5;
  --cream-dk:  #F3EDE2;
  --stone:     #E8DFD0;
  --charcoal:  #2E2A24;
  --text:      #1C1A17;
  --text-muted:#6B6355;
  --white:     #FFFFFF;
  --radius:    6px;
  --shadow:    0 4px 24px rgba(26,39,68,0.10);
  --shadow-lg: 0 12px 48px rgba(26,39,68,0.18);
  --max-w:     1100px;
  --section-pad: clamp(56px, 8vw, 96px);
}

/* ── Typography ── */
h1,h2,h3,h4 { font-family:'Playfair Display',Georgia,serif; line-height:1.2; color:var(--navy); }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
p  { font-size: clamp(1rem, 1.2vw, 1.1rem); color: var(--text-muted); }
a  { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-lt); }

/* ── Utilities ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px,5vw,48px); }
.section   { padding: var(--section-pad) 0; }
.text-center { text-align: center; }
.gold { color: var(--gold); }

.btn {
  display: inline-block; padding: 14px 32px; border-radius: var(--radius);
  font-family: 'Source Serif 4', serif; font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: all 0.25s ease; border: 2px solid transparent;
  letter-spacing: 0.02em;
}
.btn-primary { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-lt); border-color: var(--gold-lt); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-mid); border-color: var(--navy-mid); color: var(--white); }

.section-label {
  display: inline-block; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.divider { width:56px; height:3px; background:var(--gold); margin:18px auto 28px; border-radius:2px; }
.divider-left { margin-left:0; }

/* ── Reveal animation ── */
.reveal { opacity:0; transform:translateY(28px); transition:opacity 0.7s ease,transform 0.7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ═══════════════════════════════════════
   PAGE HERO BANNER (inner pages)
═══════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #0E1A35 100%);
  padding: 120px 0 60px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(184,147,62,0.04) 40px, rgba(184,147,62,0.04) 41px);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-hero h1 { color: var(--white); position: relative; z-index: 1; }
.page-hero .section-label { position: relative; z-index: 1; }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 540px; margin: 12px auto 0; position: relative; z-index: 1; }

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
#site-nav {
  position: fixed; top:0; left:0; right:0; z-index:100;
  background: rgba(26,39,68,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(184,147,62,0.25);
  transition: box-shadow 0.3s;
}
#site-nav.scrolled { box-shadow: var(--shadow-lg); }
.nav-inner { display:flex; align-items:center; justify-content:space-between; height:68px; }
.nav-brand { display:flex; flex-direction:column; line-height:1.1; }
.nav-brand-name { font-family:'Playfair Display',serif; font-size:clamp(0.9rem,1.8vw,1.15rem); font-weight:700; color:var(--white); }
.nav-brand-sub { font-size:0.68rem; letter-spacing:0.16em; text-transform:uppercase; color:var(--gold); }
.nav-links { display:flex; align-items:center; gap:clamp(14px,2.5vw,30px); list-style:none; }
.nav-links a { color:rgba(255,255,255,0.85); font-size:0.88rem; font-weight:400; letter-spacing:0.04em; transition:color 0.2s; }
.nav-links a:hover, .nav-links a.active { color:var(--gold-lt); }
.nav-links .nav-cta a { background:var(--gold); color:var(--white); padding:8px 20px; border-radius:var(--radius); font-weight:600; }
.nav-links .nav-cta a:hover { background:var(--gold-lt); color:var(--white); }
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none; padding:4px; }
.hamburger span { display:block; width:26px; height:2px; background:var(--white); border-radius:2px; transition:all 0.3s ease; }
.hamburger.open span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }
.mobile-nav { display:none; flex-direction:column; background:var(--navy); border-top:1px solid rgba(184,147,62,0.2); padding:16px 0 24px; }
.mobile-nav.open { display:flex; }
.mobile-nav a { color:rgba(255,255,255,0.85); padding:12px clamp(20px,5vw,48px); font-size:1rem; border-bottom:1px solid rgba(255,255,255,0.06); transition:color 0.2s,background 0.2s; }
.mobile-nav a:hover { color:var(--gold-lt); background:rgba(255,255,255,0.04); }
.mobile-nav a:last-child { border-bottom:none; }
@media (max-width:780px) { .nav-links { display:none; } .hamburger { display:flex; } }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
#site-footer { background:#0D1526; color:rgba(255,255,255,0.55); padding:56px 0 32px; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr; gap:clamp(32px,5vw,64px); padding-bottom:40px; border-bottom:1px solid rgba(255,255,255,0.08); margin-bottom:28px; }
@media (max-width:700px) { .footer-grid { grid-template-columns:1fr; gap:32px; } }
.footer-brand-name { font-family:'Playfair Display',serif; font-size:1.2rem; font-weight:700; color:var(--white); margin-bottom:6px; }
.footer-brand-sub { font-size:0.68rem; letter-spacing:0.16em; text-transform:uppercase; color:var(--gold); margin-bottom:16px; }
.footer-tagline { font-size:0.88rem; line-height:1.65; }
.footer-col-title { font-family:'Playfair Display',serif; font-size:1rem; font-weight:700; color:var(--white); margin-bottom:14px; }
.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom:9px; }
.footer-col ul li a { color:rgba(255,255,255,0.55); font-size:0.88rem; transition:color 0.2s; }
.footer-col ul li a:hover { color:var(--gold-lt); }
.footer-col ul li span { color:rgba(255,255,255,0.55); font-size:0.88rem; }
.footer-bottom { display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:12px; }
.footer-copy { font-size:0.8rem; }

.social-links { display:flex; gap:12px; margin-top:20px; }
.social-link { width:40px; height:40px; border-radius:50%; display:flex; align-items:center; justify-content:center; background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.12); transition:background 0.2s,transform 0.2s; }
.social-link:hover { background:var(--gold); transform:translateY(-2px); }
.social-link svg { width:18px; height:18px; fill:rgba(255,255,255,0.75); }
.social-link:hover svg { fill:white; }

/* ── Back to top ── */
#btt { position:fixed; bottom:28px; right:28px; z-index:99; width:44px; height:44px; background:var(--gold); color:var(--white); border:none; border-radius:50%; display:flex; align-items:center; justify-content:center; cursor:pointer; box-shadow:0 4px 16px rgba(184,147,62,0.5); opacity:0; pointer-events:none; transition:opacity 0.3s,transform 0.3s; font-size:1.2rem; }
#btt.show { opacity:1; pointer-events:all; }
#btt:hover { transform:translateY(-3px); }

/* ═══════════════════════════════════════
   HOME PAGE
═══════════════════════════════════════ */
#hero {
  min-height: 100svh;
  background:
    linear-gradient(to bottom, rgba(14,22,42,0.72) 0%, rgba(14,22,42,0.48) 50%, rgba(14,22,42,0.80) 100%),
    url('1000005247.jpg') center/cover no-repeat;
  display:flex; align-items:center; position:relative; overflow:hidden;
}
.hero-inner { display:flex; flex-direction:column; align-items:flex-start; gap:28px; padding-top:80px; }
.hero-verse { font-style:italic; color:var(--gold-lt); font-size:clamp(0.85rem,1.2vw,0.95rem); letter-spacing:0.06em; opacity:0; animation:fadeUp 0.8s ease 0.2s forwards; }
.hero-title { color:var(--white); max-width:720px; opacity:0; animation:fadeUp 0.8s ease 0.45s forwards; }
.hero-title em { font-style:italic; color:var(--gold-lt); }
.hero-sub { color:rgba(255,255,255,0.78); font-size:clamp(1rem,1.5vw,1.2rem); max-width:520px; line-height:1.65; opacity:0; animation:fadeUp 0.8s ease 0.65s forwards; }
.hero-actions { display:flex; gap:16px; flex-wrap:wrap; opacity:0; animation:fadeUp 0.8s ease 0.85s forwards; }
.hero-scroll { position:absolute; bottom:32px; left:50%; transform:translateX(-50%); display:flex; flex-direction:column; align-items:center; gap:6px; color:rgba(255,255,255,0.5); font-size:0.72rem; letter-spacing:0.12em; text-transform:uppercase; animation:bounce 2s ease-in-out infinite 2s; }
.hero-scroll svg { width:20px; height:20px; }
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* Welcome strip */
#welcome-strip { background:var(--navy); }
.welcome-strip-inner { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); }
.ws-item { padding:32px 28px; border-right:1px solid rgba(255,255,255,0.08); display:flex; flex-direction:column; align-items:center; gap:10px; text-align:center; }
.ws-item:last-child { border-right:none; }
.ws-icon { font-size:1.8rem; }
.ws-label { font-size:0.7rem; letter-spacing:0.16em; text-transform:uppercase; color:var(--gold); font-weight:600; }
.ws-value { font-family:'Playfair Display',serif; font-size:1rem; font-weight:700; color:var(--white); line-height:1.35; }
@media (max-width:600px) { .ws-item { border-right:none; border-bottom:1px solid rgba(255,255,255,0.08); } .ws-item:last-child{border-bottom:none;} }

/* Quick links grid */
.quick-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:20px; margin-top:48px; }
.quick-card {
  background:var(--white); border-radius:10px; padding:32px 24px; text-align:center;
  box-shadow:var(--shadow); border-top:4px solid var(--gold);
  transition:transform 0.25s,box-shadow 0.25s; text-decoration:none; display:block;
}
.quick-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-lg); color:inherit; }
.qc-icon { font-size:2rem; margin-bottom:12px; }
.qc-title { font-family:'Playfair Display',serif; font-size:1.15rem; color:var(--navy); margin-bottom:6px; }
.qc-sub { font-size:0.85rem; color:var(--text-muted); }

/* Service times on home */
.service-card { background:var(--white); border-radius:10px; padding:36px 32px; box-shadow:var(--shadow); border-top:4px solid var(--gold); transition:transform 0.25s,box-shadow 0.25s; }
.service-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.sc-icon { font-size:2rem; margin-bottom:14px; }
.sc-day { font-size:0.72rem; letter-spacing:0.18em; text-transform:uppercase; color:var(--gold); font-weight:700; margin-bottom:4px; }
.sc-name { font-family:'Playfair Display',serif; font-size:1.4rem; color:var(--navy); margin-bottom:6px; }
.sc-time { font-size:1.1rem; font-weight:600; color:var(--charcoal); }
.sc-note { font-size:0.85rem; margin-top:10px; color:var(--text-muted); }
.services-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:28px; margin-top:48px; }

/* ═══════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════ */
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:clamp(40px,6vw,80px); align-items:center; }
@media (max-width:768px) { .about-grid { grid-template-columns:1fr; } }
.about-img-wrap { position:relative; }
.about-img-wrap::before { content:''; position:absolute; top:-16px; left:-16px; right:16px; bottom:16px; border:3px solid var(--gold); border-radius:var(--radius); z-index:0; }
.about-img { position:relative; z-index:1; width:100%; border-radius:var(--radius); display:block; object-fit:cover; aspect-ratio:4/3; box-shadow:var(--shadow-lg); }
.about-values { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:28px; }
.av-item { display:flex; align-items:flex-start; gap:10px; }
.av-dot { flex-shrink:0; width:8px; height:8px; border-radius:50%; background:var(--gold); margin-top:8px; }
.av-text { font-size:0.9rem; font-weight:600; color:var(--charcoal); line-height:1.4; }

/* ═══════════════════════════════════════
   PASTOR PAGE
═══════════════════════════════════════ */
.pastor-grid { display:grid; grid-template-columns:300px 1fr; gap:clamp(40px,6vw,72px); align-items:start; }
@media (max-width:768px) { .pastor-grid { grid-template-columns:1fr; } }
.pastor-photo { width:100%; border-radius:10px; display:block; object-fit:cover; aspect-ratio:3/4; box-shadow:var(--shadow-lg); background:var(--stone); }
.pastor-photo-placeholder { width:100%; border-radius:10px; aspect-ratio:3/4; background:linear-gradient(135deg,var(--navy) 0%,var(--navy-mid) 100%); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px; color:rgba(255,255,255,0.5); box-shadow:var(--shadow-lg); }
.pastor-photo-placeholder svg { width:64px; height:64px; opacity:0.4; }
.pastor-photo-placeholder span { font-size:0.8rem; letter-spacing:0.08em; }
.pastor-badge { display:inline-block; background:var(--gold); color:var(--white); font-family:'Playfair Display',serif; font-size:0.95rem; font-weight:700; padding:8px 22px; border-radius:40px; margin-top:16px; box-shadow:0 4px 16px rgba(184,147,62,0.4); }
.pastor-title-sub { color:var(--gold); font-size:0.78rem; letter-spacing:0.16em; text-transform:uppercase; font-weight:600; margin-bottom:16px; display:block; }

/* ═══════════════════════════════════════
   LOCATION PAGE
═══════════════════════════════════════ */
.location-grid { display:grid; grid-template-columns:1fr 1fr; gap:clamp(40px,6vw,72px); align-items:start; }
@media (max-width:768px) { .location-grid { grid-template-columns:1fr; } }
.loc-detail { display:flex; gap:16px; align-items:flex-start; margin-bottom:24px; }
.loc-icon { flex-shrink:0; width:42px; height:42px; background:rgba(26,39,68,0.08); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.1rem; }
.loc-info strong { display:block; font-family:'Playfair Display',serif; font-size:1rem; color:var(--navy); margin-bottom:3px; }
.loc-info span { color:var(--text-muted); font-size:0.92rem; }
.map-frame { width:100%; border-radius:10px; overflow:hidden; box-shadow:var(--shadow-lg); border:2px solid rgba(184,147,62,0.25); }
.map-frame iframe { width:100%; height:400px; border:none; display:block; }

/* ═══════════════════════════════════════
   BELIEFS PAGE
═══════════════════════════════════════ */
.beliefs-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:24px; margin-top:48px; }
.belief-card { padding:28px 24px; background:var(--white); border-radius:10px; box-shadow:var(--shadow); position:relative; overflow:hidden; transition:transform 0.25s,box-shadow 0.25s; }
.belief-card:hover { transform:translateY(-3px); box-shadow:var(--shadow-lg); }
.belief-card::after { content:''; position:absolute; bottom:0; left:0; right:0; height:3px; background:var(--gold); }
.belief-num { font-family:'Playfair Display',serif; font-size:3.5rem; font-weight:900; color:rgba(26,39,68,0.06); line-height:1; position:absolute; top:12px; right:18px; }
.belief-icon { font-size:1.6rem; margin-bottom:12px; }
.belief-title { font-size:1.1rem; margin-bottom:8px; }
.belief-text { font-size:0.88rem; line-height:1.6; }

/* ═══════════════════════════════════════
   SERMONS PAGE
═══════════════════════════════════════ */
.sermon-embed-wrap { position:relative; width:100%; border-radius:12px; overflow:hidden; box-shadow:var(--shadow-lg); background:#000; }
.sermon-embed-wrap::before { content:''; position:absolute; top:-10px; left:-10px; right:10px; bottom:10px; border:3px solid var(--gold); border-radius:14px; z-index:0; pointer-events:none; }
.sermon-iframe-container { position:relative; padding-bottom:56.25%; height:0; overflow:hidden; border-radius:12px; z-index:1; }
.sermon-iframe-container iframe { position:absolute; top:0; left:0; width:100%; height:100%; border:none; }
.sermon-embed-placeholder { aspect-ratio:16/9; background:linear-gradient(135deg,var(--navy) 0%,var(--navy-mid) 100%); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:16px; padding:32px; text-align:center; border-radius:12px; z-index:1; position:relative; }
.yt-play-icon { width:72px; height:72px; background:#FF0000; border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow:0 8px 32px rgba(255,0,0,0.4); }
.yt-play-icon svg { width:32px; height:32px; fill:white; margin-left:4px; }
.sermon-embed-placeholder p { color:rgba(255,255,255,0.65); font-size:0.9rem; max-width:260px; }
.sermons-layout { display:grid; grid-template-columns:1fr 1fr; gap:clamp(40px,6vw,72px); align-items:start; margin-top:48px; }
@media (max-width:768px) { .sermons-layout { grid-template-columns:1fr; } }
.featured-sermon-meta { padding:24px; background:var(--white); border-radius:10px; border-left:4px solid var(--gold); box-shadow:var(--shadow); }
.fsm-label { font-size:0.68rem; letter-spacing:0.18em; text-transform:uppercase; color:var(--gold); font-weight:700; margin-bottom:8px; }
.fsm-title { font-family:'Playfair Display',serif; font-size:1.2rem; color:var(--navy); margin-bottom:6px; line-height:1.3; }
.fsm-series { font-size:0.85rem; color:var(--text-muted); margin-bottom:0; }
.sermon-info { display:flex; flex-direction:column; gap:28px; }
.sermon-cards { display:flex; flex-direction:column; gap:14px; }
.sermon-card { display:flex; gap:14px; align-items:flex-start; padding:16px; background:var(--white); border-radius:8px; box-shadow:var(--shadow); text-decoration:none; transition:transform 0.2s,box-shadow 0.2s; border:1px solid var(--stone); }
.sermon-card:hover { transform:translateX(4px); box-shadow:var(--shadow-lg); }
.sc-thumb { flex-shrink:0; width:90px; height:60px; background:var(--navy); border-radius:6px; overflow:hidden; display:flex; align-items:center; justify-content:center; position:relative; }
.sc-thumb img { width:100%; height:100%; object-fit:cover; display:block; }
.sc-thumb-play { position:absolute; inset:0; background:rgba(0,0,0,0.35); display:flex; align-items:center; justify-content:center; }
.sc-thumb-play svg { width:22px; height:22px; fill:white; margin-left:2px; }
.sc-meta { flex:1; min-width:0; }
.sc-meta-title { font-family:'Playfair Display',serif; font-size:0.95rem; color:var(--navy); line-height:1.3; margin-bottom:4px; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.sc-meta-sub { font-size:0.78rem; color:var(--text-muted); }
.sc-arrow { flex-shrink:0; color:var(--gold); font-size:1.1rem; margin-top:2px; }
.sermons-cta { text-align:center; margin-top:36px; }
.btn-youtube { background:#FF0000; color:var(--white); border-color:#FF0000; display:inline-flex; align-items:center; gap:10px; }
.btn-youtube:hover { background:#cc0000; border-color:#cc0000; color:var(--white); }
.btn-youtube svg { width:20px; height:20px; fill:white; }

/* ═══════════════════════════════════════
   PRAYER PAGE
═══════════════════════════════════════ */
.prayer-grid { display:grid; grid-template-columns:1fr 1fr; gap:clamp(40px,6vw,80px); align-items:start; }
@media (max-width:768px) { .prayer-grid { grid-template-columns:1fr; } }
.prayer-verse { margin-top:28px; padding:20px 24px; border-left:3px solid var(--gold); background:rgba(26,39,68,0.06); border-radius:0 var(--radius) var(--radius) 0; }
.prayer-verse blockquote { font-style:italic; color:var(--charcoal); font-size:1rem; line-height:1.65; }
.prayer-verse cite { display:block; margin-top:8px; color:var(--gold); font-size:0.8rem; font-style:normal; letter-spacing:0.08em; }
.prayer-form { background:var(--white); border-radius:12px; padding:clamp(28px,4vw,48px); box-shadow:var(--shadow-lg); border:1px solid var(--stone); }
.form-title { font-family:'Playfair Display',serif; font-size:1.4rem; color:var(--navy); margin-bottom:24px; }
.form-group { margin-bottom:18px; }
.form-group label { display:block; font-size:0.82rem; font-weight:600; letter-spacing:0.04em; color:var(--charcoal); margin-bottom:6px; }
.form-group input,.form-group textarea,.form-group select { width:100%; padding:11px 14px; border:1.5px solid var(--stone); border-radius:var(--radius); font-family:'Source Serif 4',serif; font-size:0.95rem; color:var(--text); background:var(--cream); transition:border-color 0.2s,box-shadow 0.2s; appearance:none; }
.form-group input:focus,.form-group textarea:focus,.form-group select:focus { outline:none; border-color:var(--gold); box-shadow:0 0 0 3px rgba(184,147,62,0.15); }
.form-group textarea { resize:vertical; min-height:110px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
@media (max-width:480px) { .form-row { grid-template-columns:1fr; } }
.form-submit { width:100%; padding:14px; font-size:1rem; margin-top:8px; }
.form-msg { display:none; margin-top:14px; padding:14px 16px; border-radius:var(--radius); font-size:0.9rem; font-weight:600; }
.form-msg.success { background:#EAF6EE; color:#2D7A45; border:1px solid #A8D9B5; }
.form-msg.error   { background:#FEF0EF; color:#B03B2D; border:1px solid #F4B8B2; }
.contact-info-card { background:var(--navy); border-radius:12px; padding:32px; margin-bottom:28px; }
.contact-info-card .loc-icon { background:rgba(184,147,62,0.18); }
.contact-info-card .loc-info strong { color:var(--white); }
.contact-info-card .loc-info span { color:rgba(255,255,255,0.62); }
