/* ====== SHARED INNER-PAGE STYLES ====== */
/* Extracted from the main site design system */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #003697;
  --blue-dark: #002670;
  --blue-light: #1a5cc8;
  --blue-pale: #e6edf8;
  --red: #C8102E;
  --red-dark: #a00d24;
  --red-light: #e8364f;
  --red-pale: #fde8ec;
  --grey: #8d948e;
  --grey-dark: #6b726c;
  --grey-light: #a8aea9;
  --grey-pale: #e8eae8;
  --grey-bg: #f0f1f0;
  --white: #FFFFFF;
  --off-white: #F5F6F5;
  --charcoal: #2a2d2a;
  --text: #1a1c1a;
  --text-muted: #5a5e5a;
  --text-dim: #7a7e7a;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Oswald', 'Impact', 'Arial Narrow', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-light); }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 0.5px; }

.skip-link {
  position: absolute; top: -100px; left: 0;
  background: var(--blue); color: var(--white);
  padding: 8px 16px; z-index: 200; font-size: 14px;
}
.skip-link:focus { top: 0; color: var(--white); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ====== EMERGENCY BANNER ====== */
.emergency-banner { background: var(--red); padding: 10px 0; text-align: center; }
.emergency-inner {
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
}
.emergency-banner p { color: var(--white); font-size: 13px; font-weight: 600; }
.emergency-banner a { color: var(--white); font-weight: 800; text-decoration: underline; font-family: var(--font-heading); letter-spacing: 0.5px; }

/* ====== HEADER ====== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 3px solid var(--blue);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.header::before { content: ''; display: block; height: 3px; background: var(--red); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; max-width: 1200px; margin: 0 auto; height: 72px;
}
.header-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.header-logo img { height: 52px; width: auto; }
.header-nav { display: flex; align-items: center; gap: 28px; }
.header-nav a {
  font-family: var(--font-heading);
  font-size: 14px; font-weight: 500; color: var(--charcoal);
  text-transform: uppercase; letter-spacing: 1px;
  transition: color var(--transition); text-decoration: none; position: relative;
}
.header-nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--red); transition: width var(--transition);
}
.header-nav a:hover { color: var(--blue); }
.header-nav a:hover::after, .header-nav a.active::after { width: 100%; }
.header-nav a.active { color: var(--blue); }
.header-right { display: flex; align-items: center; gap: 20px; }
.header-phone {
  display: flex; align-items: center; gap: 8px;
  color: var(--blue); font-weight: 700; font-size: 16px; text-decoration: none;
  font-family: var(--font-heading); letter-spacing: 0.5px;
}
.header-phone:hover { color: var(--red); }
.header-phone svg { width: 18px; height: 18px; color: var(--red); }
.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  color: var(--charcoal); padding: 8px;
}
.menu-toggle svg { width: 24px; height: 24px; }

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-sm);
  font-family: var(--font-heading); font-size: 14px; font-weight: 600; cursor: pointer;
  border: none; transition: all var(--transition); text-decoration: none;
  text-transform: uppercase; letter-spacing: 1px;
}
.btn-primary { background: var(--red); color: var(--white); box-shadow: 0 2px 8px rgba(200,16,46,0.3); }
.btn-primary:hover { background: var(--red-dark); color: var(--white); box-shadow: 0 4px 16px rgba(200,16,46,0.4); transform: translateY(-1px); }
.btn-blue { background: var(--blue); color: var(--white); box-shadow: 0 2px 8px rgba(0,54,151,0.3); }
.btn-blue:hover { background: var(--blue-dark); color: var(--white); transform: translateY(-1px); }
.btn-outline-dark { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline-dark:hover { background: var(--blue); color: var(--white); }
.btn-white { background: var(--white); color: var(--blue); font-weight: 700; }
.btn-white:hover { background: var(--off-white); color: var(--blue); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.btn-lg { padding: 16px 32px; font-size: 15px; border-radius: var(--radius); }

/* ====== PAGE HERO ====== */
.page-hero {
  background: var(--grey);
  padding: 52px 0 48px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(to right, var(--red), var(--blue));
}
.page-hero::after {
  content: ''; position: absolute;
  top: -40%; right: -10%; width: 400px; height: 400px;
  border: 40px solid rgba(255,255,255,0.04);
  border-radius: 50%; pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-heading); font-size: 12px; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 12px;
}
.page-hero-label::before { content: ''; width: 20px; height: 2px; background: var(--red-light); }
.page-hero h1 {
  font-size: 48px; font-weight: 700; color: var(--white); line-height: 1.05; margin-bottom: 14px;
}
.page-hero h1 .red { color: var(--red-light); }
.page-hero h1 .blue { color: #7ab2f8; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.8); max-width: 600px; line-height: 1.6; }
.page-hero-cta { margin-top: 24px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ====== PAGE CONTENT ====== */
.page-content { padding: 60px 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-heading); font-size: 13px; font-weight: 500; letter-spacing: 3px;
  text-transform: uppercase; color: var(--red); margin-bottom: 16px;
}
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--red); }
.section-title {
  font-size: 36px; font-weight: 700; line-height: 1.1; color: var(--text); margin-bottom: 16px;
}
.section-title .blue { color: var(--blue); }
.section-title .red { color: var(--red); }
.section-desc { font-size: 16px; color: var(--text-muted); line-height: 1.7; margin-bottom: 32px; max-width: 680px; }

/* ====== CARDS ====== */
.card-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-bottom: 40px;
}
.card {
  background: var(--white); border: 1px solid var(--grey-pale);
  border-radius: var(--radius-lg); padding: 28px 24px;
  transition: all var(--transition); position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(to right, var(--red), var(--blue)); opacity: 0; transition: opacity var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(0,54,151,0.15); }
.card:hover::before { opacity: 1; }
.card-icon {
  width: 56px; height: 56px; border-radius: 50%; border: 3px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; position: relative;
}
.card-icon::after {
  content: ''; position: absolute; width: 2px; height: 15px; background: var(--red);
  bottom: 50%; left: 50%; transform-origin: bottom center;
  transform: translateX(-50%) rotate(-30deg); border-radius: 1px;
}
.card-icon svg { width: 22px; height: 22px; color: var(--blue); position: relative; z-index: 1; }
.card h3 { font-size: 18px; color: var(--text); margin-bottom: 8px; }
.card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; font-family: var(--font-body); text-transform: none; letter-spacing: 0; }
.card-link {
  font-family: var(--font-heading); font-size: 12px; color: var(--blue);
  text-transform: uppercase; letter-spacing: 1px; font-weight: 600;
}
.card:hover .card-link { color: var(--red); }

/* ====== TESTIMONIAL ====== */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px;
}
.testimonial-card {
  background: var(--white); border: 1px solid var(--grey-pale);
  border-radius: var(--radius-lg); padding: 24px;
  transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); border-color: rgba(0,54,151,0.15); }
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 14px; }
.testimonial-stars svg { width: 16px; height: 16px; fill: #FBBF24; color: #FBBF24; }
.testimonial-text { font-size: 14px; color: var(--text-muted); font-style: italic; line-height: 1.7; margin-bottom: 18px; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 13px; font-weight: 700; color: var(--blue);
}
.testimonial-name { font-family: var(--font-heading); font-size: 13px; font-weight: 600; color: var(--text); text-transform: uppercase; letter-spacing: 0.5px; }
.testimonial-source { font-size: 11px; color: var(--text-dim); }

/* ====== AREA LINKS ====== */
.areas-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-bottom: 40px;
}
.area-link {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 14px; border-radius: var(--radius-sm);
  background: var(--white); border: 1px solid var(--grey-pale);
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  text-decoration: none; transition: all var(--transition);
}
.area-link:hover {
  border-color: var(--blue); color: var(--blue);
  background: var(--blue-pale); transform: translateY(-2px);
}
.area-link svg { width: 13px; height: 13px; color: var(--grey-light); flex-shrink: 0; }
.area-link:hover svg { color: var(--blue); }

/* ====== CONTACT ITEMS ====== */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-bottom: 40px; }
.contact-card {
  background: var(--white); border: 1px solid var(--grey-pale);
  border-radius: var(--radius-lg); padding: 24px; display: flex; align-items: flex-start; gap: 14px;
}
.contact-icon {
  width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--blue);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; color: var(--blue); }
.contact-label { font-family: var(--font-heading); font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px; }
.contact-value { font-size: 15px; font-weight: 600; color: var(--text); }
.contact-value a { color: var(--blue); }
.contact-value a:hover { color: var(--red); }

/* ====== DRS LETTERS (About) ====== */
.drs-block {
  background: var(--white); border: 1px solid var(--grey-pale);
  border-radius: var(--radius-xl); overflow: hidden; margin-bottom: 32px;
}
.drs-block-header {
  background: var(--grey); padding: 20px 32px; display: flex; align-items: center; gap: 16px;
}
.drs-block-header-lines { display: flex; flex-direction: column; gap: 4px; }
.drs-block-header-lines span { height: 3px; width: 40px; border-radius: 2px; }
.drs-block-header-lines span:nth-child(odd) { background: var(--blue); }
.drs-block-header-lines span:nth-child(even) { background: var(--red); }
.drs-block-header h3 { font-size: 18px; font-weight: 700; color: var(--white); letter-spacing: 2px; }
.drs-letter {
  display: flex; align-items: flex-start; gap: 20px; padding: 24px 32px;
  border-bottom: 1px solid var(--grey-pale);
}
.drs-letter:last-child { border-bottom: none; }
.drs-letter-gauge {
  width: 52px; height: 52px; border-radius: 50%; border: 3px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; position: relative;
}
.drs-letter-gauge::after {
  content: ''; position: absolute; width: 2px; height: 14px; background: var(--red);
  bottom: 50%; left: 50%; transform-origin: bottom center; border-radius: 1px;
}
.drs-letter:nth-child(1) .drs-letter-gauge::after { transform: translateX(-50%) rotate(-40deg); }
.drs-letter:nth-child(2) .drs-letter-gauge::after { transform: translateX(-50%) rotate(0deg); }
.drs-letter:nth-child(3) .drs-letter-gauge { border-color: var(--red); }
.drs-letter:nth-child(3) .drs-letter-gauge::after { background: var(--blue); transform: translateX(-50%) rotate(35deg); }
.drs-letter-char {
  font-family: var(--font-heading); font-size: 26px; font-weight: 700; line-height: 1; position: relative; z-index: 1;
}
.drs-letter:nth-child(1) .drs-letter-char { color: var(--red); }
.drs-letter:nth-child(2) .drs-letter-char { color: var(--blue); }
.drs-letter:nth-child(3) .drs-letter-char { color: var(--red); }
.drs-letter-word {
  font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: var(--text);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px;
}
.drs-letter-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ====== SEO UPSELL BOX ====== */
.upsell-box {
  background: var(--white); border-left: 5px solid var(--red);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 24px 28px; margin-bottom: 40px;
  box-shadow: var(--shadow-sm);
}
.upsell-box h2 {
  font-size: 20px; color: var(--text); margin-bottom: 10px; letter-spacing: 0.5px;
}
.upsell-box p { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.upsell-box p:last-child { margin-bottom: 0; }
.upsell-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--red-pale); color: var(--red-dark);
  padding: 3px 12px; border-radius: 100px;
  font-family: var(--font-heading); font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 10px;
}

/* ====== PAGE CTA STRIP ====== */
.page-cta {
  background: var(--grey); padding: 48px 0; text-align: center;
  position: relative; overflow: hidden;
}
.page-cta::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(to right, var(--red), var(--blue));
}
.page-cta h2 { font-size: 32px; color: var(--white); margin-bottom: 12px; }
.page-cta p { color: rgba(255,255,255,0.75); font-size: 16px; margin-bottom: 24px; }
.page-cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ====== STRIPE DIVIDER ====== */
.stripe-divider { height: 4px; display: flex; }
.stripe-divider span:nth-child(1) { flex: 1; background: var(--red); }
.stripe-divider span:nth-child(2) { flex: 1; background: var(--white); }
.stripe-divider span:nth-child(3) { flex: 1; background: var(--blue); }

/* ====== FOOTER ====== */
.footer { background: var(--charcoal); color: var(--grey-light); padding: 0 0 32px; }
.footer::before {
  content: ''; display: block; height: 4px;
  background: linear-gradient(to right, var(--red) 50%, var(--blue) 50%);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px; margin-bottom: 48px; padding: 56px 0 0;
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { height: 48px; width: auto; }
.footer-desc { font-size: 14px; color: var(--grey-light); line-height: 1.7; }
.footer h4 {
  font-family: var(--font-heading); font-size: 14px; font-weight: 600; color: var(--white);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer li a { font-size: 14px; color: var(--grey-light); transition: color var(--transition); }
.footer li a:hover { color: var(--white); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 14px; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a { color: var(--grey-light); }
.footer-contact-item a:hover { color: var(--white); }
.footer-contact-item span { color: var(--grey-light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px; color: var(--grey);
}
.footer-bottom a { color: var(--grey); }
.footer-bottom a:hover { color: var(--white); }

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .header-nav { display: none; }
  .menu-toggle { display: block; }
  .page-hero h1 { font-size: 32px; }
  .page-hero p { font-size: 15px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ====== MOBILE NAV OPEN STATE ====== */
.header-nav.open {
  display: flex; flex-direction: column; align-items: flex-start;
  position: absolute; top: calc(72px + 6px); left: 0; right: 0;
  background: var(--white); padding: 16px 24px 24px;
  border-bottom: 3px solid var(--blue);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 99;
}
.header-nav.open a { padding: 10px 0; font-size: 16px; border-bottom: 1px solid var(--grey-pale); width: 100%; }
.header-nav.open a:last-child { border-bottom: none; }
