/* ============================================================
   RedCare – Main Stylesheet
   Path: assets/css/style.css
   Link in HTML: <link rel="stylesheet" href="assets/css/style.css">
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --red:          #C0392B;
  --red-dark:     #922b21;
  --red-light:    #f9ebea;
  --red-mid:      #e74c3c;
  --white:        #ffffff;
  --off-white:    #fdfcfc;
  --cream:        #fef9f9;
  --text:         #1a1a1a;
  --text-muted:   #6b6b6b;
  --text-light:   #9b9b9b;
  --border:       #f0dede;
  --border-mid:   #e8c9c9;
  --shadow:       0 2px 20px rgba(192,57,43,0.08);
  --shadow-hover: 0 8px 32px rgba(192,57,43,0.15);
  --radius:       12px;
  --radius-lg:    20px;
  --font-display: 'Playfair Display', serif;
  --font-body:    'DM Sans', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 12px rgba(192,57,43,0.06);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 64px;
  gap: 8px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-right: auto;
}
.logo-icon {
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c0392b;
  font-size: 30px;
  font-weight: 700;
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text);
  line-height: 1;
}
.logo-sub {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 0.5px;
}
.nav-link {
  background: none;
  border: none;
  padding: 8px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-muted);
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-link:hover  { background: var(--red-light); color: var(--red); }
.nav-link.active { background: var(--red-light); color: var(--red); font-weight: 500; }
.nav-cta {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 9px 20px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--red-dark); }

/* ============================================================
   PAGE SYSTEM (single-page routing)
   ============================================================ */
.page          { display: none; min-height: calc(100vh - 64px); }
.page.active   { display: block; }

/* ============================================================
   HOME — HERO
   ============================================================ */
.hero {
  background: var(--cream);
  padding: 72px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(192,57,43,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--red-light);
  color: var(--red);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-bottom: 24px;
  border: 1px solid var(--border-mid);
}
.hero-badge span {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  display: inline-block;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 em  { color: var(--red); font-style: normal; }
.hero p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 36px;
  font-weight: 300;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Buttons ── */
.btn-primary {
  background: var(--red);
  color: #fff;
  padding: 13px 28px;
  border-radius: 10px;
  border: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--red);
  padding: 13px 28px;
  border-radius: 10px;
  border: 1.5px solid var(--red);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--red-light); }

/* ── Stats ── */
.stats-row {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: all 0.25s;
}
.stat-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  border-color: var(--border-mid);
}
.stat-number { font-family: var(--font-display); font-size: 36px; color: var(--red); line-height: 1; }
.stat-label  { font-size: 13px; color: var(--text-muted); margin-top: 6px; }

/* ── Section ── */
.section          { max-width: 1100px; margin: 0 auto; padding: 48px 24px; }
.section-title    { font-family: var(--font-display); font-size: 28px; color: var(--text); margin-bottom: 8px; }
.section-subtitle { color: var(--text-muted); font-weight: 300; margin-bottom: 32px; font-size: 15px; }

/* ── How it works ── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.how-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}
.how-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--red);
}
.how-num   { font-family: var(--font-display); font-size: 40px; color: var(--red-light); font-weight: 700; line-height: 1; margin-bottom: 12px; }
.how-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 8px; color: var(--text); }
.how-card p  { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.divider-red {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border-mid), transparent);
  margin: 0 auto;
  max-width: 1100px;
}

/* ============================================================
   DONOR REGISTRATION
   ============================================================ */
.form-wrap   { max-width: 680px; margin: 0 auto; padding: 40px 24px 60px; }
.form-header { text-align: center; margin-bottom: 36px; }
.form-header h2 { font-family: var(--font-display); font-size: 30px; margin-bottom: 8px; }
.form-header p  { color: var(--text-muted); font-size: 14px; font-weight: 300; }

.donor-toggle {
  display: flex;
  background: var(--red-light);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 32px;
  border: 1px solid var(--border-mid);
}
.dtoggle {
  flex: 1;
  padding: 10px;
  border: none;
  background: transparent;
  border-radius: 7px;
  font-family: var(--font-body);
  font-size: 14px;
  cursor: pointer;
  color: var(--text-muted);
  font-weight: 400;
  transition: all 0.2s;
}
.dtoggle.active { background: var(--red); color: #fff; font-weight: 500; }

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.form-row            { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group          { margin-bottom: 20px; }
.form-group.full     { grid-column: 1 / -1; }
label                { display: block; font-size: 13px; font-weight: 500; color: var(--text); margin-bottom: 6px; }
label span           { color: var(--red); }

input, select, textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border-mid);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
input:focus, select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,57,43,.08);
}
input[type="file"] { padding: 8px 14px; background: var(--cream); cursor: pointer; }

.section-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0 20px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.section-divider::before,
.section-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.payment-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pay-opt {
  border: 1.5px solid var(--border-mid);
  border-radius: 9px;
  padding: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
  background: var(--white);
}
.pay-opt:hover,
.pay-opt.selected { border-color: var(--red); background: var(--red-light); }
.pay-icon  { width: 32px; height: 32px; background: var(--red-light); border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.pay-label { font-size: 13px; font-weight: 500; }
.pay-sub   { font-size: 11px; color: var(--text-muted); }

.captcha-box {
  border: 1px solid var(--border-mid);
  border-radius: 8px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--cream);
}
.captcha-check {
  width: 22px;
  height: 22px;
  border: 2px solid var(--border-mid);
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.captcha-check.checked { background: var(--red); border-color: var(--red); color: #fff; }
.captcha-text { font-size: 13px; color: var(--text-muted); }
.captcha-logo { margin-left: auto; font-size: 10px; color: var(--text-light); text-align: center; line-height: 1.3; }

.submit-btn {
  width: 100%;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}
.submit-btn:hover { background: var(--red-dark); transform: translateY(-1px); }

/* ============================================================
   DONOR HONOUR BOARD
   ============================================================ */
.donors-page   { padding: 40px 24px 60px; max-width: 1100px; margin: 0 auto; }
.donors-header { text-align: center; margin-bottom: 40px; }
.donors-header h2 { font-family: var(--font-display); font-size: 32px; margin-bottom: 8px; }

.tier-filter { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.tier-btn {
  border: 1px solid var(--border-mid);
  background: var(--white);
  padding: 8px 18px;
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-muted);
}
.tier-btn.active,
.tier-btn:hover { background: var(--red); color: #fff; border-color: var(--red); }

.tier-section { margin-bottom: 40px; }
.tier-label   { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.tier-badge   { padding: 4px 14px; border-radius: 20px; font-size: 12px; font-weight: 600; letter-spacing: 0.3px; }
.tier-badge.bronze   { background: #f5e6d3; color: #8b5e3c; }
.tier-badge.silver   { background: #e8edf5; color: #3a5280; }
.tier-badge.gold     { background: #fef3d0; color: #7a5c00; }
.tier-badge.platinum { background: var(--red-light); color: var(--red-dark); }

.donors-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.donor-card {
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  text-align: center;
  border: 1px solid;
  transition: all 0.25s;
  cursor: default;
}
.donor-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.donor-card.bronze   { background: #fffaf6; border-color: #e8c9a0; }
.donor-card.silver   { background: #f5f7fa; border-color: #c5cedf; }
.donor-card.gold     { background: #fffdf0; border-color: #e6cc70; }
.donor-card.platinum { background: #fff5f5; border-color: #f0b8b8; }

.donor-avatar-placeholder {
  width: 60px; height: 60px;
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.donor-card.bronze   .donor-avatar-placeholder { background: #f0d5b8; color: #8b5e3c; }
.donor-card.silver   .donor-avatar-placeholder { background: #dae0ec; color: #3a5280; }
.donor-card.gold     .donor-avatar-placeholder { background: #f5e6a0; color: #7a5c00; }
.donor-card.platinum .donor-avatar-placeholder { background: #f7d0d0; color: var(--red-dark); }

.donor-name   { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.donor-amount { font-family: var(--font-display); font-size: 18px; color: var(--red); font-weight: 600; }
.donor-city   { font-size: 12px; color: var(--text-muted); margin-top: 3px; }

/* ============================================================
   E-RECEIPT
   ============================================================ */
.receipt-wrap { max-width: 540px; margin: 40px auto; padding: 0 24px 60px; }
.receipt-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.receipt-header {
  background: var(--red);
  padding: 28px 32px;
  color: #fff;
  text-align: center;
}
.receipt-header-logo { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 4px; }
.receipt-cross { font-size: 22px; font-weight: 700; }
.receipt-org   { font-family: var(--font-display); font-size: 22px; }
.receipt-header p { font-size: 12px; opacity: 0.8; letter-spacing: 0.3px; }
.receipt-id {
  background: rgba(255,255,255,.15);
  display: inline-block;
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 12px; font-weight: 600;
  margin-top: 10px;
  letter-spacing: 0.5px;
}
.receipt-body { padding: 28px 32px; }
.receipt-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
}
.receipt-row:last-child { border-bottom: none; }
.receipt-key { font-size: 13px; color: var(--text-muted); font-weight: 400; }
.receipt-val { font-size: 14px; font-weight: 500; text-align: right; max-width: 220px; }
.receipt-amount-row {
  background: var(--red-light);
  margin: 0 -32px;
  padding: 18px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
}
.receipt-amount-label { font-size: 14px; font-weight: 600; color: var(--red-dark); }
.receipt-amount-val   { font-family: var(--font-display); font-size: 28px; color: var(--red); font-weight: 700; }
.receipt-actions { padding: 20px 32px; display: flex; gap: 10px; border-top: 1px solid var(--border); }
.btn-sm {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 13px; font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.btn-sm.primary               { background: var(--red); color: #fff; border: none; }
.btn-sm.primary:hover         { background: var(--red-dark); }
.btn-sm.outline               { background: transparent; color: var(--red); border: 1.5px solid var(--red); }
.btn-sm.outline:hover         { background: var(--red-light); }
.receipt-footer { text-align: center; padding: 0 32px 24px; font-size: 11px; color: var(--text-light); line-height: 1.6; }

/* ============================================================
   ADMIN LOGIN
   ============================================================ */
.login-page {
  min-height: calc(100vh - 64px);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}
.login-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 100%; max-width: 420px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(192,57,43,.1);
}
.login-top {
  background: var(--red);
  padding: 28px 32px;
  color: #fff;
  text-align: center;
}
.login-top-logo { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 6px; }
.login-top h2   { font-family: var(--font-display); font-size: 22px; }
.login-top p    { font-size: 12px; opacity: 0.8; }
.login-body     { padding: 28px 32px 32px; }
.login-body .form-group { margin-bottom: 18px; }
.input-wrap     { position: relative; }
.input-icon     { position: absolute; left: 12px; top: 30%; transform: translateY(-50%); color: var(--text-muted); font-size: 16px; }
.input-wrap input { padding-left: 38px; }
.login-captcha {
  border: 1px solid var(--border-mid);
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  margin-bottom: 18px;
}
.login-submit {
  width: 100%;
  background: var(--red);
  color: #fff;
  border: none;
  padding: 13px;
  border-radius: 9px;
  font-family: var(--font-body);
  font-size: 15px; font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.3px;
}
.login-submit:hover { background: var(--red-dark); }
.login-info { text-align: center; font-size: 12px; color: var(--text-muted); margin-top: 14px; line-height: 1.6; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: #111111; color: rgba(255,255,255,.65); font-size: 13px; margin-top: auto; }
.footer-main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 36px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .logo-text { color: #fff; font-size: 18px; }
.footer-brand .logo-sub  { color: rgba(255,255,255,.45); }
.footer-brand p          { margin-top: 14px; font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.7; max-width: 260px; }
.footer-col h4           { color: #fff; font-size: 13px; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 14px; text-transform: uppercase; }
.footer-col ul           { list-style: none; }
.footer-social {
  width: 32px; height: 32px;
  background: rgba(255,255,255,.1);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: all .2s;
}
.footer-social:hover { background: var(--red); color: #fff; }
.footer-col ul li        { margin-bottom: 10px; }
.footer-col ul li a,
.footer-col ul li button {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  font-size: 13px;
  background: none; border: none;
  cursor: pointer; padding: 0;
  font-family: var(--font-body);
  transition: color 0.2s;
  text-align: left;
}
.footer-col ul li a:hover,
.footer-col ul li button:hover { color: #fff; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}
.footer-contact-icon {
  width: 28px; height: 28px;
  background: rgba(192,57,43,.3);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
  margin-top: 1px;
}
.footer-contact-item strong { display: block; color: rgba(255,255,255,.85); font-weight: 500; margin-bottom: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px 24px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom span  { font-size: 12px; color: rgba(255,255,255,.35); }
.footer-bottom strong{ color: rgba(255,255,255,.55); }

/* ============================================================
   TOAST NOTIFICATION
   ============================================================ */
.toast {
  position: fixed;
  bottom: 24px; right: 24px;
  background: var(--text);
  color: #fff;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 14px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
  z-index: 999;
  max-width: 280px;
  border-left: 4px solid var(--red);
}
.toast.show { opacity: 1; transform: translateY(0); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  background: var(--cream);
  padding: 56px 24px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(192,57,43,.06) 0%, transparent 70%);
  pointer-events: none;
}
.contact-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 46px);
  color: var(--text); margin-bottom: 14px; line-height: 1.2;
}
.contact-hero h1 em { color: var(--red); font-style: normal; }
.contact-hero p {
  font-size: 16px; color: var(--text-muted);
  max-width: 480px; margin: 0 auto; font-weight: 300; line-height: 1.7;
}

.contact-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 64px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 32px;
  align-items: start;
}

/* ── Info Cards ── */
.contact-info        { display: flex; flex-direction: column; gap: 14px; }
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all .2s;
}
.contact-card:hover  { box-shadow: var(--shadow-hover); border-color: var(--border-mid); transform: translateY(-1px); }
.contact-card-icon   { width: 40px; height: 40px; background: var(--red-light); border-radius: 9px;
                       display: flex; align-items: center; justify-content: center;
                       font-size: 18px; flex-shrink: 0; }
.contact-card-title  { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.contact-card-text   { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.contact-card-sub    { font-size: 12px; color: var(--text-light); margin-top: 3px; }

/* ── Working Hours ── */
.contact-hours       { background: var(--red); border-radius: var(--radius); padding: 20px 22px; }
.contact-hours-title { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.7);
                       letter-spacing: .5px; text-transform: uppercase; margin-bottom: 14px; }
.contact-hours-row   { display: flex; justify-content: space-between; align-items: center;
                       padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.1);
                       font-size: 13px; color: rgba(255,255,255,.85); }
.contact-hours-row:last-child { border-bottom: none; }
.contact-hours-row .closed    { color: rgba(255,255,255,.4); font-style: italic; }

/* ── Map Box ── */
.contact-map-box {
  background: var(--red-light);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  margin-bottom: 16px;
}
.contact-map-pin   { font-size: 40px; margin-bottom: 12px; }
.contact-map-label { font-size: 15px; font-weight: 600; color: var(--text); line-height: 1.6; }
.contact-map-label span { font-size: 13px; font-weight: 400; color: var(--text-muted); }

/* ── Social Card ── */
.contact-social-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.contact-social-title {
  font-size: 13px; font-weight: 600; color: var(--text-muted);
  letter-spacing: .5px; text-transform: uppercase; margin-bottom: 16px;
}
.contact-social-row  { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.social-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: 10px;
  text-decoration: none; font-size: 13px; font-weight: 500;
  transition: all .2s; border: 1.5px solid transparent;
}
.social-btn svg      { width: 20px; height: 20px; flex-shrink: 0; }
.social-btn:hover    { transform: translateY(-2px); }
.social-btn.facebook { background: #f0f4ff; color: #1877f2; border-color: #c5d5f7; }
.social-btn.facebook:hover { background: #1877f2; color: #fff; }
.social-btn.twitter  { background: #f5f5f5; color: #111; border-color: #ddd; }
.social-btn.twitter:hover  { background: #111; color: #fff; }
.social-btn.youtube  { background: #fff0f0; color: #ff0000; border-color: #ffc5c5; }
.social-btn.youtube:hover  { background: #ff0000; color: #fff; }
.social-btn.linkedin { background: #f0f7ff; color: #0a66c2; border-color: #b3d4f5; }
.social-btn.linkedin:hover { background: #0a66c2; color: #fff; }

/* ── Contact Form Card (keep for future use) ── */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}
.contact-form-header  { margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.contact-form-title   { font-family: var(--font-display); font-size: 22px; color: var(--text); margin-bottom: 5px; }
.contact-form-sub     { font-size: 13px; color: var(--text-muted); font-weight: 300; }
.cf-group             { display: flex; flex-direction: column; }
.cf-row               { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 720px) {
  .footer-main      { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom    { flex-direction: column; text-align: center; }
  .contact-wrap     { grid-template-columns: 1fr; }
  .cf-row           { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .form-row         { grid-template-columns: 1fr; }
  .payment-opts     { grid-template-columns: 1fr; }
  nav .nav-link     { display: none; }
  nav .nav-link.admin-link { display: block; }
}

.nav-dropdown {
    position: relative;
}
.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;          /* changed from calc(100% + 8px) */
    left: 0;
    background: var(--white);
    border: 1px solid var(--border-mid);
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(192,57,43,0.12);
    min-width: 200px;
    z-index: 200;
    overflow: hidden;
    padding-top: 8px;   /* add padding inside instead */
}
.nav-dropdown-menu a {
    display: block;
    padding: 11px 16px;
    font-size: 14px;
    color: var(--text);
    text-decoration: none;
    transition: all 0.15s;
    font-family: var(--font-body);
}
.nav-dropdown-menu a:hover {
    background: var(--red-light);
    color: var(--red);
}
.nav-dropdown:hover .nav-dropdown-menu {
    display: block;
}
.nav-dropdown-btn.active,
.nav-dropdown:hover .nav-dropdown-btn {
    background: var(--red-light);
    color: var(--red);
}