/* ============================================
   LAKESIDE SMILES — pages.css
   Shared styles for service & blog pages
   ============================================ */

/* ---- NAV DROPDOWN ---- */
.nav-dropdown { position: relative; }
.nav-dropdown > a { cursor: pointer; }
.dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--navy-dark); border: 1px solid var(--border-gold);
  border-radius: 6px; min-width: 210px; padding: 8px 0;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4); z-index: 200; list-style: none;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block; padding: 10px 18px; font-size: 11px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,0.75);
  text-decoration: none; transition: all .2s;
}
.dropdown-menu li a:hover { color: var(--gold-light); background: rgba(176,145,90,0.08); }

/* ---- BREADCRUMB ---- */
.breadcrumb { font-size: 11px; color: rgba(255,255,255,0.5); margin-bottom: 14px; }
.breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-light); }

/* ---- PAGE HERO ---- */
.page-hero {
  padding: 120px 5% 70px; position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a3a6e 100%);
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('../images/hero-bg.png') center/cover no-repeat;
  opacity: 0.12;
}
.page-hero-inner { max-width: 760px; position: relative; z-index: 2; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 700;
  color: #fff; line-height: 1.15; margin-bottom: 14px;
}
.page-hero p { font-size: 15px; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 24px; max-width: 600px; }
.page-hero-urgent { background: linear-gradient(135deg, #0a1c3a 0%, var(--navy) 60%, #1a2a4a 100%); }
.blog-hero .page-hero-inner { max-width: 820px; }
.blog-meta { font-size: 11px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 12px; }
.hero-btn-group { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-secondary-light {
  display: inline-block; background: rgba(255,255,255,0.12);
  color: #fff; font-size: 11px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; padding: 13px 24px; border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.3); text-decoration: none; transition: all .2s;
}
.btn-secondary-light:hover { background: rgba(255,255,255,0.2); }

/* ---- MAIN LAYOUT ---- */
.page-content { padding: 60px 5%; background: #fff; }
.content-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 300px; gap: 56px; align-items: start; }
.content-body { min-width: 0; }
.content-logo-img { width: 180px; margin-bottom: 28px; opacity: 0.7; }

/* ---- BLOG BODY ---- */
.blog-intro { font-size: 16px; color: var(--navy); line-height: 1.8; font-weight: 500; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(176,145,90,0.2); }
.blog-body h2 { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 700; color: var(--navy); margin: 36px 0 14px; line-height: 1.2; }
.blog-body h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin: 24px 0 10px; }
.blog-body p { font-size: 14px; color: #444; line-height: 1.85; margin-bottom: 16px; }
.blog-body a { color: var(--gold-dark); text-decoration: underline; }
.blog-body a:hover { color: var(--gold-mid); }

/* ---- CONTENT BODY (service pages) ---- */
.content-body h2 { font-family: 'Cormorant Garamond', serif; font-size: 30px; font-weight: 700; color: var(--navy); margin: 36px 0 14px; line-height: 1.2; }
.content-body h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin: 24px 0 10px; }
.content-body p { font-size: 14px; color: #444; line-height: 1.85; margin-bottom: 16px; }
.content-body a { color: var(--gold-dark); text-decoration: underline; }
.content-body a:hover { color: var(--gold-mid); }

/* ---- LISTS ---- */
.content-list { padding-left: 0; list-style: none; margin: 16px 0 20px; display: flex; flex-direction: column; gap: 10px; }
.content-list li { font-size: 14px; color: #444; line-height: 1.7; padding-left: 20px; position: relative; }
.content-list li::before { content: '✦'; position: absolute; left: 0; color: var(--gold-mid); font-size: 9px; top: 5px; }

/* ---- SERVICE HIGHLIGHT GRID ---- */
.services-highlight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 24px 0 32px; }
.sh-card { background: var(--off-white); border: 1px solid rgba(176,145,90,0.15); border-radius: 8px; padding: 22px 18px; transition: all .2s; }
.sh-card:hover { border-color: rgba(176,145,90,0.4); transform: translateY(-2px); }
.sh-icon { font-size: 28px; display: block; margin-bottom: 10px; }
.sh-card h3 { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.sh-card p { font-size: 12px; color: #666; line-height: 1.6; margin: 0; }
.sh-card a { color: var(--gold-dark); }

/* ---- EMERGENCY GRID ---- */
.emergency-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 24px 0 32px; }
.emergency-card { background: #fff; border: 1px solid rgba(176,145,90,0.2); border-radius: 8px; padding: 22px 18px; text-align: center; }
.emergency-card span { font-size: 32px; display: block; margin-bottom: 10px; }
.emergency-card h3 { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.emergency-card p { font-size: 12px; color: #666; line-height: 1.6; margin: 0; }

/* ---- URGENT BANNER ---- */
.urgent-banner {
  background: rgba(220,38,38,0.06); border: 1px solid rgba(220,38,38,0.2);
  border-radius: 8px; padding: 18px 20px; display: flex; align-items: flex-start;
  gap: 14px; margin-bottom: 32px;
}
.urgent-banner span { font-size: 24px; flex-shrink: 0; }
.urgent-banner strong { font-size: 14px; color: #b91c1c; display: block; margin-bottom: 4px; }
.urgent-banner p { font-size: 13px; color: #555; margin: 0; }
.urgent-banner a { color: #b91c1c; font-weight: 700; }

/* ---- STEPS LIST ---- */
.steps-list { display: flex; flex-direction: column; gap: 0; margin: 20px 0 28px; border-left: 2px solid rgba(176,145,90,0.3); padding-left: 24px; margin-left: 8px; }
.step-item { position: relative; padding-bottom: 28px; }
.step-item:last-child { padding-bottom: 0; }
.step-num {
  position: absolute; left: -38px; top: 0;
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-mid), var(--gold));
  color: #0a1c3a; font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.step-content h3 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 6px; margin-top: 0; }
.step-content p { font-size: 13px; color: #555; line-height: 1.7; margin: 0; }

/* ---- FOUNDING HIGHLIGHT ---- */
.founding-highlight {
  background: var(--navy); border-radius: 10px; padding: 28px 32px; margin: 24px 0 32px;
}
.founding-highlight h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--gold-light); margin-bottom: 16px; }
.benefits-list-page { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.benefits-list-page li { font-size: 14px; color: rgba(255,255,255,0.85); display: flex; gap: 10px; align-items: flex-start; line-height: 1.5; }
.benefits-list-page li span { color: var(--gold); font-size: 10px; margin-top: 4px; flex-shrink: 0; }

/* ---- LOCATION TAGS ---- */
.location-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 20px; }
.location-tags span { background: var(--off-white); border: 1px solid rgba(176,145,90,0.2); border-radius: 20px; padding: 5px 14px; font-size: 12px; color: var(--navy); font-weight: 500; }

/* ---- MAP EMBED ---- */
.map-embed-wrap { margin: 32px 0; }
.map-embed-wrap h2 { margin-top: 0; }

/* ---- COVERAGE TABLE ---- */
.coverage-table { margin: 20px 0 28px; border: 1px solid rgba(176,145,90,0.2); border-radius: 8px; overflow: hidden; }
.coverage-row { display: grid; grid-template-columns: 1fr 1fr; padding: 12px 18px; border-bottom: 1px solid rgba(176,145,90,0.1); font-size: 13px; }
.coverage-row:last-child { border-bottom: none; }
.coverage-header { background: var(--navy); color: var(--gold-light); font-weight: 700; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.coverage-row:nth-child(even) { background: rgba(176,145,90,0.04); }

/* ---- CTA BOX ---- */
.cta-box {
  background: linear-gradient(135deg, rgba(13,34,68,0.04), rgba(176,145,90,0.08));
  border: 1px solid rgba(176,145,90,0.25); border-radius: 10px;
  padding: 32px; text-align: center; margin: 40px 0;
}
.cta-box h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; color: var(--navy); margin-bottom: 10px; }
.cta-box p { font-size: 14px; color: #666; margin-bottom: 20px; }
.cta-box a { text-decoration: none; }
.cta-btn-group { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-outline {
  display: inline-block; background: transparent; color: var(--navy);
  font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 13px 24px; border-radius: 2px; border: 1px solid rgba(13,34,68,0.3);
  text-decoration: none; transition: all .2s; cursor: pointer;
}
.btn-outline:hover { border-color: var(--navy); background: rgba(13,34,68,0.04); }

/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; gap: 0; margin: 20px 0 36px; border: 1px solid rgba(176,145,90,0.2); border-radius: 8px; overflow: hidden; }
.faq-item { border-bottom: 1px solid rgba(176,145,90,0.15); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 16px 20px; font-size: 14px; font-weight: 600; color: var(--navy);
  font-family: 'Montserrat', sans-serif; display: flex; justify-content: space-between;
  align-items: center; transition: background .2s;
}
.faq-question::after { content: '+'; font-size: 20px; color: var(--gold-mid); flex-shrink: 0; transition: transform .2s; }
.faq-question.open::after { transform: rotate(45deg); }
.faq-question:hover { background: rgba(176,145,90,0.04); }
.faq-answer { display: none; padding: 0 20px 16px; }
.faq-answer.open { display: block; }
.faq-answer p { font-size: 13.5px; color: #555; line-height: 1.75; margin: 0; }
.faq-answer a { color: var(--gold-dark); }

/* ---- RELATED PAGES ---- */
.related-pages { margin-top: 48px; padding-top: 36px; border-top: 1px solid rgba(176,145,90,0.2); }
.related-pages h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--navy); margin-bottom: 18px; }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.related-card {
  background: var(--off-white); border: 1px solid rgba(176,145,90,0.15);
  border-radius: 8px; padding: 18px 14px; text-align: center; text-decoration: none;
  transition: all .2s; display: block;
}
.related-card:hover { border-color: rgba(176,145,90,0.45); transform: translateY(-2px); }
.related-card span { font-size: 26px; display: block; margin-bottom: 8px; }
.related-card p { font-size: 11px; font-weight: 600; color: var(--navy); margin: 0; line-height: 1.4; }

/* ---- SIDEBAR ---- */
.content-sidebar { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { background: var(--off-white); border: 1px solid rgba(176,145,90,0.2); border-radius: 8px; padding: 22px; }
.sidebar-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--navy); margin-bottom: 10px; }
.sidebar-card p { font-size: 13px; color: #555; line-height: 1.6; margin-bottom: 4px; }
.sidebar-phone a { font-size: 16px; font-weight: 700; color: var(--navy); text-decoration: none; }
.sidebar-phone-large a { font-size: 22px; font-weight: 700; color: #b91c1c; text-decoration: none; display: block; margin-top: 6px; }
.sidebar-urgent { background: rgba(220,38,38,0.05); border-color: rgba(220,38,38,0.2); }
.sidebar-urgent h3 { color: #b91c1c; }
.sidebar-links { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.sidebar-links li a { font-size: 12.5px; color: var(--navy); text-decoration: none; font-weight: 500; transition: color .2s; }
.sidebar-links li a:hover { color: var(--gold-mid); }
.sidebar-links li::before { content: '›'; color: var(--gold-mid); margin-right: 6px; }
.sidebar-hours { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.sidebar-hours li { display: flex; justify-content: space-between; font-size: 12.5px; color: #555; }
.sidebar-hours li span:first-child { font-weight: 600; color: var(--navy); }

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
  .content-inner { grid-template-columns: 1fr; }
  .content-sidebar { position: static; }
  .services-highlight-grid { grid-template-columns: repeat(2, 1fr); }
  .emergency-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .page-hero h1 { font-size: 30px; }
  .services-highlight-grid { grid-template-columns: 1fr; }
  .emergency-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .page-content { padding: 40px 5%; }
}

/* ============ CAREERS / JOB LISTINGS ============ */
.job-card {
  background: #fff;
  border: 1px solid #e8e2d6;
  border-radius: 14px;
  padding: 32px 34px;
  margin-bottom: 28px;
  box-shadow: 0 4px 18px rgba(13,34,68,0.05);
  transition: box-shadow .25s, transform .25s;
}
.job-card:hover { box-shadow: 0 8px 28px rgba(13,34,68,0.1); transform: translateY(-2px); }

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid #eee7d9;
}
.job-headline { flex: 1; }
.job-tag {
  display: inline-block;
  background: rgba(176,145,90,0.12);
  color: var(--gold-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.job-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 10px;
}
.job-location {
  font-size: 14px;
  color: #777;
  margin: 0;
  line-height: 1.5;
}
.job-header .btn-primary { white-space: nowrap; flex-shrink: 0; }

.job-intro {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin: 0 0 24px;
}
.job-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
.job-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(176,145,90,0.2);
}
.job-col .content-list { margin: 0; }
.job-col .content-list li {
  font-size: 14.5px;
  line-height: 1.5;
  margin-bottom: 12px;
  color: #444;
}

/* Mobile */
@media (max-width: 760px) {
  .job-card { padding: 24px 22px; margin-bottom: 22px; }
  .job-header {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .job-title { font-size: 24px; }
  .job-header .btn-primary {
    text-align: center;
    width: 100%;
  }
  .job-cols {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .job-col .content-list li { margin-bottom: 14px; }
}
