:root {
  --navy:       #071E2D;
  --navy-mid:   #0A2D45;
  --blue:       #00AEEF;
  --blue-dark:  #0086C9;
  --blue-light: #EBF8FF;
  --blue-xlight:#F0FAFF;
  --text:       #1A2332;
  --text-mid:   #4B5568;
  --text-light: #8A97A8;
  --border:     #E2E8F0;
  --bg:         #F5FAFE;
  --bg-warm:    #FAF9F7;
  --white:      #ffffff;
  --font-head:  'Lora', Georgia, serif;
  --font-body:  'Source Sans 3', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(7, 30, 45, 0.85);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0 2rem; height: 100px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.3s, border-color 0.3s;
}
nav.scrolled, nav.solid { background: var(--white); border-bottom: 1px solid var(--border); }
.nav-logo { display: flex; align-items: center; gap: 0.85rem; text-decoration: none; }
.nav-logo img { height: 70px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-title { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: #fff; line-height: 1.2; transition: color 0.3s; }
.nav-logo-sub   { font-family: var(--font-body); font-size: 0.68rem; color: rgba(255,255,255,0.55); line-height: 1.3; transition: color 0.3s; }
nav.scrolled .nav-logo-title, nav.solid .nav-logo-title { color: var(--text); }
nav.scrolled .nav-logo-sub, nav.solid .nav-logo-sub   { color: var(--text-light); }
.nav-links { display: flex; gap: 1.85rem; list-style: none; align-items: center; }
.nav-links a {
  color: #fff; text-decoration: none;
  font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
nav.scrolled .nav-links a, nav.solid .nav-links a { color: var(--text-mid); }
nav.scrolled .nav-links a:hover, nav.solid .nav-links a:hover,
nav.scrolled .nav-links a.active, nav.solid .nav-links a.active { color: var(--blue); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; }
nav.scrolled .hamburger span, nav.solid .hamburger span { background: var(--text); }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; position: fixed;
    top: 100px; left: 0; right: 0; background: var(--white);
    padding: 1.5rem 2rem 2rem; gap: 1.25rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  .nav-links.open a { color: var(--text-mid); }
  .nav-logo-text { display: none; }
}

/* HERO (homepage split hero) */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 86vh; padding-top: 100px;
}
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; }
  .hero-photo { min-height: 340px; order: -1; }
}
.hero-left {
  background: var(--navy);
  display: flex; align-items: center;
  padding: 4rem 3.5rem 4rem 5vw;
  position: relative;
}
.hero-left::before {
  content: ''; position: absolute; top: 0; bottom: 0; right: 100%;
  width: 200vw; background: var(--navy);
}
.hero-inner { max-width: 500px; }
.hero-photo { position: relative; overflow: hidden; }
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center; display: block;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 700; color: var(--white);
  line-height: 1.2; letter-spacing: -0.01em; margin-bottom: 0.85rem;
}
.hero h1 em { font-style: italic; color: var(--blue); }
.hero p {
  font-family: var(--font-body);
  color: rgba(220, 235, 245, 0.88); font-size: 1rem; line-height: 1.8;
  margin-bottom: 1.75rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.hero-cta-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--blue); color: var(--white);
  padding: 0.875rem 1.5rem; border-radius: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.9rem;
  text-decoration: none; transition: background 0.2s, transform 0.15s;
  border: 2px solid var(--blue);
}
.hero-cta-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); }
.hero-cta-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--white);
  padding: 0.875rem 1.5rem; border-radius: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 0.9rem;
  text-decoration: none; border: 2px solid rgba(255,255,255,0.35);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.hero-cta-outline:hover { border-color: rgba(255,255,255,0.75); background: rgba(255,255,255,0.07); transform: translateY(-1px); }
.hero-trust {
  display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-body); color: #7A9BB5; font-size: 0.78rem; font-weight: 500;
}
.trust-item svg { width: 13px; height: 13px; color: var(--blue); flex-shrink: 0; }
.trust-divider { width: 1px; height: 13px; background: rgba(255,255,255,0.18); }

/* PAGE HERO (simple banner for subpages: About / How It Works / FAQ) */
.page-hero {
  background: var(--navy);
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(0,174,239,0.14), transparent 55%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 760px; margin: 0 auto; padding: 3.5rem 2rem 3.25rem; text-align: center; position: relative;
}
.page-hero-eyebrow {
  font-family: 'Inter', sans-serif; font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.75rem;
}
.page-hero h1 {
  font-family: var(--font-head); font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 700; color: var(--white); line-height: 1.25; margin-bottom: 1rem;
}
.page-hero p {
  color: rgba(220, 235, 245, 0.88); font-size: 1.02rem; line-height: 1.8; max-width: 600px; margin: 0 auto;
}

/* HOW IT WORKS STRIP (homepage summary) */
.hiw-strip {
  background: var(--navy-mid);
  padding: 2.75rem 2rem 2.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hiw-inner {
  max-width: 860px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center; gap: 0;
}
@media (max-width: 640px) {
  .hiw-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .hiw-connector { display: none; }
}
.hiw-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 0.6rem;
}
.hiw-icon-wrap {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(0,174,239,0.12); border: 1px solid rgba(0,174,239,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue);
}
.hiw-icon-wrap svg { width: 22px; height: 22px; }
.hiw-step-num {
  font-size: 0.7rem; font-weight: 700; color: var(--blue);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.hiw-step h3 { font-size: 0.9rem; font-weight: 600; color: var(--white); }
.hiw-step p  { font-size: 0.78rem; color: #7A9BB5; line-height: 1.5; max-width: 160px; }
.hiw-connector {
  width: 48px; height: 1px;
  background: linear-gradient(90deg, rgba(0,174,239,0.4), rgba(0,174,239,0.1));
  margin: 0 0.5rem; margin-top: -22px;
}
.hiw-learn-more {
  display: block; text-align: center; margin-top: 2rem;
  font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 600;
  color: var(--blue); text-decoration: none;
}
.hiw-learn-more:hover { text-decoration: underline; }

/* MISSION TEASER (homepage) */
.mission-teaser { padding: 3.5rem 2rem; background: var(--white); }
.mission-teaser-inner {
  max-width: 780px; margin: 0 auto; text-align: center;
}
.mission-teaser-inner h2 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--text); margin-bottom: 0.9rem; }
.mission-teaser-inner p { color: var(--text-mid); font-size: 0.98rem; line-height: 1.85; margin-bottom: 1rem; }
.mission-teaser-inner a { color: var(--blue-dark); font-weight: 600; text-decoration: none; }
.mission-teaser-inner a:hover { text-decoration: underline; }

/* FORMS SECTION */
.forms-section { padding: 4rem 2rem 5rem; background: var(--bg-warm); }
.section-label {
  text-align: center; margin-bottom: 2.5rem;
}
.section-label h2 { font-family: var(--font-head); font-size: 1.75rem; font-weight: 700; color: var(--text); margin-bottom: 0.4rem; }
.section-label p  { color: var(--text-mid); font-size: 0.95rem; }
.container { max-width: 1160px; margin: 0 auto; }

/* CONTENT PAGES (About / How It Works / FAQ) */
.content-section { padding: 3.75rem 2rem; background: var(--white); }
.content-narrow { max-width: 760px; margin: 0 auto; }
.content-narrow h2 {
  font-family: var(--font-head); font-size: 1.5rem; font-weight: 700;
  color: var(--text); margin-bottom: 0.9rem; margin-top: 2.25rem;
}
.content-narrow h2:first-child { margin-top: 0; }
.content-narrow p {
  color: var(--text-mid); font-size: 0.98rem; line-height: 1.9; margin-bottom: 1.1rem;
}
.content-narrow ul { margin: 0 0 1.1rem 1.3rem; color: var(--text-mid); font-size: 0.98rem; line-height: 1.9; }
.content-narrow li { margin-bottom: 0.4rem; }
.content-narrow strong { color: var(--text); }

.content-alt { background: var(--bg-warm); }

/* Value / feature grid (About page) */
.value-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin: 1.5rem 0 0.5rem;
}
@media (max-width: 760px) { .value-grid { grid-template-columns: 1fr; } }
.value-card {
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  padding: 1.5rem 1.4rem; text-align: left;
}
.value-card .vc-icon {
  width: 40px; height: 40px; border-radius: 9px;
  background: rgba(0,174,239,0.12); color: var(--blue);
  display: flex; align-items: center; justify-content: center; margin-bottom: 0.9rem;
}
.value-card .vc-icon svg { width: 20px; height: 20px; }
.value-card h3 { font-family: var(--font-head); font-size: 1.02rem; font-weight: 700; color: var(--text); margin-bottom: 0.4rem; }
.value-card p { font-size: 0.87rem; color: var(--text-mid); line-height: 1.7; margin: 0; }

/* Numbered process (How It Works page) */
.process-list { display: flex; flex-direction: column; gap: 1.75rem; margin: 1.5rem 0 2rem; }
.process-item { display: flex; gap: 1.25rem; }
.process-num {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
}
.process-item h3 { font-family: var(--font-head); font-size: 1.08rem; font-weight: 700; color: var(--text); margin-bottom: 0.35rem; }
.process-item p { color: var(--text-mid); font-size: 0.95rem; line-height: 1.8; margin: 0; }

/* FAQ accordion */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.faq-item {
  border: 1px solid var(--border); border-radius: 10px; overflow: hidden; background: var(--white);
}
.faq-question {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 1.1rem 1.3rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--font-body); font-size: 0.98rem; font-weight: 600; color: var(--text);
}
.faq-question .faq-chevron { flex-shrink: 0; width: 18px; height: 18px; color: var(--text-light); transition: transform 0.2s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--blue); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-answer-inner { padding: 0 1.3rem 1.15rem; color: var(--text-mid); font-size: 0.93rem; line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 400px; }

/* CTA band (bottom of subpages) */
.cta-band { background: var(--navy); padding: 3.25rem 2rem; text-align: center; }
.cta-band h2 { font-family: var(--font-head); color: var(--white); font-size: 1.4rem; font-weight: 700; margin-bottom: 1.4rem; }
.cta-band-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* CONTACT SECTION */
.contact-section { padding: 4rem 2rem; background: var(--navy); scroll-margin-top: 100px; }
.contact-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.contact-inner h2 { font-family: var(--font-head); font-size: 1.75rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.contact-inner p { color: #9CB4C6; font-size: 0.95rem; margin-bottom: 1.75rem; }
.contact-phone-link {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(0,174,239,0.12); border: 1px solid rgba(0,174,239,0.3);
  color: var(--white); text-decoration: none;
  padding: 0.85rem 1.75rem; border-radius: 999px;
  font-size: 1.1rem; font-weight: 600; transition: background 0.2s, border-color 0.2s;
}
.contact-phone-link:hover { background: rgba(0,174,239,0.2); border-color: rgba(0,174,239,0.5); }
.contact-phone-link svg { width: 19px; height: 19px; color: var(--blue); flex-shrink: 0; }

#donate-form, #request-form { scroll-margin-top: 120px; }
.hb-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem; }
@media (max-width: 820px) { .hb-grid { grid-template-columns: 1fr; } }

/* CARDS */
.hb-card {
  background: var(--white); border-radius: 16px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(10,40,65,0.08), 0 1px 3px rgba(10,40,65,0.05);
  display: flex; flex-direction: column;
}
.card-header {
  padding: 1.6rem 2rem 1.4rem;
  display: flex; align-items: center; gap: 1rem;
}
.card-header-donate { background: linear-gradient(135deg, #0086C9 0%, #00AEEF 100%); }
.card-header-request { background: linear-gradient(135deg, #071E2D 0%, #0A2D45 100%); }
.card-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--white);
}
.card-icon svg { width: 22px; height: 22px; }
.card-header-text h2 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--white); }
.card-header-text p  { font-size: 0.8rem; color: rgba(255,255,255,0.72); margin-top: 2px; }

.card-body { padding: 1.75rem 2rem 2rem; flex: 1; display: flex; flex-direction: column; }

/* FORM FIELDS */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.form-field-group { margin-bottom: 1rem; }
.form-field-group label {
  display: block; font-size: 0.78rem; font-weight: 600;
  color: var(--text-mid); margin-bottom: 5px;
  letter-spacing: 0.02em; text-transform: uppercase;
}
.req { color: #e53e3e; }
.form-field-group input,
.form-field-group select,
.form-field-group textarea {
  width: 100%; padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--border); border-radius: 7px;
  font-family: var(--font-body); font-size: 0.9rem;
  color: var(--text); background: var(--white); outline: none;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.form-field-group input:focus,
.form-field-group select:focus,
.form-field-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,174,239,0.12);
}
.form-field-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%234B5568' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M4 6l4 4 4-4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; background-size: 16px; padding-right: 2.25rem; cursor: pointer; }
.form-field-group textarea { resize: vertical; min-height: 80px; }

.conditional-fields { display: none; }
.conditional-fields.visible { display: block; }

.form-divider {
  height: 1px; background: var(--border);
  margin: 0.5rem 0 1.25rem;
}

/* BUTTONS */
.submit-btn {
  width: 100%; border: none;
  padding: 0.9rem; border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
  margin-top: auto;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.submit-btn:hover { transform: translateY(-1px); }
.submit-btn:active { transform: none; }
.donate-btn { background: var(--blue); color: var(--white); }
.donate-btn:hover { background: var(--blue-dark); }
.request-btn { background: var(--navy); color: var(--white); }
.request-btn:hover { background: var(--navy-mid); }
.submit-btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }
.submit-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.form-success {
  display: none; margin-top: 1rem; padding: 0.875rem 1rem;
  background: #F0FFF4; border: 1.5px solid #68D391;
  border-radius: 8px; color: #276749;
  font-size: 0.875rem; font-weight: 500;
  align-items: center; gap: 0.5rem;
}
.form-success.visible { display: flex; }
.form-error {
  display: none; margin-top: 1rem; padding: 0.875rem 1rem;
  background: #FFF5F5; border: 1.5px solid #FC8181;
  border-radius: 8px; color: #C53030;
  font-size: 0.875rem; font-weight: 500;
}
.field-error-msg { display: none; color: #E53E3E; font-size: 0.78rem; margin-top: 3px; }
.field-error-msg.visible { display: block; }

/* SHIPPING NOTICE */
.shipping-notice {
  display: flex; gap: 0.75rem; align-items: flex-start;
  background: #FFFBEB; border: 1.5px solid #F6C90E;
  border-radius: 8px; padding: 0.875rem 1rem;
  margin-bottom: 1.25rem; font-size: 0.84rem; color: #7A5A00;
}
.shipping-notice .sn-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.shipping-notice strong { color: #5C4000; }

/* PHOTO UPLOAD */
.photo-label-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 5px;
}
.photo-label-row label {
  font-size: 0.78rem; font-weight: 600; color: var(--text-mid);
  letter-spacing: 0.02em; text-transform: uppercase;
}
.photo-label-row span { font-size: 0.75rem; color: var(--text-light); font-weight: 400; text-transform: none; letter-spacing: 0; }
.photo-upload-area {
  border: 2px dashed var(--border); border-radius: 8px;
  padding: 1.1rem; text-align: center; cursor: pointer;
  background: var(--bg); transition: border-color 0.2s, background 0.2s;
}
.photo-upload-area:hover { border-color: var(--blue); background: var(--blue-xlight); }
.photo-upload-placeholder { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; }
.photo-upload-placeholder svg { width: 24px; height: 24px; color: var(--text-light); }
.photo-upload-placeholder .pu-label { font-size: 0.85rem; color: var(--text-mid); font-weight: 500; }
.photo-upload-placeholder .pu-hint  { font-size: 0.75rem; color: var(--text-light); }
.photo-upload-placeholder.compact svg { display: none; }
.photo-upload-placeholder.compact .pu-label { font-size: 0.8rem; }
#photo-previews { display: flex; gap: 0.75rem; justify-content: center; margin-bottom: 0.75rem; }
.photo-thumb { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
.photo-thumb img { max-width: 120px; max-height: 120px; border-radius: 6px; object-fit: contain; border: 1px solid var(--border); }
.photo-remove-btn {
  background: none; border: 1.5px solid var(--border);
  border-radius: 5px; padding: 0.25rem 0.7rem;
  font-size: 0.78rem; color: var(--text-mid);
  cursor: pointer; font-family: 'Inter', sans-serif; transition: all 0.2s;
}
.photo-remove-btn:hover { border-color: #E53E3E; color: #E53E3E; }

/* DISCLAIMER MODAL */
.modal-overlay {
  display: none; position: fixed; inset: 0; background: rgba(7,30,45,0.6);
  z-index: 1000; align-items: center; justify-content: center; padding: 1rem;
  backdrop-filter: blur(3px);
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white); border-radius: 14px; max-width: 580px; width: 100%;
  max-height: 85vh; display: flex; flex-direction: column;
  box-shadow: 0 24px 64px rgba(7,30,45,0.35);
}
.modal-header {
  padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 0.6rem;
}
.modal-header svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; }
.modal-header h3 { margin: 0; font-size: 1rem; font-weight: 700; color: var(--text); }
.modal-body {
  padding: 1.25rem 1.5rem; overflow-y: auto; flex: 1;
  font-size: 0.84rem; color: var(--text-mid); line-height: 1.8;
}
.modal-footer { padding: 1rem 1.5rem; border-top: 1px solid var(--border); }
.modal-agree-row {
  display: flex; gap: 0.6rem; align-items: flex-start;
  cursor: pointer; margin-bottom: 1rem; font-size: 0.85rem; color: var(--text);
}
.modal-agree-row input { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; accent-color: var(--blue); cursor: pointer; }
.modal-btn-row { display: flex; gap: 0.75rem; justify-content: flex-end; }
.modal-cancel-btn {
  padding: 0.6rem 1.25rem; border: 1.5px solid var(--border); border-radius: 7px;
  background: var(--white); cursor: pointer; font-size: 0.875rem;
  color: var(--text-mid); font-family: 'Inter', sans-serif; font-weight: 500;
  transition: border-color 0.2s;
}
.modal-cancel-btn:hover { border-color: #A0AEC0; }
.modal-confirm-btn {
  padding: 0.6rem 1.5rem; border: none; border-radius: 7px;
  background: var(--blue); color: var(--white);
  cursor: pointer; font-size: 0.875rem; font-weight: 600;
  font-family: 'Inter', sans-serif; transition: background 0.2s;
}
.modal-confirm-btn:hover { background: var(--blue-dark); }
.modal-confirm-btn:disabled { opacity: 0.4; cursor: default; background: var(--blue); }

/* PAGE DISCLAIMER */
.page-disclaimer {
  background: var(--navy); border-top: none;
  padding: 2rem 2rem;
}
.page-disclaimer p {
  max-width: 760px; margin: 0 auto; font-size: 0.78rem;
  color: rgba(255,255,255,0.3); line-height: 1.8; text-align: center;
}
.page-disclaimer strong { color: rgba(255,255,255,0.5); }

/* FOOTER */
footer { background: #000; padding: 3rem 2rem; }
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 2rem; border-bottom: 1px solid #1f2937; gap: 2rem; flex-wrap: wrap; }
.footer-logo { display: flex; align-items: flex-start; gap: 0.85rem; }
.footer-logo img { height: 80px; width: auto; }
.footer-logo-text { margin-top: 0.75rem; }
.footer-logo-title { color: #e5e7eb; font-family: 'Lora', Georgia, serif; font-size: 0.95rem; font-weight: 700; }
.footer-logo-sub   { color: #6b7280; font-size: 0.75rem; margin-top: 2px; }
.footer-cols { display: flex; gap: 3.5rem; flex-wrap: wrap; }
.footer-links-label { color: #9ca3af; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: #6b7280; text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { padding-top: 1.5rem; color: #4b5563; font-size: 0.8rem; }
