/* ============================================================
   Martino Agency — Main Stylesheet
   EA Licence No. 24C2339 | newmartinoagency.com
   ============================================================ */

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

/* --- Variables --- */
:root {
  --navy:       #0d1f3c;
  --navy-dark:  #080f1e;
  --navy-mid:   #162d52;
  --gold:       #c9a84c;
  --gold-light: #e8c97a;
  --blue:       #1a3fd4;   /* logo brand blue */
  --cream:      #f8f5ef;
  --white:      #ffffff;
  --gray:       #6b7280;
  --border:     #e2d9c8;
  --success:    #166534;
  --success-bg: #dcfce7;
}

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--navy);
  overflow-x: hidden;
  line-height: 1.5;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  background: var(--navy);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  height: 72px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1); /* make logo white on dark nav */
}

.nav-brand-text { display: flex; flex-direction: column; }

.nav-brand-text .name {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.nav-brand-text .lic {
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--gold-light) !important; }

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   PAGE HEADER BANNER
   ============================================================ */
.page-header {
  background: var(--navy);
  padding: 3.5rem 10% 3rem;
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.page-header p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  font-weight: 300;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--navy);
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 5% 10%;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -5%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,63,212,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-logo-mark {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.07;
  width: min(340px, 40vw);
  pointer-events: none;
}

.hero-content { max-width: 660px; position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  padding: 0.4rem 1rem;
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease both;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease 0.1s both;
}

.hero h1 span { color: var(--gold); }

.hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  font-weight: 300;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.3s both;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 0.85rem 2rem;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  cursor: pointer;
  display: inline-block;
  transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  padding: 0.8rem 1.8rem;
  border: none;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
  transition: all 0.2s;
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); }

.btn-white {
  background: var(--white);
  color: var(--navy);
  padding: 0.8rem 1.8rem;
  border: none;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
  transition: all 0.2s;
}
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 1rem;
  letter-spacing: 0.02em;
}
.btn-submit:hover { background: var(--navy-mid); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(13,31,60,0.2); }

.btn-submit.gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-submit.gold:hover { background: var(--gold-light); box-shadow: 0 6px 20px rgba(201,168,76,0.3); }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 2rem 10%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.stat { text-align: center; }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
section { padding: 5rem 10%; }

.section-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.section-sub {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
  font-weight: 300;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--cream); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.3s;
}

.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(13,31,60,0.1); }
.service-card:hover::before { height: 100%; }

.service-icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.service-card p { color: var(--gray); font-size: 0.875rem; line-height: 1.65; font-weight: 300; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works { background: var(--navy); }
.how-it-works .section-title { color: var(--white); }
.how-it-works .section-sub { color: rgba(255,255,255,0.6); }

.tabs {
  display: flex;
  gap: 0.5rem;
  margin: 2.5rem 0 2rem;
  background: rgba(255,255,255,0.06);
  padding: 0.4rem;
  border-radius: 6px;
  width: fit-content;
}

.tab-btn {
  padding: 0.6rem 1.5rem;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s;
}

.tab-btn.active { background: var(--gold); color: var(--navy); font-weight: 500; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.step {
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: rgba(201,168,76,0.25);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.step h3 { color: var(--white); font-size: 1rem; font-weight: 500; margin-bottom: 0.5rem; }
.step p { color: rgba(255,255,255,0.5); font-size: 0.875rem; line-height: 1.6; font-weight: 300; }

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries { background: var(--white); }

.tag-cloud { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2.5rem; }

.industry-tag {
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--navy);
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  font-size: 0.875rem;
  font-weight: 400;
  transition: all 0.2s;
  cursor: default;
}

.industry-tag:hover { background: var(--navy); color: var(--gold); border-color: var(--navy); }

/* ============================================================
   CTA SPLIT
   ============================================================ */
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
}

.cta-panel {
  padding: 5rem 8%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.cta-panel.employer { background: var(--navy); }
.cta-panel.jobseeker { background: var(--gold); }

.cta-panel.employer h2 {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}
.cta-panel.employer p { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-bottom: 1.5rem; font-weight: 300; line-height: 1.65; }

.cta-panel.jobseeker h2 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}
.cta-panel.jobseeker p { color: rgba(13,31,60,0.7); font-size: 0.95rem; margin-bottom: 1.5rem; font-weight: 300; line-height: 1.65; }

/* ============================================================
   JOB LISTINGS PAGE
   ============================================================ */
.search-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 10%;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.search-input {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s;
}
.search-input:focus { border-color: var(--gold); }

.search-btn {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.8rem;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}
.search-btn:hover { background: var(--navy-mid); }

.main-content {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  padding: 2.5rem 10%;
}

.filters-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  height: fit-content;
  position: sticky;
  top: 90px;
}

.filter-title {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.filter-title:first-child { margin-top: 0; padding-top: 0; border-top: none; }

.filter-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--navy);
}
.filter-option input[type="checkbox"] { accent-color: var(--navy); }

.jobs-panel { display: flex; flex-direction: column; gap: 1rem; }

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.results-count { font-size: 0.875rem; color: var(--gray); }

.sort-select {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.4rem 0.8rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: var(--navy);
  background: var(--white);
  outline: none;
  cursor: pointer;
}

.job-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.25s;
  cursor: pointer;
}
.job-card:hover { box-shadow: 0 8px 28px rgba(13,31,60,0.1); transform: translateY(-2px); border-color: var(--gold); }

.job-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.job-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.25rem; }
.job-company { font-size: 0.875rem; color: var(--gray); }

.job-badge {
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.job-meta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 0.85rem; }
.job-meta-item { font-size: 0.8rem; color: var(--gray); display: flex; align-items: center; gap: 0.3rem; }

.job-desc { font-size: 0.875rem; color: var(--gray); line-height: 1.65; font-weight: 300; margin-bottom: 1rem; }

.job-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.job-tag {
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--navy);
  padding: 0.25rem 0.7rem;
  border-radius: 2px;
  font-size: 0.75rem;
}

.apply-btn {
  margin-top: 1rem;
  padding: 0.6rem 1.5rem;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
}
.apply-btn:hover { background: var(--navy-mid); }

/* ============================================================
   FORMS (shared across post-job, upload-resume, contact)
   ============================================================ */
.form-container { max-width: 800px; margin: 3rem auto; padding: 0 5%; }

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2.5rem;
}

.form-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.form-group { margin-bottom: 1.25rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

label .req { color: var(--gold); }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}

textarea { resize: vertical; min-height: 120px; }

.form-divider { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }

/* Upload zone */
.upload-zone {
  border: 2px dashed var(--border);
  border-radius: 8px;
  padding: 3rem 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--cream);
  position: relative;
}
.upload-zone:hover, .upload-zone.dragover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
}
.upload-zone input[type="file"] {
  position: absolute; inset: 0;
  opacity: 0; cursor: pointer;
  width: 100%; height: 100%;
  border: none; padding: 0; background: none;
}
.upload-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.upload-zone h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 0.4rem; color: var(--navy); }
.upload-zone p { font-size: 0.8rem; color: var(--gray); font-weight: 300; }
.upload-zone .file-types { color: var(--gold); font-size: 0.75rem; margin-top: 0.5rem; font-weight: 500; }

.file-selected {
  display: none;
  align-items: center;
  gap: 0.75rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 6px;
  padding: 0.85rem 1rem;
  margin-top: 0.75rem;
}
.file-selected.visible { display: flex; }
.file-icon { font-size: 1.4rem; }
.file-name { font-size: 0.875rem; color: var(--navy); font-weight: 500; }
.file-size { font-size: 0.75rem; color: var(--gray); }
.remove-file { margin-left: auto; background: none; border: none; color: var(--gray); cursor: pointer; font-size: 1rem; }

/* Notices */
.notice {
  border-radius: 6px;
  padding: 1rem 1.25rem;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  line-height: 1.65;
}

.notice-gold {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--gray);
}
.notice-gold strong { color: var(--navy); }

.notice-blue {
  background: rgba(26,63,212,0.06);
  border: 1px solid rgba(26,63,212,0.15);
  color: var(--gray);
}
.notice-blue strong { color: var(--navy); }

/* Alerts */
.alert {
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  display: none;
}
.alert.visible { display: block; }
.alert-success { background: var(--success-bg); border: 1px solid #bbf7d0; color: var(--success); }
.alert-success h3 { font-family: 'Playfair Display', serif; margin-bottom: 0.4rem; }
.alert-error { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }

/* Free badge */
.free-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* Perks row (resume page) */
.perks-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.perk {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem;
  text-align: center;
}

.perk-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.perk h4 { font-size: 0.85rem; font-weight: 500; color: var(--navy); margin-bottom: 0.25rem; }
.perk p { font-size: 0.75rem; color: var(--gray); font-weight: 300; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 3rem auto;
  padding: 0 5%;
}

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
}

.info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-card p, .info-card a {
  font-size: 0.875rem;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.7;
  display: block;
}
.info-card a:hover { color: var(--gold); }

.lic-card {
  background: var(--navy);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
}
.lic-card .lic-number {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.lic-card p { color: rgba(255,255,255,0.6); font-size: 0.78rem; line-height: 1.6; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.6);
  padding: 3rem 10% 2rem;
  margin-top: 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-brand .agency-name {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.footer-brand .lic-footer {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.footer-brand p { font-size: 0.85rem; line-height: 1.7; font-weight: 300; max-width: 320px; }

.footer-col h4 {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: rgba(255,255,255,0.5); font-size: 0.875rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
}

.mom-notice {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--gold);
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .main-content { grid-template-columns: 1fr; }
  .filters-panel { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .cta-split { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  nav { padding: 0 5%; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: var(--navy); padding: 1.5rem 5%; gap: 1.25rem; border-top: 1px solid rgba(255,255,255,0.08); z-index: 99; }
  .nav-toggle { display: flex; }
  .hero { min-height: auto; padding: 4rem 5%; }
  .hero-logo-mark { display: none; }
  section { padding: 3.5rem 5%; }
  .stats-bar { padding: 1.5rem 5%; }
  .page-header { padding: 2.5rem 5% 2rem; }
  .search-bar { padding: 1rem 5%; }
  .form-row { grid-template-columns: 1fr; }
  .perks-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
